diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 208844534c..41930c63d0 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -4,6 +4,20 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_. +==================== +2.142.0 - 2025-01-14 +==================== + +Added +----- +* Support for attaching route tables to VNICs and private IPs in the Networking service +* Support for Cross Cluster Search(CCS) for an opensearch cluster in the OpenSearch service +* Support for patch-level updates of the autonomous databases after provisioning in the Database service + +Breaking +-------- +* put_object failures for 412 status code have been fixed. This might be a breaking change for customers who have defined a custom exception handler for 412 status code (https://github.com/oracle/oci-python-sdk/issues/622) + ==================== 2.141.1 - 2024-12-20 ==================== diff --git a/docs/api/opensearch.rst b/docs/api/opensearch.rst index 797dffdad1..266c8836ce 100644 --- a/docs/api/opensearch.rst +++ b/docs/api/opensearch.rst @@ -22,28 +22,56 @@ Opensearch oci.opensearch.models.BackupEventDetails oci.opensearch.models.BackupOpensearchClusterDetails + oci.opensearch.models.BackupPolicy + oci.opensearch.models.BenchmarkDetails oci.opensearch.models.ChangeOpensearchClusterBackupCompartmentDetails oci.opensearch.models.ChangeOpensearchClusterCompartmentDetails + oci.opensearch.models.ConfigureOutboundClusterDetails + oci.opensearch.models.CreateMaintenanceDetails oci.opensearch.models.CreateOpensearchClusterDetails + oci.opensearch.models.CreateOpensearchClusterPipelineDetails + oci.opensearch.models.CustomerLoggingDetails + oci.opensearch.models.DeleteBlockVolumesForNamespaceDetails oci.opensearch.models.ExportOpensearchClusterBackupDetails + oci.opensearch.models.ForcePatchClusterDetails oci.opensearch.models.GetManifestResponse + oci.opensearch.models.MaintenanceDetails + oci.opensearch.models.MaintenanceNotificationDetails + oci.opensearch.models.MaintenanceNotificationFailure + oci.opensearch.models.MaintenanceNotificationResponse oci.opensearch.models.OpensearchCluster oci.opensearch.models.OpensearchClusterBackup oci.opensearch.models.OpensearchClusterBackupCollection oci.opensearch.models.OpensearchClusterBackupSummary oci.opensearch.models.OpensearchClusterCollection + oci.opensearch.models.OpensearchClusterInternalDetails + oci.opensearch.models.OpensearchClusterPipeline + oci.opensearch.models.OpensearchClusterPipelineCollection + oci.opensearch.models.OpensearchClusterPipelineSummary oci.opensearch.models.OpensearchClusterSummary + oci.opensearch.models.OpensearchPipelineValidationResponse oci.opensearch.models.OpensearchVersionsCollection oci.opensearch.models.OpensearchVersionsSummary + oci.opensearch.models.OutboundClusterConfig + oci.opensearch.models.OutboundClusterSummary + oci.opensearch.models.PipelineValidationErrorDetails + oci.opensearch.models.ReclaimClusterDetails oci.opensearch.models.ResizeOpensearchClusterHorizontalDetails oci.opensearch.models.ResizeOpensearchClusterVerticalDetails oci.opensearch.models.RestoreOpensearchClusterBackupDetails oci.opensearch.models.RestoreOpensearchClusterDetails + oci.opensearch.models.ReverseConnectionEndpoint + oci.opensearch.models.SecuritySamlConfig oci.opensearch.models.UpdateCheckinDetails oci.opensearch.models.UpdateClusterHardenedImageDetails + oci.opensearch.models.UpdateClusterSpecsDetails oci.opensearch.models.UpdateClusterStatusDetails + oci.opensearch.models.UpdateMaintenanceDetails oci.opensearch.models.UpdateOpensearchClusterBackupDetails oci.opensearch.models.UpdateOpensearchClusterDetails + oci.opensearch.models.UpdateOpensearchClusterPipelineDetails + oci.opensearch.models.UpgradeOpenSearchClusterDetails + oci.opensearch.models.ValidateOpensearchPipelineDetails oci.opensearch.models.WorkRequest oci.opensearch.models.WorkRequestCollection oci.opensearch.models.WorkRequestError diff --git a/docs/api/opensearch/models/oci.opensearch.models.BackupPolicy.rst b/docs/api/opensearch/models/oci.opensearch.models.BackupPolicy.rst new file mode 100644 index 0000000000..1913d4b64f --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.BackupPolicy.rst @@ -0,0 +1,11 @@ +BackupPolicy +============ + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: BackupPolicy + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.BenchmarkDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.BenchmarkDetails.rst new file mode 100644 index 0000000000..9064ac04ea --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.BenchmarkDetails.rst @@ -0,0 +1,11 @@ +BenchmarkDetails +================ + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: BenchmarkDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.ConfigureOutboundClusterDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.ConfigureOutboundClusterDetails.rst new file mode 100644 index 0000000000..b28ddb7363 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.ConfigureOutboundClusterDetails.rst @@ -0,0 +1,11 @@ +ConfigureOutboundClusterDetails +=============================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: ConfigureOutboundClusterDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.CreateMaintenanceDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.CreateMaintenanceDetails.rst new file mode 100644 index 0000000000..2e08e54563 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.CreateMaintenanceDetails.rst @@ -0,0 +1,11 @@ +CreateMaintenanceDetails +======================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: CreateMaintenanceDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.CreateOpensearchClusterPipelineDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.CreateOpensearchClusterPipelineDetails.rst new file mode 100644 index 0000000000..7120051859 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.CreateOpensearchClusterPipelineDetails.rst @@ -0,0 +1,11 @@ +CreateOpensearchClusterPipelineDetails +====================================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: CreateOpensearchClusterPipelineDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.CustomerLoggingDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.CustomerLoggingDetails.rst new file mode 100644 index 0000000000..e485612910 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.CustomerLoggingDetails.rst @@ -0,0 +1,11 @@ +CustomerLoggingDetails +====================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: CustomerLoggingDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.DeleteBlockVolumesForNamespaceDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.DeleteBlockVolumesForNamespaceDetails.rst new file mode 100644 index 0000000000..8c80e35138 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.DeleteBlockVolumesForNamespaceDetails.rst @@ -0,0 +1,11 @@ +DeleteBlockVolumesForNamespaceDetails +===================================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: DeleteBlockVolumesForNamespaceDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.ForcePatchClusterDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.ForcePatchClusterDetails.rst new file mode 100644 index 0000000000..384a42e09e --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.ForcePatchClusterDetails.rst @@ -0,0 +1,11 @@ +ForcePatchClusterDetails +======================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: ForcePatchClusterDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.MaintenanceDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.MaintenanceDetails.rst new file mode 100644 index 0000000000..feb6111585 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.MaintenanceDetails.rst @@ -0,0 +1,11 @@ +MaintenanceDetails +================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: MaintenanceDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.MaintenanceNotificationDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.MaintenanceNotificationDetails.rst new file mode 100644 index 0000000000..40169827aa --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.MaintenanceNotificationDetails.rst @@ -0,0 +1,11 @@ +MaintenanceNotificationDetails +============================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: MaintenanceNotificationDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.MaintenanceNotificationFailure.rst b/docs/api/opensearch/models/oci.opensearch.models.MaintenanceNotificationFailure.rst new file mode 100644 index 0000000000..248a080932 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.MaintenanceNotificationFailure.rst @@ -0,0 +1,11 @@ +MaintenanceNotificationFailure +============================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: MaintenanceNotificationFailure + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.MaintenanceNotificationResponse.rst b/docs/api/opensearch/models/oci.opensearch.models.MaintenanceNotificationResponse.rst new file mode 100644 index 0000000000..5c6e1f49d2 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.MaintenanceNotificationResponse.rst @@ -0,0 +1,11 @@ +MaintenanceNotificationResponse +=============================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: MaintenanceNotificationResponse + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterInternalDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterInternalDetails.rst new file mode 100644 index 0000000000..3ed4871564 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterInternalDetails.rst @@ -0,0 +1,11 @@ +OpensearchClusterInternalDetails +================================ + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: OpensearchClusterInternalDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterPipeline.rst b/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterPipeline.rst new file mode 100644 index 0000000000..eebca60107 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterPipeline.rst @@ -0,0 +1,11 @@ +OpensearchClusterPipeline +========================= + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: OpensearchClusterPipeline + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterPipelineCollection.rst b/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterPipelineCollection.rst new file mode 100644 index 0000000000..516bf852d9 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterPipelineCollection.rst @@ -0,0 +1,11 @@ +OpensearchClusterPipelineCollection +=================================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: OpensearchClusterPipelineCollection + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterPipelineSummary.rst b/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterPipelineSummary.rst new file mode 100644 index 0000000000..5faa60a262 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.OpensearchClusterPipelineSummary.rst @@ -0,0 +1,11 @@ +OpensearchClusterPipelineSummary +================================ + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: OpensearchClusterPipelineSummary + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.OpensearchPipelineValidationResponse.rst b/docs/api/opensearch/models/oci.opensearch.models.OpensearchPipelineValidationResponse.rst new file mode 100644 index 0000000000..6ebf5c0207 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.OpensearchPipelineValidationResponse.rst @@ -0,0 +1,11 @@ +OpensearchPipelineValidationResponse +==================================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: OpensearchPipelineValidationResponse + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.OutboundClusterConfig.rst b/docs/api/opensearch/models/oci.opensearch.models.OutboundClusterConfig.rst new file mode 100644 index 0000000000..a361c72ad1 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.OutboundClusterConfig.rst @@ -0,0 +1,11 @@ +OutboundClusterConfig +===================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: OutboundClusterConfig + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.OutboundClusterSummary.rst b/docs/api/opensearch/models/oci.opensearch.models.OutboundClusterSummary.rst new file mode 100644 index 0000000000..b632df0aee --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.OutboundClusterSummary.rst @@ -0,0 +1,11 @@ +OutboundClusterSummary +====================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: OutboundClusterSummary + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.PipelineValidationErrorDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.PipelineValidationErrorDetails.rst new file mode 100644 index 0000000000..b29ec1da71 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.PipelineValidationErrorDetails.rst @@ -0,0 +1,11 @@ +PipelineValidationErrorDetails +============================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: PipelineValidationErrorDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.ReclaimClusterDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.ReclaimClusterDetails.rst new file mode 100644 index 0000000000..192ecc88b3 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.ReclaimClusterDetails.rst @@ -0,0 +1,11 @@ +ReclaimClusterDetails +===================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: ReclaimClusterDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.ReverseConnectionEndpoint.rst b/docs/api/opensearch/models/oci.opensearch.models.ReverseConnectionEndpoint.rst new file mode 100644 index 0000000000..3f58b6866b --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.ReverseConnectionEndpoint.rst @@ -0,0 +1,11 @@ +ReverseConnectionEndpoint +========================= + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: ReverseConnectionEndpoint + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.SecuritySamlConfig.rst b/docs/api/opensearch/models/oci.opensearch.models.SecuritySamlConfig.rst new file mode 100644 index 0000000000..c03dcf7665 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.SecuritySamlConfig.rst @@ -0,0 +1,11 @@ +SecuritySamlConfig +================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: SecuritySamlConfig + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.UpdateClusterSpecsDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.UpdateClusterSpecsDetails.rst new file mode 100644 index 0000000000..97c5ea5383 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.UpdateClusterSpecsDetails.rst @@ -0,0 +1,11 @@ +UpdateClusterSpecsDetails +========================= + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: UpdateClusterSpecsDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.UpdateMaintenanceDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.UpdateMaintenanceDetails.rst new file mode 100644 index 0000000000..0d3b82ed67 --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.UpdateMaintenanceDetails.rst @@ -0,0 +1,11 @@ +UpdateMaintenanceDetails +======================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: UpdateMaintenanceDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.UpdateOpensearchClusterPipelineDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.UpdateOpensearchClusterPipelineDetails.rst new file mode 100644 index 0000000000..5951169f0a --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.UpdateOpensearchClusterPipelineDetails.rst @@ -0,0 +1,11 @@ +UpdateOpensearchClusterPipelineDetails +====================================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: UpdateOpensearchClusterPipelineDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.UpgradeOpenSearchClusterDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.UpgradeOpenSearchClusterDetails.rst new file mode 100644 index 0000000000..d4b75bca0f --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.UpgradeOpenSearchClusterDetails.rst @@ -0,0 +1,11 @@ +UpgradeOpenSearchClusterDetails +=============================== + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: UpgradeOpenSearchClusterDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ No newline at end of file diff --git a/docs/api/opensearch/models/oci.opensearch.models.ValidateOpensearchPipelineDetails.rst b/docs/api/opensearch/models/oci.opensearch.models.ValidateOpensearchPipelineDetails.rst new file mode 100644 index 0000000000..0623dac3ad --- /dev/null +++ b/docs/api/opensearch/models/oci.opensearch.models.ValidateOpensearchPipelineDetails.rst @@ -0,0 +1,11 @@ +ValidateOpensearchPipelineDetails +================================= + +.. currentmodule:: oci.opensearch.models + +.. autoclass:: ValidateOpensearchPipelineDetails + :show-inheritance: + :special-members: __init__ + :members: + :undoc-members: + :inherited-members: \ 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 4ee2808597..4181cb7a88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 7547b3ee0a..dc07ae371a 100644 --- a/examples/add_API_key.py +++ b/examples/add_API_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ef8663ec2b..e0ef53081a 100644 --- a/examples/add_soc_group_policy.py +++ b/examples/add_soc_group_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 f0b60a7f65..bcd534a8dc 100644 --- a/examples/add_soc_user.py +++ b/examples/add_soc_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 a8a6321944..9608e568e3 100644 --- a/examples/adw_example.py +++ b/examples/adw_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/ai_summary_report.py b/examples/ai_summary_report.py index b2688a7e0e..9b79b623fd 100644 --- a/examples/ai_summary_report.py +++ b/examples/ai_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 index f571fe744c..5ac072973a 100644 --- a/examples/allow_control_characters_example.py +++ b/examples/allow_control_characters_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/budget_example.py b/examples/budget_example.py index f5eaf8b6f7..294a39a43f 100644 --- a/examples/budget_example.py +++ b/examples/budget_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2e6efcb2e0..1d25791ca6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 c1a36f6062..859c20e9b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 b2848b3337..bb88789e9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 71536f3336..4af5445ae2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 17528661b0..8687bafeb0 100644 --- a/examples/circuit_breaker_example.py +++ b/examples/circuit_breaker_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 bbc953276a..138e570268 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 edc0048a90..f6618de380 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 39a2a8e1b7..c71ea9fa40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 9060feb8b0..1aaaa7f3d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 5d0f36532e..cdebadf18c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 062085c6bb..bf37729262 100644 --- a/examples/cluster_networks_example.py +++ b/examples/cluster_networks_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e8a15ee3da..a197d5b38d 100644 --- a/examples/composite_operations_example.py +++ b/examples/composite_operations_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 712fbd2083..bb1f1466b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 778aaeb242..2164315dbd 100644 --- a/examples/configuration_example.py +++ b/examples/configuration_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 85fd05e090..3116c01eea 100644 --- a/examples/container_engine.py +++ b/examples/container_engine.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 cd98d86601..86149645d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 34ab66395f..e58eb1ff13 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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 7a567ea98f..6f018baf4e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 9a7ed3dbd5..4fc24ad222 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 8a834660d1..a33155326e 100644 --- a/examples/create_ipv6_example.py +++ b/examples/create_ipv6_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 8299759516..82ffbf21e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 9cd143c826..70a42a6110 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 299453f0ea..2ecd6462a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 379b46511e..eaf190a2b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2c9f224d23..80a1a52f82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 d78db51e1e..4790e7dc32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 92f0a06dbf..7d6b37e308 100644 --- a/examples/database/adb_example.py +++ b/examples/database/adb_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e745ff566d..772c086240 100644 --- a/examples/database_tools/adbs_create_connection_public_ip.py +++ b/examples/database_tools/adbs_create_connection_public_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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_tools/adbs_create_connection_with_pe.py b/examples/database_tools/adbs_create_connection_with_pe.py index 8b9d8949d0..7c43545ef3 100644 --- a/examples/database_tools/adbs_create_connection_with_pe.py +++ b/examples/database_tools/adbs_create_connection_with_pe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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_tools/db_system_create_connection_private_subnet.py b/examples/database_tools/db_system_create_connection_private_subnet.py index 46ff8c7d03..3af86485da 100644 --- a/examples/database_tools/db_system_create_connection_private_subnet.py +++ b/examples/database_tools/db_system_create_connection_private_subnet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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_tools/generic_jdbc_connection.py b/examples/database_tools/generic_jdbc_connection.py index 6903c3af20..63721c45c6 100644 --- a/examples/database_tools/generic_jdbc_connection.py +++ b/examples/database_tools/generic_jdbc_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 Generic JDBC Database Tools connection. diff --git a/examples/database_tools/mysql_create_connection_public_ip.py b/examples/database_tools/mysql_create_connection_public_ip.py index bdfb2e0450..082aeab978 100644 --- a/examples/database_tools/mysql_create_connection_public_ip.py +++ b/examples/database_tools/mysql_create_connection_public_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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_tools/mysql_db_system_create_connection_with_pe.py b/examples/database_tools/mysql_db_system_create_connection_with_pe.py index 350b779509..1e2937e512 100644 --- a/examples/database_tools/mysql_db_system_create_connection_with_pe.py +++ b/examples/database_tools/mysql_db_system_create_connection_with_pe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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_tools/utils/dbtools.py b/examples/database_tools/utils/dbtools.py index 5a0c5cbe60..43a955ddb6 100644 --- a/examples/database_tools/utils/dbtools.py +++ b/examples/database_tools/utils/dbtools.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/dns_service_example.py b/examples/dns_service_example.py index 37488e2eee..a796153105 100644 --- a/examples/dns_service_example.py +++ b/examples/dns_service_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/download_manager_example.py b/examples/download_manager_example.py index 9e89e4a5e3..a53ffca738 100644 --- a/examples/download_manager_example.py +++ b/examples/download_manager_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/drg_attachment_example.py b/examples/drg_attachment_example.py index 24590a98cf..f164e8fca4 100644 --- a/examples/drg_attachment_example.py +++ b/examples/drg_attachment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 fd3efb3428..c80b83b8f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ae9a6e2720..7326c28cd3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 93d163a75c..a57096fd53 100644 --- a/examples/email_service_example.py +++ b/examples/email_service_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/enable_realm_specific_endpoint_example.py b/examples/enable_realm_specific_endpoint_example.py index e3f3106561..6b204dcb53 100644 --- a/examples/enable_realm_specific_endpoint_example.py +++ b/examples/enable_realm_specific_endpoint_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/exacc_backup_destination.py b/examples/exacc_backup_destination.py index 9e74f3df04..1aaa2f9fff 100644 --- a/examples/exacc_backup_destination.py +++ b/examples/exacc_backup_destination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 458971ddc6..99be306d54 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 27b9fb9ad6..f30b1d3506 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 d1c3e620df..427a3548ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 93f0e82ec9..b44c570ee1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 3f0c8eb261..9756753a21 100644 --- a/examples/exacc_infrastructure_example.py +++ b/examples/exacc_infrastructure_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 3b3fd2384e..92b40042f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 4cfb284e4c..4c5ee68305 100644 --- a/examples/exacc_vmcluster_example.py +++ b/examples/exacc_vmcluster_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 cb84d39b52..6bb913d94d 100644 --- a/examples/exacc_vmclusternetwork_example.py +++ b/examples/exacc_vmclusternetwork_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 484abed509..ca9e332b7f 100644 --- a/examples/file_storage_example.py +++ b/examples/file_storage_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/generate_text_sse_example.py b/examples/generate_text_sse_example.py index 7212d6591d..2421514ba8 100644 --- a/examples/generate_text_sse_example.py +++ b/examples/generate_text_sse_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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/get_all_instance_ip_addresses_and_dns_info.py b/examples/get_all_instance_ip_addresses_and_dns_info.py index f010806ad2..acbf5cb55d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ac6555734d..c1a75fdfe0 100644 --- a/examples/get_waf_log.py +++ b/examples/get_waf_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 186751efd7..c9b2c9fb14 100644 --- a/examples/healthchecks_example.py +++ b/examples/healthchecks_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/identity_domains/dynamic_resource_group.py b/examples/identity_domains/dynamic_resource_group.py index 6f925b63f5..8cb708ea6d 100644 --- a/examples/identity_domains/dynamic_resource_group.py +++ b/examples/identity_domains/dynamic_resource_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 list, search and get dynamic resource groups, as well as the CRUD procedures. diff --git a/examples/identity_domains/users.py b/examples/identity_domains/users.py index f8d8a01ca1..cc968b7e2e 100644 --- a/examples/identity_domains/users.py +++ b/examples/identity_domains/users.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 list, search and get users in an identity domains tenancy, as well as the CRUD procedures. diff --git a/examples/instance_configs_example.py b/examples/instance_configs_example.py index 7d638795b4..73052e1bd8 100644 --- a/examples/instance_configs_example.py +++ b/examples/instance_configs_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 51ecc044cc..6d3a187998 100644 --- a/examples/instance_pools_example.py +++ b/examples/instance_pools_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ee5de585e2..4bc7e8b7a1 100644 --- a/examples/instance_principals_examples.py +++ b/examples/instance_principals_examples.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ecb5fb8b00..7a0301fa4c 100644 --- a/examples/invoke_function.py +++ b/examples/invoke_function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 40248e9436..4ef13c95ff 100644 --- a/examples/json_response_example.py +++ b/examples/json_response_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 bb8d9b856d..cafd8fd4cc 100644 --- a/examples/kms_example.py +++ b/examples/kms_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 210fa9513f..d458bd5703 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e9e2a0f440..a613a6391a 100644 --- a/examples/launch_instance_example.py +++ b/examples/launch_instance_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 3f3b5d0768..2106851c86 100644 --- 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 f36de554c4..91a9c327cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 72a4194774..7e9970d4df 100644 --- 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 4991f30b67..8baa93b51d 100644 --- 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 a6ff43b7bf..6cc4912eee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 f4e4fdcc5b..8e08b8daf5 100644 --- 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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_databases_shapes_in_tenancy.py b/examples/list_resources_in_tenancy/list_databases_shapes_in_tenancy.py index 1a35dae88e..56ba23a69a 100644 --- a/examples/list_resources_in_tenancy/list_databases_shapes_in_tenancy.py +++ b/examples/list_resources_in_tenancy/list_databases_shapes_in_tenancy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 fbe11438f0..9781a2152b 100644 --- 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 ae448d8aef..f70210372d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 3a9295d11d..ca65f88e77 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 3ab57c3d97..1516c050d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ab0991b733..5a16e8318f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e4a69ad822..acf23486ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ef2bb6390f..b2ce55255e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 32b4238881..103a39a9f3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 45189ca643..642af38f85 100644 --- a/examples/move_compartment_example.py +++ b/examples/move_compartment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 1b2e607184..08ffa5914f 100644 --- a/examples/multipart_object_upload.py +++ b/examples/multipart_object_upload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 b0fd89ff51..e4f76ce255 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 7fe28f8a34..47de988606 100644 --- a/examples/object_crud.py +++ b/examples/object_crud.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2bb90cc2ee..38e896e838 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 d1b5a8a175..274e1e2c28 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 4776b9636e..b43d8cc8cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 d68c0a0dc0..6b0362c7ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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_folders.py b/examples/object_storage/object_storage_list_folders.py index 5a40d32e02..360f5cb93c 100644 --- a/examples/object_storage/object_storage_list_folders.py +++ b/examples/object_storage/object_storage_list_folders.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 5b0a0b2d43..393e1f1ca5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 f75a407a49..42f30b5246 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 413187b080..f885cc723f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 5d1e8cd23b..76332300b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/oci_ai/oci_language/pretrained_model_example.py b/examples/oci_ai/oci_language/pretrained_model_example.py index d46f475b37..6c06387c2b 100644 --- a/examples/oci_ai/oci_language/pretrained_model_example.py +++ b/examples/oci_ai/oci_language/pretrained_model_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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/oci_capacity_reporter/oci_capacity_reporter_gui.py b/examples/oci_capacity_reporter/oci_capacity_reporter_gui.py index 307d0a8308..1c2ee63b9e 100644 --- a/examples/oci_capacity_reporter/oci_capacity_reporter_gui.py +++ b/examples/oci_capacity_reporter/oci_capacity_reporter_gui.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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/oke_workload_signer_example.py b/examples/oke_workload_signer_example.py index 2c6c424316..1719321006 100644 --- a/examples/oke_workload_signer_example.py +++ b/examples/oke_workload_signer_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/pagination.py b/examples/pagination.py index cad8482c6b..c8a8c1ae75 100644 --- a/examples/pagination.py +++ b/examples/pagination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 c11839f243..00fe998a3c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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_api_collection.py b/examples/parallel_api_collection.py index debad39a01..f846c6348e 100644 --- a/examples/parallel_api_collection.py +++ b/examples/parallel_api_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # Goal of Script!!! diff --git a/examples/parallel_upload_to_object_storage.py b/examples/parallel_upload_to_object_storage.py index 1d8c95b02e..a32ec3900a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 a7ea69c6f1..735c7b57ad 100644 --- a/examples/quotas_example.py +++ b/examples/quotas_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ebe94193ce..c48e959a73 100644 --- a/examples/raw_request.py +++ b/examples/raw_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 5176b8c262..cbaac22cde 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 efa035578f..0d95f62165 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e33411b5eb..44cae0adcc 100644 --- a/examples/resource_principals_example.py +++ b/examples/resource_principals_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 0b4ffbe7e3..2febe2c75e 100644 --- a/examples/retries.py +++ b/examples/retries.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 d1f107ade0..f1db6c6144 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 8f3bb06b72..1d76ac85e4 100644 --- a/examples/retrieve_audit_events.py +++ b/examples/retrieve_audit_events.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 6423f436fe..fcc8a9d0dc 100644 --- a/examples/search_example.py +++ b/examples/search_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 8ccf397005..20e7848617 100644 --- a/examples/secret_example.py +++ b/examples/secret_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 1ef5173071..117fd5ccb2 100644 --- a/examples/secretclient_example.py +++ b/examples/secretclient_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 3b97856ac4..9c936f15b4 100644 --- a/examples/showoci/CHANGELOG.rst +++ b/examples/showoci/CHANGELOG.rst @@ -4,6 +4,17 @@ All notable changes to this project will be documented in this file. The format is based on `Keep a Changelog `_. +===================== +25.01.13 - 25.01.13 +===================== +* Added Cloud Advisor Recommendations - run on root compartment only + +===================== +24.12.17 - 24.12.17 +===================== +* Change database backup size to source database size +* Added Licensing type for instance + ===================== 24.12.10 - 24.12.10 ===================== diff --git a/examples/showoci/showoci.py b/examples/showoci/showoci.py index 29b1aac2e6..2afca50ce8 100644 --- a/examples/showoci/showoci.py +++ b/examples/showoci/showoci.py @@ -79,6 +79,7 @@ # - oci.generative_ai.GenerativeAiClient # - oci.certificates_management.CertificatesManagementClient # - oci.data_safe.DataSafeClient +# - oci.optimizer.OptimizerClient # # Modules without CSV yet: # - datasciencemodeldeployment @@ -109,7 +110,6 @@ # - oci.media_services.MediaServicesClient # - oci.opa.OpaInstanceClient # - oci.opsi.OperationsInsightsClient -# - oci.optimizer.OptimizerClient # - oci.recovery.DatabaseRecoveryClient # - oci.redis.RedisClusterClient # - oci.service_mesh.ServiceMeshClient @@ -128,7 +128,7 @@ import os import time -version = "24.12.10" +version = "25.01.13" ########################################################################## # check OCI version diff --git a/examples/showoci/showoci_data.py b/examples/showoci/showoci_data.py index a8c691e843..7f55ee1e6b 100644 --- a/examples/showoci/showoci_data.py +++ b/examples/showoci/showoci_data.py @@ -20,7 +20,7 @@ class ShowOCIData(object): - version = "24.12.10" + version = "25.01.13" ############################################ # ShowOCIService - Service object to query @@ -1912,6 +1912,7 @@ def __get_core_compute_instances(self, region_name, compartment): 'ipxe_script': instance['ipxe_script'], 'launch_mode': instance['launch_mode'], 'is_cross_numa_node': instance['is_cross_numa_node'], + 'licensing_configs': instance['licensing_configs'], 'logs': self.service.get_logging_log(instance['id']) } @@ -2388,11 +2389,9 @@ def __get_database_db_backups(self, backups): try: for backup in backups: - bsize = "None" - ssize = "" + bsize = "" if backup['database_size_in_gbs']: bsize = "{0:.1f}".format(round(float(backup['database_size_in_gbs']), 1)) + "GB" - ssize = "{0:.1f}".format(round(float(backup['database_size_in_gbs']), 1)) data.append( { @@ -2411,8 +2410,10 @@ def __get_database_db_backups(self, backups): 'kms_key_version_id': backup['kms_key_version_id'], 'vault_id': backup['vault_id'], 'type': backup['type'], - 'sum_info': 'Object Storage - DB Backup (GB)', - 'sum_size_gb': ssize, + # The database size in gbs is not bakcup size, empty the backup size + # 'sum_info': 'Object Storage - DB Backup (GB)', + 'sum_size_gb': "", + 'database_size_in_gbs': bsize, 'database_id': backup['database_id'], 'compartment_id': backup['compartment_id'], 'compartment_name': backup['compartment_name'], @@ -2951,17 +2952,15 @@ def __get_database_db_all_backups(self, region_name, compartment): list_db_backups = self.service.search_multi_items(self.service.C_DATABASE, self.service.C_DATABASE_BACKUPS, 'region_name', region_name, 'compartment_id', compartment['id']) for backup in list_db_backups: - bsize = "None" ssize = "" if backup['database_size_in_gbs']: - bsize = "{0:.1f}".format(round(float(backup['database_size_in_gbs']), 1)) + "GB" ssize = "{0:.1f}".format(round(float(backup['database_size_in_gbs']), 1)) data.append( { 'name': str(backup['display_name']) + " - " + str(backup['type']) + " - " + str(backup['lifecycle_state']), 'time': str(backup['time_started'])[0:16] + " - " + str(backup['time_ended'])[0:16], - 'size': bsize, + 'size': "", 'id': backup['id'], 'display_name': backup['display_name'], 'standalone': backup['standalone'], @@ -2976,12 +2975,11 @@ def __get_database_db_all_backups(self, region_name, compartment): 'vault_id': backup['vault_id'], 'type': backup['type'], 'database_id': backup['database_id'], + 'database_size_in_gbs': ssize, 'compartment_name': backup['compartment_name'], 'compartment_path': backup['compartment_path'], 'compartment_id': backup['compartment_id'], - 'region_name': backup['region_name'], - 'sum_info': 'Object Storage - DB Backup (GB)', - 'sum_size_gb': ssize + 'region_name': backup['region_name'] }) return data @@ -4311,6 +4309,8 @@ def __get_monitoring_main(self, region_name, compartment): alarms = self.service.search_multi_items(self.service.C_MONITORING, self.service.C_MONITORING_ALARMS, 'region_name', region_name, 'compartment_id', compartment['id']) events = self.service.search_multi_items(self.service.C_MONITORING, self.service.C_MONITORING_EVENTS, 'region_name', region_name, 'compartment_id', compartment['id']) agents = self.service.search_multi_items(self.service.C_MONITORING, self.service.C_MONITORING_AGENTS, 'region_name', region_name, 'compartment_id', compartment['id']) + advisor_recommendations = self.service.search_multi_items(self.service.C_MONITORING, self.service.C_MONITORING_ADVISOR_RECOMMENDATIONS, 'region_name', region_name, 'compartment_id', compartment['id']) + advisor_resource_actions = self.service.search_multi_items(self.service.C_MONITORING, self.service.C_MONITORING_ADVISOR_RESOURCE_ACTIONS, 'region_name', region_name, 'compartment_id', compartment['id']) db_managements = self.service.search_multi_items(self.service.C_MONITORING, self.service.C_MONITORING_DB_MANAGEMENT, 'region_name', region_name, 'compartment_id', compartment['id']) data = {} @@ -4331,6 +4331,13 @@ def __get_monitoring_main(self, region_name, compartment): if agents: data['agents'] = agents + # if advisors add it + if advisor_recommendations: + data['advisor_recommendations'] = advisor_recommendations + + if advisor_resource_actions: + data['advisor_resource_actions'] = advisor_resource_actions + # if db_managements add it if db_managements: data['db_managements'] = db_managements diff --git a/examples/showoci/showoci_output.py b/examples/showoci/showoci_output.py index 3d29ef0f8b..fa33f0b7f6 100644 --- a/examples/showoci/showoci_output.py +++ b/examples/showoci/showoci_output.py @@ -22,7 +22,7 @@ class ShowOCIOutput(object): - version = "24.12.10" + version = "25.01.13" ########################################################################## # spaces for align @@ -1383,7 +1383,7 @@ def __print_database_db_exadata_vmcluster(self, vmclusters): # print backups for backup in db['backups']: - print(self.tabs + self.tabs + " " + backup['name'] + " - " + backup['time'] + " - " + backup['size']) + print(self.tabs + self.tabs + " " + backup['name'] + " - " + backup['time'] + " - DB Size " + backup['size']) print(self.tabs + " : " + '-' * 90) @@ -1611,7 +1611,7 @@ def __print_database_db_exacc_infra(self, list_exadata): # print backups for backup in db['backups']: - print(self.tabs + self.tabs + " " + backup['name'] + " - " + backup['time'] + " - " + backup['size']) + print(self.tabs + self.tabs + " " + backup['name'] + " - " + backup['time'] + " - DB Size " + backup['size']) print(self.tabs + " : " + '-' * 90) @@ -1780,7 +1780,7 @@ def __print_database_db_system(self, list_db_systems): # print backups for backup in db['backups']: - print(self.tabs + self.tabs + " " + backup['name'] + " - " + backup['time'] + " - " + backup['size']) + print(self.tabs + self.tabs + " " + backup['name'] + " - " + backup['time'] + " - DB Size " + backup['size']) except Exception as e: self.__print_error("__print_database_db_system", e) @@ -4369,6 +4369,8 @@ class ShowOCICSV(object): csv_announcements = [] csv_errors = [] csv_resources = [] + csv_advisor_recommendations = [] + csv_advisor_resource_actions = [] csv_functions_apps = [] csv_functions_fns = [] csv_certificates = [] @@ -4565,6 +4567,10 @@ def generate_csv(self, data, csv_file_header, tenancy, add_date_field=True, csv_ self.__export_to_csv_file("all_resources", self.csv_resources) self.__export_to_csv_file("announcements", self.csv_announcements) self.__export_to_csv_file("errors", self.csv_errors) + + self.__export_to_csv_file("advisor_recommendations", self.csv_advisor_recommendations) + self.__export_to_csv_file("advisor_resource_actions", self.csv_advisor_resource_actions) + self.__export_to_csv_file("identity_compartments", self.csv_identity_compartments) self.__export_to_csv_file("identity_users", self.csv_identity_users) self.__export_to_csv_file("identity_network_sources", self.csv_identity_network_sources) @@ -6780,7 +6786,7 @@ def __csv_database_backup_item(self, backups, dbs_name, db_name): 'database_edition': backup['database_edition'], 'backup_name': backup['display_name'], 'time': backup['time'], - 'size': backup['sum_size_gb'], + 'size': "", 'id': backup['id'], 'database_id': backup['database_id'], 'kms_key_id': backup['kms_key_id'], @@ -8423,6 +8429,9 @@ def __csv_core_compute_instances(self, region_name, instances): 'block_volumes_is_multipath': "", 'block_volumes_is_read_only': "", 'vnic_ids': "", + 'is_cross_numa_node': instance['is_cross_numa_node'], + 'launch_mode': instance['launch_mode'], + 'licensing_configs': str(instance['licensing_configs']), 'freeform_tags': self.__get_freeform_tags(instance['freeform_tags']), 'defined_tags': self.__get_defined_tags(instance['defined_tags']), 'instance_id': instance['id'], @@ -10590,6 +10599,12 @@ def __csv_monitoring(self, region_name, data): if 'alarms' in data: self.__csv_monitor_alarms(region_name, data['alarms']) + if 'advisor_recommendations' in data: + self.__csv_monitor_advisor_recommendations(data['advisor_recommendations']) + + if 'advisor_resource_actions' in data: + self.__csv_monitor_advisor_resource_actions(data['advisor_resource_actions']) + except Exception as e: self.__print_error("__csv_monitoring", e) @@ -10632,6 +10647,83 @@ def __csv_monitor_agents(self, region_name, agents): except Exception as e: self.__print_error("__csv_monitor_agents", e) + ########################################################################## + # Advisor Recommendations + ########################################################################## + def __csv_monitor_advisor_recommendations(self, advisors): + try: + + if len(advisors) == 0: + return + + if advisors: + for ar in advisors: + + data = { + 'category_id': ar['category_id'], + 'name': ar['name'], + 'description': ar['description'], + 'importance': ar['importance'], + 'lifecycle_state': ar['lifecycle_state'], + 'estimated_cost_saving': ar['estimated_cost_saving'], + 'nodes_shapes': str(':'.join(x['status'] + "=" + x['count'] for x in ar['resource_counts'])), + 'status': ar['status'], + 'time_status_begin': ar['time_status_begin'], + 'time_status_end': ar['time_status_end'], + 'time_created': ar['time_created'], + 'time_updated': ar['time_updated'], + 'compartment_id': ar['compartment_id'], + 'extended_metadata': str(ar['extended_metadata']), + 'id': ar['id'] + } + + self.csv_advisor_recommendations.append(data) + + except Exception as e: + self.__print_error("__csv_monitor_advisor_recommendations", e) + + ########################################################################## + # Advisor Resource Actions + ########################################################################## + def __csv_monitor_advisor_resource_actions(self, advisors): + try: + + if len(advisors) == 0: + return + + if advisors: + for ar in advisors: + + data = { + 'compartment_name': ar['compartment_name'], + 'compartment_path': ar['compartment_path'], + 'category_id': ar['category_id'], + 'recommendation_id': ar['recommendation_id'], + 'recommendation_name': ar['recommendation_name'], + 'resource_id': ar['resource_id'], + 'name': ar['name'], + 'resource_type': ar['resource_type'], + 'action_type': ar['action_type'], + 'action_description': ar['action_description'], + 'action_url': ar['action_url'], + 'lifecycle_state': ar['lifecycle_state'], + 'estimated_cost_saving': ar['estimated_cost_saving'], + 'status': ar['status'], + 'time_status_begin': ar['time_status_begin'], + 'time_status_end': ar['time_status_end'], + 'time_created': ar['time_created'], + 'time_updated': ar['time_updated'], + 'metadata': str(ar['metadata']), + 'extended_metadata': str(ar['extended_metadata']), + 'compartment_id': ar['compartment_id'], + 'id': ar['id'] + } + + self.csv_advisor_resource_actions.append(data) + + except Exception as e: + self.__print_error("__csv_monitor_advisor_resource_actions", e) + ########################################################################## # Monitor Events ########################################################################## diff --git a/examples/showoci/showoci_service.py b/examples/showoci/showoci_service.py index 58e71027aa..9ba3cd97ef 100644 --- a/examples/showoci/showoci_service.py +++ b/examples/showoci/showoci_service.py @@ -39,8 +39,8 @@ # class ShowOCIService ########################################################################## class ShowOCIService(object): - version = "24.12.10" - oci_compatible_version = "2.129.4" + version = "25.01.13" + oci_compatible_version = "2.141.1" thread_lock = threading.Lock() collection_ljust = 40 @@ -191,6 +191,8 @@ class ShowOCIService(object): C_MONITORING_ALARMS = "alarms" C_MONITORING_EVENTS = "events" C_MONITORING_AGENTS = "agents" + C_MONITORING_ADVISOR_RESOURCE_ACTIONS = "advisor_resource_actions" + C_MONITORING_ADVISOR_RECOMMENDATIONS = "advisor_recommendations" C_MONITORING_DB_MANAGEMENT = "db_management" # Notifications @@ -307,6 +309,7 @@ class ShowOCIService(object): EXCLUDE_POSTGRESQL = 'POSTGRESQL' EXCLUDE_GOLDENGATE = 'GOLDENGATE' EXCLUDE_ANNOUNCEMENT = 'ANNOUNCEMENT' + EXCLUDE_ADVISOR = 'ADVISOR' ########################################################################## # Service not yet available - need to remove on availability @@ -500,6 +503,9 @@ class ShowOCIService(object): {'date': '2024-07', 'version': '19.24'}, {'date': '2024-10', 'version': '19.25'}, {'date': '2025-01', 'version': '19.26'}, + {'date': '2025-04', 'version': '19.27'}, + {'date': '2025-07', 'version': '19.28'}, + {'date': '2025-10', 'version': '19.29'}, {'date': '2020-12', 'version': '21.1'}, {'date': '2021-04', 'version': '21.2'}, {'date': '2021-07', 'version': '21.3'}, @@ -516,6 +522,10 @@ class ShowOCIService(object): {'date': '2024-04', 'version': '21.14'}, {'date': '2024-07', 'version': '21.15'}, {'date': '2024-10', 'version': '21.16'}, + {'date': '2025-01', 'version': '21.17'}, + {'date': '2025-04', 'version': '21.18'}, + {'date': '2025-07', 'version': '21.19'}, + {'date': '2025-10', 'version': '21.20'} ] ########################################################################## @@ -5802,7 +5812,13 @@ def __load_core_compute_instances(self, compute, compartments, plugin_client): 'ipxe_script': self.get_value(arr.ipxe_script), 'launch_mode': self.get_value(arr.launch_mode), 'is_cross_numa_node': self.get_value(arr.is_cross_numa_node), - 'extended_metadata': arr.extended_metadata} + 'extended_metadata': arr.extended_metadata, + 'licensing_configs': [{ + 'type': self.get_value(x.type), + 'license_type': self.get_value(x.license_type), + 'os_version': self.get_value(x.os_version) + } for x in arr.licensing_configs] if arr.licensing_configs else [] + } if arr.launch_options: val['launch_boot_volume_type'] = self.get_value(arr.launch_options.boot_volume_type) @@ -14427,8 +14443,9 @@ def __load_section_monitor_notification_security_quotas_main(self): try: section_start_time = time.time() - print("Monitoring, Notifications, Events, Bastion, Logging, KMS, Limits, Quotas, E-Mail, Budget, Certificates...") + print("Monitoring, Notifications, Events, Bastion, Logging, KMS, Limits, Quotas, E-Mail, Budget, Advisors, Certificates...") + db_cloud_advisor_client = self.__create_client(oci.optimizer.OptimizerClient, key=self.EXCLUDE_ADVISOR) monitor_client = self.__create_client(oci.monitoring.MonitoringClient) ons_cp_client = self.__create_client(oci.ons.NotificationControlPlaneClient) ons_dp_client = self.__create_client(oci.ons.NotificationDataPlaneClient) @@ -14459,6 +14476,8 @@ def __load_section_monitor_notification_security_quotas_main(self): self.__initialize_data_key(self.C_SECURITY, self.C_SECURITY_LOGGING) self.__initialize_data_key(self.C_SECURITY, self.C_SECURITY_KEYS) self.__initialize_data_key(self.C_SECURITY, self.C_SECURITY_VAULTS) + self.__initialize_data_key(self.C_MONITORING, self.C_MONITORING_ADVISOR_RESOURCE_ACTIONS) + self.__initialize_data_key(self.C_MONITORING, self.C_MONITORING_ADVISOR_RECOMMENDATIONS) self.__initialize_data_key(self.C_MONITORING, self.C_MONITORING_ALARMS) self.__initialize_data_key(self.C_MONITORING, self.C_MONITORING_EVENTS) self.__initialize_data_key(self.C_MONITORING, self.C_MONITORING_AGENTS) @@ -14492,6 +14511,8 @@ def __load_section_monitor_notification_security_quotas_main(self): monitor[self.C_MONITORING_EVENTS] += self.__load_monitoring_events(event_client, compartments) monitor[self.C_MONITORING_AGENTS] += self.__load_monitoring_agents(management_agent_client, compartments) monitor[self.C_MONITORING_DB_MANAGEMENT] += self.__load_monitoring_database_management(db_management_client, compartments) + monitor[self.C_MONITORING_ADVISOR_RECOMMENDATIONS] += self.__load_monitoring_cloud_advisor_recommendations(db_cloud_advisor_client, tenancy['id'], compartments) + monitor[self.C_MONITORING_ADVISOR_RESOURCE_ACTIONS] += self.__load_monitoring_cloud_advisor_resource_actions(db_cloud_advisor_client, compartments) notifications[self.C_NOTIFICATIONS_TOPICS] += self.__load_notifications_topics(ons_cp_client, compartments) notifications[self.C_NOTIFICATIONS_SUBSCRIPTIONS] += self.__load_notifications_subscriptions(ons_dp_client, compartments) @@ -14520,6 +14541,8 @@ def __load_section_monitor_notification_security_quotas_main(self): ########################## else: with ThreadPoolExecutor(max_workers=self.flags.threads) as executor: + future_MONITORING_ADVISOR_RECOMMENDATIONS = executor.submit(self.__load_monitoring_cloud_advisor_recommendations, db_cloud_advisor_client, tenancy['id'], compartments) + future_MONITORING_ADVISOR_RESOURCE_ACTIONS = executor.submit(self.__load_monitoring_cloud_advisor_resource_actions, db_cloud_advisor_client, compartments) future_MONITORING_ALARMS = executor.submit(self.__load_monitoring_alarms, monitor_client, compartments) future_MONITORING_EVENTS = executor.submit(self.__load_monitoring_events, event_client, compartments) future_MONITORING_AGENTS = executor.submit(self.__load_monitoring_agents, management_agent_client, compartments) @@ -14542,6 +14565,8 @@ def __load_section_monitor_notification_security_quotas_main(self): future_CERTIFICATE_CA_BUNDLES = executor.submit(self.__load_certificate_ca_bundles, certificates_client, compartments) future_CERTIFICATE_AUTHORITIES = executor.submit(self.__load_certificate_authorities, certificates_client, compartments) + monitor[self.C_MONITORING_ADVISOR_RECOMMENDATIONS] += next(as_completed([future_MONITORING_ADVISOR_RECOMMENDATIONS])).result() + monitor[self.C_MONITORING_ADVISOR_RESOURCE_ACTIONS] += next(as_completed([future_MONITORING_ADVISOR_RESOURCE_ACTIONS])).result() monitor[self.C_MONITORING_ALARMS] += next(as_completed([future_MONITORING_ALARMS])).result() monitor[self.C_MONITORING_EVENTS] += next(as_completed([future_MONITORING_EVENTS])).result() monitor[self.C_MONITORING_AGENTS] += next(as_completed([future_MONITORING_AGENTS])).result() @@ -14681,6 +14706,227 @@ def __load_monitoring_events(self, event_client, compartments): self.__print_error(e) return data + ########################################################################## + # __load_monitoring_cloud_advisor_recommendation_name + ########################################################################## + def __load_monitoring_cloud_advisor_recommendation_name(self, cloud_advisor_client, recommendation_id): + data = "" + try: + # check if recommendation is in the array of recommendations + for rc in self.data[self.C_MONITORING][self.C_MONITORING_ADVISOR_RECOMMENDATIONS]: + if rc['id'] == recommendation_id: + return rc['name'] + + # check if recommendation_name already feteched for resource actions + for rc in self.data[self.C_MONITORING][self.C_MONITORING_ADVISOR_RESOURCE_ACTIONS]: + if rc['recommendation_id'] == recommendation_id and not rc['recommendation_name']: + return rc['recommendation_name'] + + # fetch the name + rc = cloud_advisor_client.get_recommendation(recommendation_id=recommendation_id, retry_strategy=oci.retry.DEFAULT_RETRY_STRATEGY).data + if rc: + return str(rc.name) + + return "" + except oci.exceptions.RequestException as e: + if not self.__check_request_error(e): + self.__print_error(e) + return data + except Exception as e: + self.__print_error(e) + return data + + ########################################################################## + # __load_monitoring_cloud_advisor_resource_actions + ########################################################################## + def __load_monitoring_cloud_advisor_resource_actions(self, cloud_advisor_client, compartments): + + data = [] + cnt = 0 + start_time = time.time() + + try: + errstr = "" + header = "Cloud Advisor Resource Actions" + self.__load_print_status_with_threads(header) + + # loop on all compartments + for compartment in compartments: + + # skip managed paas compartment + if self.__if_managed_paas_compartment(compartment['name']): + continue + + items = [] + try: + items = oci.pagination.list_call_get_all_results( + cloud_advisor_client.list_resource_actions, + compartment_id=compartment['id'], + compartment_id_in_subtree=False, + sort_by="NAME", + retry_strategy=oci.retry.DEFAULT_RETRY_STRATEGY + ).data + + except oci.exceptions.ServiceError as e: + if 'go to your home region' in str(e): + errstr = "Can run on home region only, skipping." + self.__load_print_thread_cnt(header, cnt, start_time, errstr) + return data + if self.__check_service_error(e, compartment): + self.__load_print_auth_warning(to_print=self.flags.skip_threads) + errstr += "a" + continue + else: + self.__load_print_error(e, compartment) + errstr += "e" + continue + + except Exception as e: + self.__load_print_error(e, compartment) + errstr += "e" + continue + + if self.flags.skip_threads: + print(".", end="") + + # event = oci.events.models.RuleSummary + for item in items: + if self.get_value(item.lifecycle_state) == 'TERMINATED': + continue + val = { + 'id': str(item.id), + 'category_id': self.get_value(item.category_id), + 'recommendation_id': self.get_value(item.recommendation_id), + 'recommendation_name': self.__load_monitoring_cloud_advisor_recommendation_name(cloud_advisor_client, self.get_value(item.recommendation_id)), + 'resource_id': self.get_value(item.resource_id), + 'name': self.get_value(item.name), + 'resource_type': self.get_value(item.resource_type), + 'action_type': self.get_value(item.action.type) if item.action else "", + 'action_description': self.get_value(item.action.description) if item.action else "", + 'action_url': self.get_value(item.action.url) if item.action else "", + 'lifecycle_state': self.get_value(item.lifecycle_state), + 'estimated_cost_saving': self.get_value(item.estimated_cost_saving), + 'status': self.get_value(item.status), + 'time_status_begin': self.get_date(item.time_status_begin), + 'time_status_end': self.get_date(item.time_status_end), + 'time_created': self.get_date(item.time_created), + 'time_updated': self.get_date(item.time_updated), + 'metadata': item.metadata if item.metadata else "", + 'extended_metadata': item.extended_metadata if item.extended_metadata else "", + 'compartment_id': self.get_value(item.compartment_id), + 'compartment_name': self.get_value(item.compartment_name), + 'compartment_path': str(compartment['path']), + 'region_name': str(self.config['region']) + } + + # add the data + cnt += 1 + data.append(val) + + self.__load_print_thread_cnt(header, cnt, start_time, errstr) + return data + + except oci.exceptions.RequestException as e: + if not self.__check_request_error(e): + self.__print_error(e) + return data + except Exception as e: + self.__print_error(e) + return data + + ########################################################################## + # __load_monitoring_cloud_advisor_recommendations + # Lists the Cloud Advisor recommendations that are currently supported + ########################################################################## + def __load_monitoring_cloud_advisor_recommendations(self, cloud_advisor_client, root_compartment_id, compartments): + + data = [] + cnt = 0 + start_time = time.time() + + try: + errstr = "" + header = "Cloud Advisor Recommendations" + self.__load_print_status_with_threads(header) + + if not cloud_advisor_client: + self.__load_print_thread_exclude(header) + return data + + # Check if root compartment in the list to scan + scan_compartment = False + for c in compartments: + if c['id'] == root_compartment_id: + scan_compartment = True + + if not scan_compartment: + errstr = "Can run on root compartment only, skipping." + self.__load_print_thread_cnt(header, cnt, start_time, errstr) + return data + + # Only supported the root compartment + # Check if root compartment in the list + advisors = oci.pagination.list_call_get_all_results( + cloud_advisor_client.list_recommendations, + compartment_id=root_compartment_id, + compartment_id_in_subtree=True, + sort_by="NAME", + retry_strategy=oci.retry.DEFAULT_RETRY_STRATEGY + ).data + + # event = oci.optimizer.models.RecommendationSummary + for item in advisors: + val = { + 'id': str(item.id), + 'category_id': self.get_value(item.category_id), + 'name': self.get_value(item.name), + 'description': self.get_value(item.description), + 'importance': self.get_value(item.importance), + 'resource_counts': [{ + 'status': self.get_value(x.status), + 'count': self.get_value(x.count) + } for x in item.resource_counts if x.count is not None] if item.resource_counts else [], + 'lifecycle_state': self.get_value(item.lifecycle_state), + 'estimated_cost_saving': self.get_value(item.estimated_cost_saving), + 'status': self.get_value(item.status), + 'time_status_begin': self.get_date(item.time_status_begin), + 'time_status_end': self.get_date(item.time_status_end), + 'time_created': self.get_date(item.time_created), + 'time_updated': self.get_date(item.time_updated), + 'compartment_id': self.get_value(item.compartment_id), + 'extended_metadata': item.extended_metadata, + 'region_name': str(self.config['region']) + } + + # add the data + cnt += 1 + data.append(val) + + self.__load_print_thread_cnt(header, cnt, start_time, errstr) + return data + + except oci.exceptions.ServiceError as e: + if 'go to your home region' in str(e): + errstr = "Can run on home region only, skipping." + self.__load_print_thread_cnt(header, cnt, start_time, errstr) + return data + if self.__check_service_error(e): + self.__load_print_auth_warning(to_print=self.flags.skip_threads) + errstr += "a" + else: + self.__load_print_error(e) + errstr += "e" + + except oci.exceptions.RequestException as e: + if self.__check_request_error(e): + return data + else: + self.__load_print_error(e) + return data + except Exception as e: + self.__print_error(e) + return data + ########################################################################## # __load_monitoring_agents ########################################################################## diff --git a/examples/showrewards/showrewards.py b/examples/showrewards/showrewards.py index 895e3690f6..fbd045efa1 100644 --- a/examples/showrewards/showrewards.py +++ b/examples/showrewards/showrewards.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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/showsubscription/showsubscription.py b/examples/showsubscription/showsubscription.py index ea28b475a6..90ce43e979 100644 --- a/examples/showsubscription/showsubscription.py +++ b/examples/showsubscription/showsubscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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/showusage/showusage.py b/examples/showusage/showusage.py index 4bbc0e785b..b090827165 100644 --- a/examples/showusage/showusage.py +++ b/examples/showusage/showusage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 6aac0dca2a..fa9fe5e7be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 4c28498cb5..13a8ee29f5 100644 --- a/examples/stop_untagged_instances.py +++ b/examples/stop_untagged_instances.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 7474109e02..f50c1d78a2 100644 --- a/examples/stream_example.py +++ b/examples/stream_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ef73c10d08..dc141fae23 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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/tagging.py b/examples/tagging.py index 49bc18f0ec..d7021ba2b1 100644 --- a/examples/tagging.py +++ b/examples/tagging.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 24ae460023..ecb7e01379 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e9cfa38eb2..5f66d466e7 100644 --- a/examples/usage_api_example.py +++ b/examples/usage_api_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/user_crud.py b/examples/user_crud.py index a8d8fef44c..86110d42ff 100644 --- a/examples/user_crud.py +++ b/examples/user_crud.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 fef39f4509..bea2070c18 100644 --- a/examples/volume_attachment_example.py +++ b/examples/volume_attachment_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 1fa7997bdf..0f7e8a7148 100644 --- 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 f8a81b452e..f0193524b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 058127eca5..35a3a04680 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e6e9a8e2e0..3f7d5602db 100644 --- a/examples/work_requests.py +++ b/examples/work_requests.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ca2d0395ba..9e56fc4530 100644 --- a/scripts/wercker_validate.py +++ b/scripts/wercker_validate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2d1ed69182..bf76fa86ce 100644 --- a/setup.py +++ b/setup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 3733b330be..5188c80171 100644 --- a/src/oci/__init__.py +++ b/src/oci/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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, circuit_breaker, alloy diff --git a/src/oci/_vendor/__init__.py b/src/oci/_vendor/__init__.py index d66cfec79c..729b203c2a 100644 --- a/src/oci/_vendor/__init__.py +++ b/src/oci/_vendor/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 f5cf87228f..1994398e01 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 df7a2aa70c..4539ba542d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 96e6ba5aca..819be5b57d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 aea057c2fc..b4345f7c54 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 66999616df..f8675c947e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 abf9340502..97b6dad042 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 5d93860a8b..e65a2c9657 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2e12afcee9..64c7f0a9f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 27ab4e2b25..fe814ae333 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 6ece0c41c5..bb0ab144c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 39d8bbeb46..e204ffaf16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 4c5f60158e..633f4a07f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 cd7982eb91..560359cfb3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 928368feae..942208d689 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2217b75606..266dcbf7aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ac21286e8f..ce7eeac7c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 dddc7fab6e..6ed45aa28d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 67a2376d5a..3461d4395f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 9e7b3d8aa9..addc275495 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 54e4b1f305..340bec5def 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 4b37c51ca9..f67db9dd7f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 cebdf74509..7ba8246a42 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 7da0b4d0fd..432bb389c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ec45849d57..4def072341 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 223beb6a34..1cbd3c1280 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 449b34d6df..1b4a179dab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 3e33a057e2..5ace8b77be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e70d975b87..a08442cab1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e4a6d91eae..d2db6a0a78 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 6e461afe2b..e3f4cc8e0a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2ad13f82cd..84221b46e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 5f2d046319..0bbedcef04 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 34451bd366..cda75f901b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 b65de92d18..b495432ca9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 dd1edde145..35bc352b5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 5d93860a8b..e65a2c9657 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 85f5a7d039..7528d84de5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 04aeabd7ac..d3f699dd82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 08eefff843..98ce08e7ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 6372d2ad14..5fd2998c26 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2a36f0c365..c7e8279434 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 0ac3f7f616..9124d09350 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 5c62bea15b..bda33bdea4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 f553b1c671..cea94fc942 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 3ed24a416a..3e11e5caf4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ef2bcf7e7a..1584e3999e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 44eb751bf9..8dda9dce09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 e975130d04..d2eb1c35d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 52132cebef..caed14c936 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2024, Kim Davies and contributors. All rights reserved. diff --git a/src/oci/_vendor/idna/codec.py b/src/oci/_vendor/idna/codec.py index 57f9c7bca0..031367bcc7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2024, Kim Davies and contributors. All rights reserved. diff --git a/src/oci/_vendor/idna/compat.py b/src/oci/_vendor/idna/compat.py index a6a232517a..ce9f574bab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2024, Kim Davies and contributors. All rights reserved. diff --git a/src/oci/_vendor/idna/core.py b/src/oci/_vendor/idna/core.py index 115cf1076e..cf9168d222 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2024, Kim Davies and contributors. All rights reserved. diff --git a/src/oci/_vendor/idna/idnadata.py b/src/oci/_vendor/idna/idnadata.py index 7ed152162c..6a0613ca01 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2024, Kim Davies and contributors. All rights reserved. diff --git a/src/oci/_vendor/idna/intranges.py b/src/oci/_vendor/idna/intranges.py index fd2a2d2a11..750637f4b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2024, Kim Davies and contributors. All rights reserved. diff --git a/src/oci/_vendor/idna/package_data.py b/src/oci/_vendor/idna/package_data.py index 6808db1c60..79e320c500 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2024, Kim Davies and contributors. All rights reserved. diff --git a/src/oci/_vendor/idna/uts46data.py b/src/oci/_vendor/idna/uts46data.py index 73b1080824..20efcd4b22 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2024, Kim Davies and contributors. All rights reserved. diff --git a/src/oci/_vendor/jwt/__init__.py b/src/oci/_vendor/jwt/__init__.py index ffca611e95..0c87ffd3d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2022 José Padilla diff --git a/src/oci/_vendor/jwt/algorithms.py b/src/oci/_vendor/jwt/algorithms.py index f4732354f3..0234f38c8b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2022 José Padilla diff --git a/src/oci/_vendor/jwt/api_jwk.py b/src/oci/_vendor/jwt/api_jwk.py index be64ab1810..237f4f3f9d 100644 --- a/src/oci/_vendor/jwt/api_jwk.py +++ b/src/oci/_vendor/jwt/api_jwk.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2022 José Padilla diff --git a/src/oci/_vendor/jwt/api_jws.py b/src/oci/_vendor/jwt/api_jws.py index 1d477da50a..e5b740c25d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2022 José Padilla diff --git a/src/oci/_vendor/jwt/api_jwt.py b/src/oci/_vendor/jwt/api_jwt.py index a488cd21e2..9f8a8624dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2022 José Padilla diff --git a/src/oci/_vendor/jwt/exceptions.py b/src/oci/_vendor/jwt/exceptions.py index ba01f0b983..caa342fbf6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2022 José Padilla diff --git a/src/oci/_vendor/jwt/help.py b/src/oci/_vendor/jwt/help.py index af89aa95f8..88a1d0c69d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2022 José Padilla diff --git a/src/oci/_vendor/jwt/jwks_client.py b/src/oci/_vendor/jwt/jwks_client.py index fdc33534a3..aa2395b1ab 100644 --- a/src/oci/_vendor/jwt/jwks_client.py +++ b/src/oci/_vendor/jwt/jwks_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2018, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2022 José Padilla diff --git a/src/oci/_vendor/jwt/utils.py b/src/oci/_vendor/jwt/utils.py index 52319b91ce..2ba14e1a50 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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-2022 José Padilla diff --git a/src/oci/_vendor/requests/__init__.py b/src/oci/_vendor/requests/__init__.py index 3803ef1e5b..2d8e7e25da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 705ee4a920..bf1084a972 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 c567e33b4d..bc26352700 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 7a6e7166cd..b9c91302a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 dddade8d17..1d03e6e703 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 0d8ebcd659..6cd6469414 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 9aa978ee2d..1897a832c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 6b3420d5f6..3e706bb809 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 d81daa5371..6e7fe57f98 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 0ae597ee06..0708beaf19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 c41db0ed18..d8178802bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 d8765307e5..d31bb22a76 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 c2252990e7..0ee096aace 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 bee4c5b079..cc005d1fc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 14d2272fa5..c9dccc692f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ab0390179b..6c9376144b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 6b6956c7ca..6e275ce22f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2a94a98a33..170356566c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2018, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 88194a975a..bf53b57dbf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/_collections.py b/src/oci/_vendor/urllib3/_collections.py index e6016eb15a..3c8847216f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/_version.py b/src/oci/_vendor/urllib3/_version.py index 7ac89b5299..80ea8d6950 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/connection.py b/src/oci/_vendor/urllib3/connection.py index 08cabc97f8..c38c812eb9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/connectionpool.py b/src/oci/_vendor/urllib3/connectionpool.py index 099da89c14..6f21664a1b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/__init__.py b/src/oci/_vendor/urllib3/contrib/__init__.py index b98bb87a7c..d087094021 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 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 d6a0cd4001..eee046c0a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 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 b98bb87a7c..d087094021 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 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 5726bc924d..5e1f73a278 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 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 b6c95e9dc8..71776d1fe8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/appengine.py b/src/oci/_vendor/urllib3/contrib/appengine.py index 28c8316990..1554e41463 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/ntlmpool.py b/src/oci/_vendor/urllib3/contrib/ntlmpool.py index da35d95cd4..7446972e5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/pyopenssl.py b/src/oci/_vendor/urllib3/contrib/pyopenssl.py index 6ffd7b1c55..8c76faf848 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/securetransport.py b/src/oci/_vendor/urllib3/contrib/securetransport.py index ba402f3255..d517bb233a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/contrib/socks.py b/src/oci/_vendor/urllib3/contrib/socks.py index bc23dcb50c..442663ff6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/exceptions.py b/src/oci/_vendor/urllib3/exceptions.py index ef05101887..6504bc550b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/fields.py b/src/oci/_vendor/urllib3/fields.py index 70e6ccc20e..4508aa5e91 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/filepost.py b/src/oci/_vendor/urllib3/filepost.py index 74def4e547..2825e0d516 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/packages/__init__.py b/src/oci/_vendor/urllib3/packages/__init__.py index f2b362d118..ec61be0e2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 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 b98bb87a7c..d087094021 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 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 d9745347c1..bfb2eaf038 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/packages/backports/weakref_finalize.py b/src/oci/_vendor/urllib3/packages/backports/weakref_finalize.py index f906f0bbcc..b63e4887d1 100644 --- a/src/oci/_vendor/urllib3/packages/backports/weakref_finalize.py +++ b/src/oci/_vendor/urllib3/packages/backports/weakref_finalize.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/packages/six.py b/src/oci/_vendor/urllib3/packages/six.py index 9d45cf0694..e640427c77 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/poolmanager.py b/src/oci/_vendor/urllib3/poolmanager.py index fc178dd420..1095a42099 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/request.py b/src/oci/_vendor/urllib3/request.py index f5d3b9ccff..24a8654131 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/response.py b/src/oci/_vendor/urllib3/response.py index 9937544186..48c890d23b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/__init__.py b/src/oci/_vendor/urllib3/util/__init__.py index 517eabc5f8..5584ee1eec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/connection.py b/src/oci/_vendor/urllib3/util/connection.py index b3f9c95828..c6d5011f39 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/proxy.py b/src/oci/_vendor/urllib3/util/proxy.py index d7926cb1e9..6655666048 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/queue.py b/src/oci/_vendor/urllib3/util/queue.py index 24ebbf4f99..483f32a82f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/request.py b/src/oci/_vendor/urllib3/util/request.py index 3336f94da6..69f8484747 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/response.py b/src/oci/_vendor/urllib3/util/response.py index bc6fcfd974..0fa61d7859 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/retry.py b/src/oci/_vendor/urllib3/util/retry.py index 4118ad1e4e..34826a50e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/ssl_.py b/src/oci/_vendor/urllib3/util/ssl_.py index e5eaed71ca..91ee48fb9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/ssl_match_hostname.py b/src/oci/_vendor/urllib3/util/ssl_match_hostname.py index f5c47d1c77..fba8ae0c75 100644 --- a/src/oci/_vendor/urllib3/util/ssl_match_hostname.py +++ b/src/oci/_vendor/urllib3/util/ssl_match_hostname.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Modified Work: Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/ssltransport.py b/src/oci/_vendor/urllib3/util/ssltransport.py index b1ade59322..55a5885a4e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/timeout.py b/src/oci/_vendor/urllib3/util/timeout.py index 8ddf5e5db9..2e3f98b611 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/url.py b/src/oci/_vendor/urllib3/util/url.py index 6f5271cac4..c60535c63b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/_vendor/urllib3/util/wait.py b/src/oci/_vendor/urllib3/util/wait.py index a0c762ce08..1b315a46f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Modified Work: Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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) 2008-2020 Andrey Petrov and contributors diff --git a/src/oci/access_governance_cp/__init__.py b/src/oci/access_governance_cp/__init__.py index 6da0196598..934fa3f450 100644 --- a/src/oci/access_governance_cp/__init__.py +++ b/src/oci/access_governance_cp/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/access_governance_cp_client.py b/src/oci/access_governance_cp/access_governance_cp_client.py index de79a47e6c..4bef13f50a 100644 --- a/src/oci/access_governance_cp/access_governance_cp_client.py +++ b/src/oci/access_governance_cp/access_governance_cp_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/access_governance_cp_client_composite_operations.py b/src/oci/access_governance_cp/access_governance_cp_client_composite_operations.py index ff1fd9f254..e6a5deffce 100644 --- a/src/oci/access_governance_cp/access_governance_cp_client_composite_operations.py +++ b/src/oci/access_governance_cp/access_governance_cp_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/__init__.py b/src/oci/access_governance_cp/models/__init__.py index 350eaf7006..5f5ad1cf83 100644 --- a/src/oci/access_governance_cp/models/__init__.py +++ b/src/oci/access_governance_cp/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/change_governance_instance_compartment_details.py b/src/oci/access_governance_cp/models/change_governance_instance_compartment_details.py index 7efc372b0a..47efc5804f 100644 --- a/src/oci/access_governance_cp/models/change_governance_instance_compartment_details.py +++ b/src/oci/access_governance_cp/models/change_governance_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/create_governance_instance_details.py b/src/oci/access_governance_cp/models/create_governance_instance_details.py index f88bae1fe7..d824273cfa 100644 --- a/src/oci/access_governance_cp/models/create_governance_instance_details.py +++ b/src/oci/access_governance_cp/models/create_governance_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/governance_instance.py b/src/oci/access_governance_cp/models/governance_instance.py index ae76ff3dfc..af73657985 100644 --- a/src/oci/access_governance_cp/models/governance_instance.py +++ b/src/oci/access_governance_cp/models/governance_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/governance_instance_collection.py b/src/oci/access_governance_cp/models/governance_instance_collection.py index fac9d637be..f9b6fae703 100644 --- a/src/oci/access_governance_cp/models/governance_instance_collection.py +++ b/src/oci/access_governance_cp/models/governance_instance_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/governance_instance_configuration.py b/src/oci/access_governance_cp/models/governance_instance_configuration.py index 414bd80f65..cd73039950 100644 --- a/src/oci/access_governance_cp/models/governance_instance_configuration.py +++ b/src/oci/access_governance_cp/models/governance_instance_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/governance_instance_summary.py b/src/oci/access_governance_cp/models/governance_instance_summary.py index c3c5344312..31df343935 100644 --- a/src/oci/access_governance_cp/models/governance_instance_summary.py +++ b/src/oci/access_governance_cp/models/governance_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/sender_config.py b/src/oci/access_governance_cp/models/sender_config.py index 4803e44dfc..fc29f14b35 100644 --- a/src/oci/access_governance_cp/models/sender_config.py +++ b/src/oci/access_governance_cp/models/sender_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/update_governance_instance_configuration_details.py b/src/oci/access_governance_cp/models/update_governance_instance_configuration_details.py index 951897bf67..8527f59b48 100644 --- a/src/oci/access_governance_cp/models/update_governance_instance_configuration_details.py +++ b/src/oci/access_governance_cp/models/update_governance_instance_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/update_governance_instance_details.py b/src/oci/access_governance_cp/models/update_governance_instance_details.py index 2e9e8f0ccf..c7cca80210 100644 --- a/src/oci/access_governance_cp/models/update_governance_instance_details.py +++ b/src/oci/access_governance_cp/models/update_governance_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/access_governance_cp/models/update_sender_config.py b/src/oci/access_governance_cp/models/update_sender_config.py index e1bb6ae7e5..7baaadbaa7 100644 --- a/src/oci/access_governance_cp/models/update_sender_config.py +++ b/src/oci/access_governance_cp/models/update_sender_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220518 diff --git a/src/oci/adm/__init__.py b/src/oci/adm/__init__.py index d4bd9be115..7146096de6 100644 --- a/src/oci/adm/__init__.py +++ b/src/oci/adm/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/application_dependency_management_client.py b/src/oci/adm/application_dependency_management_client.py index d986b7caad..deb5ced50e 100644 --- a/src/oci/adm/application_dependency_management_client.py +++ b/src/oci/adm/application_dependency_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/application_dependency_management_client_composite_operations.py b/src/oci/adm/application_dependency_management_client_composite_operations.py index d8cd9e1bec..1fd4f5e933 100644 --- a/src/oci/adm/application_dependency_management_client_composite_operations.py +++ b/src/oci/adm/application_dependency_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/__init__.py b/src/oci/adm/models/__init__.py index 0a6a8cd81f..3655c392ef 100644 --- a/src/oci/adm/models/__init__.py +++ b/src/oci/adm/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/application_dependency.py b/src/oci/adm/models/application_dependency.py index 1ab4af7c00..d23f23b13e 100644 --- a/src/oci/adm/models/application_dependency.py +++ b/src/oci/adm/models/application_dependency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/application_dependency_recommendation_collection.py b/src/oci/adm/models/application_dependency_recommendation_collection.py index 9c7e8f580d..67c4ad2164 100644 --- a/src/oci/adm/models/application_dependency_recommendation_collection.py +++ b/src/oci/adm/models/application_dependency_recommendation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/application_dependency_recommendation_summary.py b/src/oci/adm/models/application_dependency_recommendation_summary.py index ded25b313a..131d9185d8 100644 --- a/src/oci/adm/models/application_dependency_recommendation_summary.py +++ b/src/oci/adm/models/application_dependency_recommendation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/application_dependency_vulnerability_collection.py b/src/oci/adm/models/application_dependency_vulnerability_collection.py index 832fd400db..a63ef3af5a 100644 --- a/src/oci/adm/models/application_dependency_vulnerability_collection.py +++ b/src/oci/adm/models/application_dependency_vulnerability_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/application_dependency_vulnerability_summary.py b/src/oci/adm/models/application_dependency_vulnerability_summary.py index 6af55f0e6a..8471d21ca7 100644 --- a/src/oci/adm/models/application_dependency_vulnerability_summary.py +++ b/src/oci/adm/models/application_dependency_vulnerability_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/apply_stage.py b/src/oci/adm/models/apply_stage.py index 0b44621a82..c7f583830a 100644 --- a/src/oci/adm/models/apply_stage.py +++ b/src/oci/adm/models/apply_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/change_knowledge_base_compartment_details.py b/src/oci/adm/models/change_knowledge_base_compartment_details.py index 3269497bdb..1c1fb061d3 100644 --- a/src/oci/adm/models/change_knowledge_base_compartment_details.py +++ b/src/oci/adm/models/change_knowledge_base_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/change_remediation_recipe_compartment_details.py b/src/oci/adm/models/change_remediation_recipe_compartment_details.py index 2c2ed1acdf..e00be71934 100644 --- a/src/oci/adm/models/change_remediation_recipe_compartment_details.py +++ b/src/oci/adm/models/change_remediation_recipe_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/change_remediation_run_compartment_details.py b/src/oci/adm/models/change_remediation_run_compartment_details.py index fdd0b76f8b..d3e5b780d1 100644 --- a/src/oci/adm/models/change_remediation_run_compartment_details.py +++ b/src/oci/adm/models/change_remediation_run_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/change_vulnerability_audit_compartment_details.py b/src/oci/adm/models/change_vulnerability_audit_compartment_details.py index 21369900f6..ab498fe6b0 100644 --- a/src/oci/adm/models/change_vulnerability_audit_compartment_details.py +++ b/src/oci/adm/models/change_vulnerability_audit_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/create_knowledge_base_details.py b/src/oci/adm/models/create_knowledge_base_details.py index d967586b0a..43debe0d0f 100644 --- a/src/oci/adm/models/create_knowledge_base_details.py +++ b/src/oci/adm/models/create_knowledge_base_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/create_remediation_recipe_details.py b/src/oci/adm/models/create_remediation_recipe_details.py index eff878de09..dd83693c62 100644 --- a/src/oci/adm/models/create_remediation_recipe_details.py +++ b/src/oci/adm/models/create_remediation_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/create_remediation_run_details.py b/src/oci/adm/models/create_remediation_run_details.py index 36e5477360..36b5383b16 100644 --- a/src/oci/adm/models/create_remediation_run_details.py +++ b/src/oci/adm/models/create_remediation_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/create_vulnerability_audit_details.py b/src/oci/adm/models/create_vulnerability_audit_details.py index 9785ec5977..aedcd8a581 100644 --- a/src/oci/adm/models/create_vulnerability_audit_details.py +++ b/src/oci/adm/models/create_vulnerability_audit_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/detect_configuration.py b/src/oci/adm/models/detect_configuration.py index 47775c31d7..c9aed1035b 100644 --- a/src/oci/adm/models/detect_configuration.py +++ b/src/oci/adm/models/detect_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/detect_stage.py b/src/oci/adm/models/detect_stage.py index eab3c494e0..331c090ae5 100644 --- a/src/oci/adm/models/detect_stage.py +++ b/src/oci/adm/models/detect_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/external_resource_vulnerability_audit_source.py b/src/oci/adm/models/external_resource_vulnerability_audit_source.py index 4cd7802064..fc1c6ae355 100644 --- a/src/oci/adm/models/external_resource_vulnerability_audit_source.py +++ b/src/oci/adm/models/external_resource_vulnerability_audit_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/external_scm_configuration.py b/src/oci/adm/models/external_scm_configuration.py index ced4648d5b..6ae535f403 100644 --- a/src/oci/adm/models/external_scm_configuration.py +++ b/src/oci/adm/models/external_scm_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/git_hub_actions_configuration.py b/src/oci/adm/models/git_hub_actions_configuration.py index 1aeaf2ecbc..fcdde550aa 100644 --- a/src/oci/adm/models/git_hub_actions_configuration.py +++ b/src/oci/adm/models/git_hub_actions_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/git_lab_pipeline_configuration.py b/src/oci/adm/models/git_lab_pipeline_configuration.py index e497e7adf7..ced994d1ed 100644 --- a/src/oci/adm/models/git_lab_pipeline_configuration.py +++ b/src/oci/adm/models/git_lab_pipeline_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/jenkins_pipeline_configuration.py b/src/oci/adm/models/jenkins_pipeline_configuration.py index 11d100a262..220a11e86a 100644 --- a/src/oci/adm/models/jenkins_pipeline_configuration.py +++ b/src/oci/adm/models/jenkins_pipeline_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/knowledge_base.py b/src/oci/adm/models/knowledge_base.py index f59b2c9c40..f3ca09aaae 100644 --- a/src/oci/adm/models/knowledge_base.py +++ b/src/oci/adm/models/knowledge_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/knowledge_base_collection.py b/src/oci/adm/models/knowledge_base_collection.py index 8ca8fcea1f..fc101c5cd8 100644 --- a/src/oci/adm/models/knowledge_base_collection.py +++ b/src/oci/adm/models/knowledge_base_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/knowledge_base_summary.py b/src/oci/adm/models/knowledge_base_summary.py index 19edecf627..868a27748c 100644 --- a/src/oci/adm/models/knowledge_base_summary.py +++ b/src/oci/adm/models/knowledge_base_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/network_configuration.py b/src/oci/adm/models/network_configuration.py index 460ca6166c..a56503a285 100644 --- a/src/oci/adm/models/network_configuration.py +++ b/src/oci/adm/models/network_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/none_verify_configuration.py b/src/oci/adm/models/none_verify_configuration.py index 070a897e5f..0ef3e24d8f 100644 --- a/src/oci/adm/models/none_verify_configuration.py +++ b/src/oci/adm/models/none_verify_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/oci_code_repository_configuration.py b/src/oci/adm/models/oci_code_repository_configuration.py index 2ed72ef3dc..3b9e1fd730 100644 --- a/src/oci/adm/models/oci_code_repository_configuration.py +++ b/src/oci/adm/models/oci_code_repository_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/oci_dev_ops_build_configuration.py b/src/oci/adm/models/oci_dev_ops_build_configuration.py index edd9120824..ac735bb78b 100644 --- a/src/oci/adm/models/oci_dev_ops_build_configuration.py +++ b/src/oci/adm/models/oci_dev_ops_build_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/oci_resource_vulnerability_audit_source.py b/src/oci/adm/models/oci_resource_vulnerability_audit_source.py index dd0e9d51a6..c97a6f4887 100644 --- a/src/oci/adm/models/oci_resource_vulnerability_audit_source.py +++ b/src/oci/adm/models/oci_resource_vulnerability_audit_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/pipeline_properties.py b/src/oci/adm/models/pipeline_properties.py index 17db28881c..5db420826c 100644 --- a/src/oci/adm/models/pipeline_properties.py +++ b/src/oci/adm/models/pipeline_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/pull_request_properties.py b/src/oci/adm/models/pull_request_properties.py index 0ad9192617..2020f95458 100644 --- a/src/oci/adm/models/pull_request_properties.py +++ b/src/oci/adm/models/pull_request_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/recommend_stage.py b/src/oci/adm/models/recommend_stage.py index 042b454951..7640ee2802 100644 --- a/src/oci/adm/models/recommend_stage.py +++ b/src/oci/adm/models/recommend_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/remediation_recipe.py b/src/oci/adm/models/remediation_recipe.py index a2e6955fb5..571d2a31a0 100644 --- a/src/oci/adm/models/remediation_recipe.py +++ b/src/oci/adm/models/remediation_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/remediation_recipe_collection.py b/src/oci/adm/models/remediation_recipe_collection.py index 2c73fdaf96..fae410b1f4 100644 --- a/src/oci/adm/models/remediation_recipe_collection.py +++ b/src/oci/adm/models/remediation_recipe_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/remediation_recipe_summary.py b/src/oci/adm/models/remediation_recipe_summary.py index b5288dc1a4..4d3a259c33 100644 --- a/src/oci/adm/models/remediation_recipe_summary.py +++ b/src/oci/adm/models/remediation_recipe_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/remediation_run.py b/src/oci/adm/models/remediation_run.py index a33c6182f1..185f8321da 100644 --- a/src/oci/adm/models/remediation_run.py +++ b/src/oci/adm/models/remediation_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/remediation_run_collection.py b/src/oci/adm/models/remediation_run_collection.py index db10e4f135..ab5ba15f2c 100644 --- a/src/oci/adm/models/remediation_run_collection.py +++ b/src/oci/adm/models/remediation_run_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/remediation_run_stage.py b/src/oci/adm/models/remediation_run_stage.py index dcc20be4a6..9a76d3e128 100644 --- a/src/oci/adm/models/remediation_run_stage.py +++ b/src/oci/adm/models/remediation_run_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/remediation_run_stage_collection.py b/src/oci/adm/models/remediation_run_stage_collection.py index c36653b616..e3217d15b5 100644 --- a/src/oci/adm/models/remediation_run_stage_collection.py +++ b/src/oci/adm/models/remediation_run_stage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/remediation_run_stage_summary.py b/src/oci/adm/models/remediation_run_stage_summary.py index 47fdfde4ea..a9ab711963 100644 --- a/src/oci/adm/models/remediation_run_stage_summary.py +++ b/src/oci/adm/models/remediation_run_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/remediation_run_summary.py b/src/oci/adm/models/remediation_run_summary.py index 1bf97cfcc4..08216d119c 100644 --- a/src/oci/adm/models/remediation_run_summary.py +++ b/src/oci/adm/models/remediation_run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/scm_configuration.py b/src/oci/adm/models/scm_configuration.py index b83c2dac7f..f6ba6a3414 100644 --- a/src/oci/adm/models/scm_configuration.py +++ b/src/oci/adm/models/scm_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/stage_summary.py b/src/oci/adm/models/stage_summary.py index 146e1d4612..fff3527334 100644 --- a/src/oci/adm/models/stage_summary.py +++ b/src/oci/adm/models/stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/unknown_source_vulnerability_audit_source.py b/src/oci/adm/models/unknown_source_vulnerability_audit_source.py index 047f9f1f05..f4aebe270f 100644 --- a/src/oci/adm/models/unknown_source_vulnerability_audit_source.py +++ b/src/oci/adm/models/unknown_source_vulnerability_audit_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/update_knowledge_base_details.py b/src/oci/adm/models/update_knowledge_base_details.py index a4d53d6af7..5e5177741d 100644 --- a/src/oci/adm/models/update_knowledge_base_details.py +++ b/src/oci/adm/models/update_knowledge_base_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/update_remediation_recipe_details.py b/src/oci/adm/models/update_remediation_recipe_details.py index 605f8a546b..a92d06c6ad 100644 --- a/src/oci/adm/models/update_remediation_recipe_details.py +++ b/src/oci/adm/models/update_remediation_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/update_remediation_run_details.py b/src/oci/adm/models/update_remediation_run_details.py index 754aa0b49a..d22cff1801 100644 --- a/src/oci/adm/models/update_remediation_run_details.py +++ b/src/oci/adm/models/update_remediation_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/update_vulnerability_audit_details.py b/src/oci/adm/models/update_vulnerability_audit_details.py index 3fb638ad8e..5ba1d52d2e 100644 --- a/src/oci/adm/models/update_vulnerability_audit_details.py +++ b/src/oci/adm/models/update_vulnerability_audit_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/usage_data_details.py b/src/oci/adm/models/usage_data_details.py index 31157a7b84..f69c7ef417 100644 --- a/src/oci/adm/models/usage_data_details.py +++ b/src/oci/adm/models/usage_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/usage_data_via_object_storage_tuple_details.py b/src/oci/adm/models/usage_data_via_object_storage_tuple_details.py index 3b5c15c8bc..c041b7936d 100644 --- a/src/oci/adm/models/usage_data_via_object_storage_tuple_details.py +++ b/src/oci/adm/models/usage_data_via_object_storage_tuple_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/verify_configuration.py b/src/oci/adm/models/verify_configuration.py index f346a7ce02..56295e26f3 100644 --- a/src/oci/adm/models/verify_configuration.py +++ b/src/oci/adm/models/verify_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/verify_stage.py b/src/oci/adm/models/verify_stage.py index 66b2d3b12b..2efbc346e6 100644 --- a/src/oci/adm/models/verify_stage.py +++ b/src/oci/adm/models/verify_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/vulnerability.py b/src/oci/adm/models/vulnerability.py index d402812778..d38fbc477e 100644 --- a/src/oci/adm/models/vulnerability.py +++ b/src/oci/adm/models/vulnerability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/vulnerability_audit.py b/src/oci/adm/models/vulnerability_audit.py index 6e4ca77db5..81280324be 100644 --- a/src/oci/adm/models/vulnerability_audit.py +++ b/src/oci/adm/models/vulnerability_audit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/vulnerability_audit_collection.py b/src/oci/adm/models/vulnerability_audit_collection.py index 90cd5baabf..a1be8b50ad 100644 --- a/src/oci/adm/models/vulnerability_audit_collection.py +++ b/src/oci/adm/models/vulnerability_audit_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/vulnerability_audit_configuration.py b/src/oci/adm/models/vulnerability_audit_configuration.py index 74058d9a5f..30d4fa6db2 100644 --- a/src/oci/adm/models/vulnerability_audit_configuration.py +++ b/src/oci/adm/models/vulnerability_audit_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/vulnerability_audit_source.py b/src/oci/adm/models/vulnerability_audit_source.py index 2e7e4ebe9e..63a69e960b 100644 --- a/src/oci/adm/models/vulnerability_audit_source.py +++ b/src/oci/adm/models/vulnerability_audit_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/vulnerability_audit_summary.py b/src/oci/adm/models/vulnerability_audit_summary.py index 8de86e172c..a0eec96549 100644 --- a/src/oci/adm/models/vulnerability_audit_summary.py +++ b/src/oci/adm/models/vulnerability_audit_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/work_request.py b/src/oci/adm/models/work_request.py index cfb61dc3a0..d0c5c81db0 100644 --- a/src/oci/adm/models/work_request.py +++ b/src/oci/adm/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/work_request_error.py b/src/oci/adm/models/work_request_error.py index 86eda9cc03..a7ba43f6ca 100644 --- a/src/oci/adm/models/work_request_error.py +++ b/src/oci/adm/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/work_request_error_collection.py b/src/oci/adm/models/work_request_error_collection.py index 603c56609e..40811f32b7 100644 --- a/src/oci/adm/models/work_request_error_collection.py +++ b/src/oci/adm/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/work_request_log_entry.py b/src/oci/adm/models/work_request_log_entry.py index c33ceafdfa..a7f8252893 100644 --- a/src/oci/adm/models/work_request_log_entry.py +++ b/src/oci/adm/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/work_request_log_entry_collection.py b/src/oci/adm/models/work_request_log_entry_collection.py index 17f2c38657..dd3bae1f06 100644 --- a/src/oci/adm/models/work_request_log_entry_collection.py +++ b/src/oci/adm/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/work_request_resource.py b/src/oci/adm/models/work_request_resource.py index 88dd8f1288..e0749ce414 100644 --- a/src/oci/adm/models/work_request_resource.py +++ b/src/oci/adm/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/work_request_summary.py b/src/oci/adm/models/work_request_summary.py index 0f03c21081..8217a8a361 100644 --- a/src/oci/adm/models/work_request_summary.py +++ b/src/oci/adm/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/adm/models/work_request_summary_collection.py b/src/oci/adm/models/work_request_summary_collection.py index c42dda8343..ca2df62f5d 100644 --- a/src/oci/adm/models/work_request_summary_collection.py +++ b/src/oci/adm/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220421 diff --git a/src/oci/ai_anomaly_detection/__init__.py b/src/oci/ai_anomaly_detection/__init__.py index 27bdefcc27..7fa99a60a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/anomaly_detection_client.py b/src/oci/ai_anomaly_detection/anomaly_detection_client.py index bbedefe642..469469f28f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 86b651139a..8ac3b1fffe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/__init__.py b/src/oci/ai_anomaly_detection/models/__init__.py index 12f885a247..d8ea21f81d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 b22f835460..620eef67d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 78989c8bf7..00e97b9562 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 99e224783b..60110b6cc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/anomaly.py b/src/oci/ai_anomaly_detection/models/anomaly.py index 47eb5828d9..aa82cdb412 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 7e63c0d4e4..25bcae423b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 cf93b16614..e93b9fa533 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 3e9145d35d..a39ab4be9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/change_detect_anomaly_job_compartment_details.py b/src/oci/ai_anomaly_detection/models/change_detect_anomaly_job_compartment_details.py index 1359d8fdf9..e6ab286fb6 100644 --- a/src/oci/ai_anomaly_detection/models/change_detect_anomaly_job_compartment_details.py +++ b/src/oci/ai_anomaly_detection/models/change_detect_anomaly_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 5f7cfac079..c5f62243de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 8b11f002d6..8fabb8ad1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 7f88dc7112..ef20fc6705 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 86eefd0f71..cd6d4743b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/create_detect_anomaly_job_details.py b/src/oci/ai_anomaly_detection/models/create_detect_anomaly_job_details.py index 13ba26baee..349e713b89 100644 --- a/src/oci/ai_anomaly_detection/models/create_detect_anomaly_job_details.py +++ b/src/oci/ai_anomaly_detection/models/create_detect_anomaly_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 ee584cab1c..c9edf4a5bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 60afc67490..313664f260 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/data_asset.py b/src/oci/ai_anomaly_detection/models/data_asset.py index 05327a9930..8b22ae1d1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 22ac595450..f5642beeb6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 70aafcf3a9..45f02d88a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/data_item.py b/src/oci/ai_anomaly_detection/models/data_item.py index 3da96c3c13..6103bf27f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 cfac29e99e..f9788d2f01 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 c4378fa4af..8e9deadd9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 bac0dda5b8..4dfb572d5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 ace44dc94c..94fe72214c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 2dd484aa37..53bb8a6dcd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/detect_anomaly_job.py b/src/oci/ai_anomaly_detection/models/detect_anomaly_job.py index fa0118904c..0969ebca8c 100644 --- a/src/oci/ai_anomaly_detection/models/detect_anomaly_job.py +++ b/src/oci/ai_anomaly_detection/models/detect_anomaly_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/detect_anomaly_job_collection.py b/src/oci/ai_anomaly_detection/models/detect_anomaly_job_collection.py index 033d24ecd3..3a0ca4ba7a 100644 --- a/src/oci/ai_anomaly_detection/models/detect_anomaly_job_collection.py +++ b/src/oci/ai_anomaly_detection/models/detect_anomaly_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/detect_anomaly_job_summary.py b/src/oci/ai_anomaly_detection/models/detect_anomaly_job_summary.py index ecd13377d8..2b909a8a1f 100644 --- a/src/oci/ai_anomaly_detection/models/detect_anomaly_job_summary.py +++ b/src/oci/ai_anomaly_detection/models/detect_anomaly_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 26c4a9d398..bcba59cf07 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 2400ec765c..9cf030acc0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/embedded_input_details.py b/src/oci/ai_anomaly_detection/models/embedded_input_details.py index 4e5812368b..b8d2dee831 100644 --- a/src/oci/ai_anomaly_detection/models/embedded_input_details.py +++ b/src/oci/ai_anomaly_detection/models/embedded_input_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/influx_details.py b/src/oci/ai_anomaly_detection/models/influx_details.py index 263001924f..86f8e6c542 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 3c50cdbd3e..2ff35a03ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 87e5472c14..41be0bad0a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 44e37d148f..21371765a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/inline_input_details.py b/src/oci/ai_anomaly_detection/models/inline_input_details.py index 7edc7ea324..9cf93c7ae2 100644 --- a/src/oci/ai_anomaly_detection/models/inline_input_details.py +++ b/src/oci/ai_anomaly_detection/models/inline_input_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/inline_input_job_details.py b/src/oci/ai_anomaly_detection/models/inline_input_job_details.py index ed3bd4aab0..9f1e813063 100644 --- a/src/oci/ai_anomaly_detection/models/inline_input_job_details.py +++ b/src/oci/ai_anomaly_detection/models/inline_input_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/input_details.py b/src/oci/ai_anomaly_detection/models/input_details.py index 5634f75872..492e80807a 100644 --- a/src/oci/ai_anomaly_detection/models/input_details.py +++ b/src/oci/ai_anomaly_detection/models/input_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/input_job_details.py b/src/oci/ai_anomaly_detection/models/input_job_details.py index b495801418..d837100e1f 100644 --- a/src/oci/ai_anomaly_detection/models/input_job_details.py +++ b/src/oci/ai_anomaly_detection/models/input_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/model.py b/src/oci/ai_anomaly_detection/models/model.py index ba8daa7160..bd98009a98 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/model_collection.py b/src/oci/ai_anomaly_detection/models/model_collection.py index 35a6f18a29..315b0b7b0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/model_summary.py b/src/oci/ai_anomaly_detection/models/model_summary.py index 6fda7a445d..e208891c72 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 bd0e883b76..69fa48b7e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 4c96c9d36d..814473beb6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/object_list_input_details.py b/src/oci/ai_anomaly_detection/models/object_list_input_details.py index 7292d6612b..0cc1d3b3e2 100644 --- a/src/oci/ai_anomaly_detection/models/object_list_input_details.py +++ b/src/oci/ai_anomaly_detection/models/object_list_input_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/object_list_input_job_details.py b/src/oci/ai_anomaly_detection/models/object_list_input_job_details.py index fa099a0552..8af1d3d728 100644 --- a/src/oci/ai_anomaly_detection/models/object_list_input_job_details.py +++ b/src/oci/ai_anomaly_detection/models/object_list_input_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/object_location.py b/src/oci/ai_anomaly_detection/models/object_location.py index f3425bddbc..7d7bc4ca08 100644 --- a/src/oci/ai_anomaly_detection/models/object_location.py +++ b/src/oci/ai_anomaly_detection/models/object_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/object_storage_location.py b/src/oci/ai_anomaly_detection/models/object_storage_location.py index 8f9032cb66..b0d0974a12 100644 --- a/src/oci/ai_anomaly_detection/models/object_storage_location.py +++ b/src/oci/ai_anomaly_detection/models/object_storage_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/object_store_output_details.py b/src/oci/ai_anomaly_detection/models/object_store_output_details.py index 8939a48259..ceb6402fc3 100644 --- a/src/oci/ai_anomaly_detection/models/object_store_output_details.py +++ b/src/oci/ai_anomaly_detection/models/object_store_output_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/output_details.py b/src/oci/ai_anomaly_detection/models/output_details.py index be43c5fdbe..200cfa5a8b 100644 --- a/src/oci/ai_anomaly_detection/models/output_details.py +++ b/src/oci/ai_anomaly_detection/models/output_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/output_job_details.py b/src/oci/ai_anomaly_detection/models/output_job_details.py index fe018777ac..b3dbb8fcd7 100644 --- a/src/oci/ai_anomaly_detection/models/output_job_details.py +++ b/src/oci/ai_anomaly_detection/models/output_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 844e3f1501..82c590d656 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/project.py b/src/oci/ai_anomaly_detection/models/project.py index 22dc2d6cef..fe814ec027 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/project_collection.py b/src/oci/ai_anomaly_detection/models/project_collection.py index ac224cd034..8be0bd499b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/project_summary.py b/src/oci/ai_anomaly_detection/models/project_summary.py index 36ab8c16ac..392c82eca9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 cb11c3d892..4849260978 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 4b2f57b5c3..fa54643aa7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 192f26462b..9091211758 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/update_detect_anomaly_job_details.py b/src/oci/ai_anomaly_detection/models/update_detect_anomaly_job_details.py index b8e2359c3e..93e029f895 100644 --- a/src/oci/ai_anomaly_detection/models/update_detect_anomaly_job_details.py +++ b/src/oci/ai_anomaly_detection/models/update_detect_anomaly_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 47dea2f4de..250a524fa9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 6b9e4f8ce3..928f00e7ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_anomaly_detection/models/work_request.py b/src/oci/ai_anomaly_detection/models/work_request.py index 79d5385433..dd35982ec5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 5b55cce6fe..3876feef18 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 3b7cbd56b3..e0b9b93c6f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 66a239e779..75be806f44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 c01bf47d1d..f6dda97bda 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 741a79a44b..74f1e28fe0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 5d6eeab903..61f1bcf762 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 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 81e5e47ad9..33cc80d382 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210101 diff --git a/src/oci/ai_document/__init__.py b/src/oci/ai_document/__init__.py index fcaa5bb01b..1138cf392d 100644 --- a/src/oci/ai_document/__init__.py +++ b/src/oci/ai_document/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/ai_service_document_client.py b/src/oci/ai_document/ai_service_document_client.py index 19a4208a74..2896fc52f4 100644 --- a/src/oci/ai_document/ai_service_document_client.py +++ b/src/oci/ai_document/ai_service_document_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/ai_service_document_client_composite_operations.py b/src/oci/ai_document/ai_service_document_client_composite_operations.py index fe55e2d934..44619b1a92 100644 --- a/src/oci/ai_document/ai_service_document_client_composite_operations.py +++ b/src/oci/ai_document/ai_service_document_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/__init__.py b/src/oci/ai_document/models/__init__.py index 96863b4fc7..2617ccd7ba 100644 --- a/src/oci/ai_document/models/__init__.py +++ b/src/oci/ai_document/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/add_model_lock_details.py b/src/oci/ai_document/models/add_model_lock_details.py index 2dc24e76ae..f4e03efd41 100644 --- a/src/oci/ai_document/models/add_model_lock_details.py +++ b/src/oci/ai_document/models/add_model_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/add_project_lock_details.py b/src/oci/ai_document/models/add_project_lock_details.py index 2b755a2116..57c2702e26 100644 --- a/src/oci/ai_document/models/add_project_lock_details.py +++ b/src/oci/ai_document/models/add_project_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/analyze_document_details.py b/src/oci/ai_document/models/analyze_document_details.py index 543723f4c9..6f0636a78b 100644 --- a/src/oci/ai_document/models/analyze_document_details.py +++ b/src/oci/ai_document/models/analyze_document_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/analyze_document_result.py b/src/oci/ai_document/models/analyze_document_result.py index f543946948..e45ee1fd22 100644 --- a/src/oci/ai_document/models/analyze_document_result.py +++ b/src/oci/ai_document/models/analyze_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/bounding_polygon.py b/src/oci/ai_document/models/bounding_polygon.py index 9e0d4fdb37..e91b2528dc 100644 --- a/src/oci/ai_document/models/bounding_polygon.py +++ b/src/oci/ai_document/models/bounding_polygon.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/cell.py b/src/oci/ai_document/models/cell.py index 873246cb1a..b76630ab13 100644 --- a/src/oci/ai_document/models/cell.py +++ b/src/oci/ai_document/models/cell.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/change_model_compartment_details.py b/src/oci/ai_document/models/change_model_compartment_details.py index 5a3dc459e7..e77245d407 100644 --- a/src/oci/ai_document/models/change_model_compartment_details.py +++ b/src/oci/ai_document/models/change_model_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/change_project_compartment_details.py b/src/oci/ai_document/models/change_project_compartment_details.py index 894385026c..84cbc07fb7 100644 --- a/src/oci/ai_document/models/change_project_compartment_details.py +++ b/src/oci/ai_document/models/change_project_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/component_model.py b/src/oci/ai_document/models/component_model.py index 45476024a5..3b69f2e52a 100644 --- a/src/oci/ai_document/models/component_model.py +++ b/src/oci/ai_document/models/component_model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/create_model_details.py b/src/oci/ai_document/models/create_model_details.py index 19e9086f9a..33d5d1088a 100644 --- a/src/oci/ai_document/models/create_model_details.py +++ b/src/oci/ai_document/models/create_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/create_processor_job_details.py b/src/oci/ai_document/models/create_processor_job_details.py index ee33fd8560..5eb6e31760 100644 --- a/src/oci/ai_document/models/create_processor_job_details.py +++ b/src/oci/ai_document/models/create_processor_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/create_project_details.py b/src/oci/ai_document/models/create_project_details.py index 04ef782016..489b9de62b 100644 --- a/src/oci/ai_document/models/create_project_details.py +++ b/src/oci/ai_document/models/create_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/data_science_labeling_dataset.py b/src/oci/ai_document/models/data_science_labeling_dataset.py index 3d5963f597..16fdc6162b 100644 --- a/src/oci/ai_document/models/data_science_labeling_dataset.py +++ b/src/oci/ai_document/models/data_science_labeling_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/dataset.py b/src/oci/ai_document/models/dataset.py index 3e8bfe855b..b664987f90 100644 --- a/src/oci/ai_document/models/dataset.py +++ b/src/oci/ai_document/models/dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/dataset_summary.py b/src/oci/ai_document/models/dataset_summary.py index f7a0a49d97..9ad4aa9a42 100644 --- a/src/oci/ai_document/models/dataset_summary.py +++ b/src/oci/ai_document/models/dataset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/detected_document_type.py b/src/oci/ai_document/models/detected_document_type.py index f345388279..9ef66341fd 100644 --- a/src/oci/ai_document/models/detected_document_type.py +++ b/src/oci/ai_document/models/detected_document_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/detected_language.py b/src/oci/ai_document/models/detected_language.py index 100dacbdec..1540550078 100644 --- a/src/oci/ai_document/models/detected_language.py +++ b/src/oci/ai_document/models/detected_language.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/dimensions.py b/src/oci/ai_document/models/dimensions.py index 3e5b831be9..eb3293fd36 100644 --- a/src/oci/ai_document/models/dimensions.py +++ b/src/oci/ai_document/models/dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_classification_confidence_entry.py b/src/oci/ai_document/models/document_classification_confidence_entry.py index 50f726881a..b111cdba17 100644 --- a/src/oci/ai_document/models/document_classification_confidence_entry.py +++ b/src/oci/ai_document/models/document_classification_confidence_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_classification_feature.py b/src/oci/ai_document/models/document_classification_feature.py index 0556fdf9f5..7a5dad8719 100644 --- a/src/oci/ai_document/models/document_classification_feature.py +++ b/src/oci/ai_document/models/document_classification_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_classification_label_metrics_report.py b/src/oci/ai_document/models/document_classification_label_metrics_report.py index 954a1425f5..9ec2ba731e 100644 --- a/src/oci/ai_document/models/document_classification_label_metrics_report.py +++ b/src/oci/ai_document/models/document_classification_label_metrics_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_classification_model_metrics.py b/src/oci/ai_document/models/document_classification_model_metrics.py index bc1473f3c8..79152b3b52 100644 --- a/src/oci/ai_document/models/document_classification_model_metrics.py +++ b/src/oci/ai_document/models/document_classification_model_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_classification_overall_metrics_report.py b/src/oci/ai_document/models/document_classification_overall_metrics_report.py index 7ecbd1ab13..ec6d6833b9 100644 --- a/src/oci/ai_document/models/document_classification_overall_metrics_report.py +++ b/src/oci/ai_document/models/document_classification_overall_metrics_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_details.py b/src/oci/ai_document/models/document_details.py index 40514300c8..c9094c5d59 100644 --- a/src/oci/ai_document/models/document_details.py +++ b/src/oci/ai_document/models/document_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_feature.py b/src/oci/ai_document/models/document_feature.py index a9b8dd7738..49ae0533d9 100644 --- a/src/oci/ai_document/models/document_feature.py +++ b/src/oci/ai_document/models/document_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_field.py b/src/oci/ai_document/models/document_field.py index f3e412e89c..e8bde5144e 100644 --- a/src/oci/ai_document/models/document_field.py +++ b/src/oci/ai_document/models/document_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_key_value_extraction_feature.py b/src/oci/ai_document/models/document_key_value_extraction_feature.py index a2b569a050..95f4d2ffbe 100644 --- a/src/oci/ai_document/models/document_key_value_extraction_feature.py +++ b/src/oci/ai_document/models/document_key_value_extraction_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_language_classification_feature.py b/src/oci/ai_document/models/document_language_classification_feature.py index 6abda18aca..d1ebf71ac9 100644 --- a/src/oci/ai_document/models/document_language_classification_feature.py +++ b/src/oci/ai_document/models/document_language_classification_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_metadata.py b/src/oci/ai_document/models/document_metadata.py index 437173d783..3f813f2cb1 100644 --- a/src/oci/ai_document/models/document_metadata.py +++ b/src/oci/ai_document/models/document_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_table_extraction_feature.py b/src/oci/ai_document/models/document_table_extraction_feature.py index 8fe4df1121..785526f4db 100644 --- a/src/oci/ai_document/models/document_table_extraction_feature.py +++ b/src/oci/ai_document/models/document_table_extraction_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/document_text_extraction_feature.py b/src/oci/ai_document/models/document_text_extraction_feature.py index 857f9b2a01..1080c9362c 100644 --- a/src/oci/ai_document/models/document_text_extraction_feature.py +++ b/src/oci/ai_document/models/document_text_extraction_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/field_label.py b/src/oci/ai_document/models/field_label.py index 9f90b05d78..9330ffe743 100644 --- a/src/oci/ai_document/models/field_label.py +++ b/src/oci/ai_document/models/field_label.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/field_name.py b/src/oci/ai_document/models/field_name.py index 5fd8715ca7..6fadd64569 100644 --- a/src/oci/ai_document/models/field_name.py +++ b/src/oci/ai_document/models/field_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/field_value.py b/src/oci/ai_document/models/field_value.py index 784b090a90..87d0b350ac 100644 --- a/src/oci/ai_document/models/field_value.py +++ b/src/oci/ai_document/models/field_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/general_processor_config.py b/src/oci/ai_document/models/general_processor_config.py index 0e9211a59b..aaf1aea0b5 100644 --- a/src/oci/ai_document/models/general_processor_config.py +++ b/src/oci/ai_document/models/general_processor_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/inline_document_content.py b/src/oci/ai_document/models/inline_document_content.py index db28111c9e..380d9fae55 100644 --- a/src/oci/ai_document/models/inline_document_content.py +++ b/src/oci/ai_document/models/inline_document_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/inline_document_details.py b/src/oci/ai_document/models/inline_document_details.py index 306c8262cd..6b8250eef6 100644 --- a/src/oci/ai_document/models/inline_document_details.py +++ b/src/oci/ai_document/models/inline_document_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/input_location.py b/src/oci/ai_document/models/input_location.py index 9d70447c34..3e6468ec84 100644 --- a/src/oci/ai_document/models/input_location.py +++ b/src/oci/ai_document/models/input_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/key_value_detection_confidence_entry.py b/src/oci/ai_document/models/key_value_detection_confidence_entry.py index 150ee963d8..a066b6a48c 100644 --- a/src/oci/ai_document/models/key_value_detection_confidence_entry.py +++ b/src/oci/ai_document/models/key_value_detection_confidence_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/key_value_detection_label_metrics_report.py b/src/oci/ai_document/models/key_value_detection_label_metrics_report.py index b8531ecfcc..6a52d9ab29 100644 --- a/src/oci/ai_document/models/key_value_detection_label_metrics_report.py +++ b/src/oci/ai_document/models/key_value_detection_label_metrics_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/key_value_detection_model_metrics.py b/src/oci/ai_document/models/key_value_detection_model_metrics.py index 89628a6839..b68228ebca 100644 --- a/src/oci/ai_document/models/key_value_detection_model_metrics.py +++ b/src/oci/ai_document/models/key_value_detection_model_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/key_value_detection_overall_metrics_report.py b/src/oci/ai_document/models/key_value_detection_overall_metrics_report.py index 595faefeb2..9128707b82 100644 --- a/src/oci/ai_document/models/key_value_detection_overall_metrics_report.py +++ b/src/oci/ai_document/models/key_value_detection_overall_metrics_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/line.py b/src/oci/ai_document/models/line.py index df6b3bc7c6..76fb538bec 100644 --- a/src/oci/ai_document/models/line.py +++ b/src/oci/ai_document/models/line.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/model.py b/src/oci/ai_document/models/model.py index e25b54638c..02e8d19643 100644 --- a/src/oci/ai_document/models/model.py +++ b/src/oci/ai_document/models/model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/model_collection.py b/src/oci/ai_document/models/model_collection.py index a386e98369..b511a28a60 100644 --- a/src/oci/ai_document/models/model_collection.py +++ b/src/oci/ai_document/models/model_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/model_metrics.py b/src/oci/ai_document/models/model_metrics.py index 00fb70066b..c820b78ea5 100644 --- a/src/oci/ai_document/models/model_metrics.py +++ b/src/oci/ai_document/models/model_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/model_summary.py b/src/oci/ai_document/models/model_summary.py index 3d6c110dba..0c2c2a113f 100644 --- a/src/oci/ai_document/models/model_summary.py +++ b/src/oci/ai_document/models/model_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/normalized_vertex.py b/src/oci/ai_document/models/normalized_vertex.py index e06feada68..b755ae4b24 100644 --- a/src/oci/ai_document/models/normalized_vertex.py +++ b/src/oci/ai_document/models/normalized_vertex.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/object_location.py b/src/oci/ai_document/models/object_location.py index bb9005bbe2..b7f93e9efc 100644 --- a/src/oci/ai_document/models/object_location.py +++ b/src/oci/ai_document/models/object_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/object_storage_dataset.py b/src/oci/ai_document/models/object_storage_dataset.py index 90c004c7ee..51d8ac1742 100644 --- a/src/oci/ai_document/models/object_storage_dataset.py +++ b/src/oci/ai_document/models/object_storage_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/object_storage_document_details.py b/src/oci/ai_document/models/object_storage_document_details.py index a7acda4a4d..81cc64531b 100644 --- a/src/oci/ai_document/models/object_storage_document_details.py +++ b/src/oci/ai_document/models/object_storage_document_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/object_storage_locations.py b/src/oci/ai_document/models/object_storage_locations.py index 1127e4226c..8605f218a6 100644 --- a/src/oci/ai_document/models/object_storage_locations.py +++ b/src/oci/ai_document/models/object_storage_locations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/output_location.py b/src/oci/ai_document/models/output_location.py index ed29608bf1..bb3531abdf 100644 --- a/src/oci/ai_document/models/output_location.py +++ b/src/oci/ai_document/models/output_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/page.py b/src/oci/ai_document/models/page.py index d6741d9348..834256598b 100644 --- a/src/oci/ai_document/models/page.py +++ b/src/oci/ai_document/models/page.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/patch_model_details.py b/src/oci/ai_document/models/patch_model_details.py index cd24cbc928..9c9e03a5e8 100644 --- a/src/oci/ai_document/models/patch_model_details.py +++ b/src/oci/ai_document/models/patch_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/patch_model_operation.py b/src/oci/ai_document/models/patch_model_operation.py index 770be93106..93a099e264 100644 --- a/src/oci/ai_document/models/patch_model_operation.py +++ b/src/oci/ai_document/models/patch_model_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/patch_response_message.py b/src/oci/ai_document/models/patch_response_message.py index d946b4bcd8..de513c4417 100644 --- a/src/oci/ai_document/models/patch_response_message.py +++ b/src/oci/ai_document/models/patch_response_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/processing_error.py b/src/oci/ai_document/models/processing_error.py index 89c2080d4c..3a85140b70 100644 --- a/src/oci/ai_document/models/processing_error.py +++ b/src/oci/ai_document/models/processing_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/processor_config.py b/src/oci/ai_document/models/processor_config.py index 3345103490..86b0aae607 100644 --- a/src/oci/ai_document/models/processor_config.py +++ b/src/oci/ai_document/models/processor_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/processor_job.py b/src/oci/ai_document/models/processor_job.py index 2dd585a87b..8acd45851d 100644 --- a/src/oci/ai_document/models/processor_job.py +++ b/src/oci/ai_document/models/processor_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/project.py b/src/oci/ai_document/models/project.py index f19053dcf6..be8b3d4217 100644 --- a/src/oci/ai_document/models/project.py +++ b/src/oci/ai_document/models/project.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/project_collection.py b/src/oci/ai_document/models/project_collection.py index 68d2bbf1eb..0f636161e7 100644 --- a/src/oci/ai_document/models/project_collection.py +++ b/src/oci/ai_document/models/project_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/project_summary.py b/src/oci/ai_document/models/project_summary.py index 75be168ac8..1e93c993f0 100644 --- a/src/oci/ai_document/models/project_summary.py +++ b/src/oci/ai_document/models/project_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/remove_model_lock_details.py b/src/oci/ai_document/models/remove_model_lock_details.py index dfca81a8b0..32d83b5594 100644 --- a/src/oci/ai_document/models/remove_model_lock_details.py +++ b/src/oci/ai_document/models/remove_model_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/remove_project_lock_details.py b/src/oci/ai_document/models/remove_project_lock_details.py index 100b546f6b..c1908002e0 100644 --- a/src/oci/ai_document/models/remove_project_lock_details.py +++ b/src/oci/ai_document/models/remove_project_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/resource_lock.py b/src/oci/ai_document/models/resource_lock.py index 8c3deb3918..752addfe3b 100644 --- a/src/oci/ai_document/models/resource_lock.py +++ b/src/oci/ai_document/models/resource_lock.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/table.py b/src/oci/ai_document/models/table.py index 5192e58a82..2efa7bc452 100644 --- a/src/oci/ai_document/models/table.py +++ b/src/oci/ai_document/models/table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/table_row.py b/src/oci/ai_document/models/table_row.py index e7d7ec22be..90e7630b68 100644 --- a/src/oci/ai_document/models/table_row.py +++ b/src/oci/ai_document/models/table_row.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/update_model_details.py b/src/oci/ai_document/models/update_model_details.py index ec62d0a7f8..ea8098e1e7 100644 --- a/src/oci/ai_document/models/update_model_details.py +++ b/src/oci/ai_document/models/update_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/update_project_details.py b/src/oci/ai_document/models/update_project_details.py index 5c43e4e44f..53d5a74a61 100644 --- a/src/oci/ai_document/models/update_project_details.py +++ b/src/oci/ai_document/models/update_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/value_array.py b/src/oci/ai_document/models/value_array.py index f16c18efda..829d523a32 100644 --- a/src/oci/ai_document/models/value_array.py +++ b/src/oci/ai_document/models/value_array.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/value_date.py b/src/oci/ai_document/models/value_date.py index 979641d1ac..b4213370c8 100644 --- a/src/oci/ai_document/models/value_date.py +++ b/src/oci/ai_document/models/value_date.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/value_integer.py b/src/oci/ai_document/models/value_integer.py index 93ee244cef..814f4d4bac 100644 --- a/src/oci/ai_document/models/value_integer.py +++ b/src/oci/ai_document/models/value_integer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/value_number.py b/src/oci/ai_document/models/value_number.py index f97d55fc30..2107f5363c 100644 --- a/src/oci/ai_document/models/value_number.py +++ b/src/oci/ai_document/models/value_number.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/value_phone_number.py b/src/oci/ai_document/models/value_phone_number.py index c58e6fdc6e..644a60da37 100644 --- a/src/oci/ai_document/models/value_phone_number.py +++ b/src/oci/ai_document/models/value_phone_number.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/value_string.py b/src/oci/ai_document/models/value_string.py index 4def338a2e..58b1a97584 100644 --- a/src/oci/ai_document/models/value_string.py +++ b/src/oci/ai_document/models/value_string.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/value_time.py b/src/oci/ai_document/models/value_time.py index c9c8adde81..ccf3cb2b50 100644 --- a/src/oci/ai_document/models/value_time.py +++ b/src/oci/ai_document/models/value_time.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/word.py b/src/oci/ai_document/models/word.py index 39209dba48..f3f6f69b09 100644 --- a/src/oci/ai_document/models/word.py +++ b/src/oci/ai_document/models/word.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/work_request.py b/src/oci/ai_document/models/work_request.py index d22f478c65..b78d95fe4e 100644 --- a/src/oci/ai_document/models/work_request.py +++ b/src/oci/ai_document/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/work_request_error.py b/src/oci/ai_document/models/work_request_error.py index 0ccd2078d3..2a2b2d644e 100644 --- a/src/oci/ai_document/models/work_request_error.py +++ b/src/oci/ai_document/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/work_request_error_collection.py b/src/oci/ai_document/models/work_request_error_collection.py index c8bbd40c18..2b11b52854 100644 --- a/src/oci/ai_document/models/work_request_error_collection.py +++ b/src/oci/ai_document/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/work_request_log_entry.py b/src/oci/ai_document/models/work_request_log_entry.py index c7140b97b4..12061f8a98 100644 --- a/src/oci/ai_document/models/work_request_log_entry.py +++ b/src/oci/ai_document/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/work_request_log_entry_collection.py b/src/oci/ai_document/models/work_request_log_entry_collection.py index f7c2fd51a8..d176b2f1f1 100644 --- a/src/oci/ai_document/models/work_request_log_entry_collection.py +++ b/src/oci/ai_document/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/work_request_resource.py b/src/oci/ai_document/models/work_request_resource.py index 19ff300abf..0f616051ab 100644 --- a/src/oci/ai_document/models/work_request_resource.py +++ b/src/oci/ai_document/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/work_request_summary.py b/src/oci/ai_document/models/work_request_summary.py index 30e66178bb..b2ffcb00a1 100644 --- a/src/oci/ai_document/models/work_request_summary.py +++ b/src/oci/ai_document/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_document/models/work_request_summary_collection.py b/src/oci/ai_document/models/work_request_summary_collection.py index 7866535c61..cde3f020ff 100644 --- a/src/oci/ai_document/models/work_request_summary_collection.py +++ b/src/oci/ai_document/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221109 diff --git a/src/oci/ai_language/__init__.py b/src/oci/ai_language/__init__.py index ccaec50547..a7f167d79c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/ai_service_language_client.py b/src/oci/ai_language/ai_service_language_client.py index ccc0a2f060..9df32ac92e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 f5a9a4f134..2411235fea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/__init__.py b/src/oci/ai_language/models/__init__.py index 72ba824465..30dde718fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/assertion_details.py b/src/oci/ai_language/models/assertion_details.py index dd6107923c..e30f0c6c9d 100644 --- a/src/oci/ai_language/models/assertion_details.py +++ b/src/oci/ai_language/models/assertion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 745ee281f5..b440c2e9ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 c0fcb123d8..5eb3c99aa8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/batch_detect_health_entity_details.py b/src/oci/ai_language/models/batch_detect_health_entity_details.py index f0a060a6c2..61ffbc7fff 100644 --- a/src/oci/ai_language/models/batch_detect_health_entity_details.py +++ b/src/oci/ai_language/models/batch_detect_health_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/batch_detect_health_entity_result.py b/src/oci/ai_language/models/batch_detect_health_entity_result.py index 84337ea6a5..8755a8b9e2 100644 --- a/src/oci/ai_language/models/batch_detect_health_entity_result.py +++ b/src/oci/ai_language/models/batch_detect_health_entity_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 897343f1b0..318f67f31e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 c792647c0f..700420a2aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 6bbde1b6a2..bf0e146b5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 2f0a158a66..73d9065559 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/batch_detect_language_pii_entities_details.py b/src/oci/ai_language/models/batch_detect_language_pii_entities_details.py index b1373a4791..a258ea467d 100644 --- a/src/oci/ai_language/models/batch_detect_language_pii_entities_details.py +++ b/src/oci/ai_language/models/batch_detect_language_pii_entities_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/batch_detect_language_pii_entities_result.py b/src/oci/ai_language/models/batch_detect_language_pii_entities_result.py index 7a769f13fc..da5e307f9f 100644 --- a/src/oci/ai_language/models/batch_detect_language_pii_entities_result.py +++ b/src/oci/ai_language/models/batch_detect_language_pii_entities_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 5358f94262..b40b43c6f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 fbd2779535..8754f6070f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 58931a0732..0a15971aa9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 66ee81bd19..3179877588 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/batch_language_translation_details.py b/src/oci/ai_language/models/batch_language_translation_details.py index d4d7fa8048..7944c06805 100644 --- a/src/oci/ai_language/models/batch_language_translation_details.py +++ b/src/oci/ai_language/models/batch_language_translation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/batch_language_translation_result.py b/src/oci/ai_language/models/batch_language_translation_result.py index 6bec7cb13b..a4bc2fcd96 100644 --- a/src/oci/ai_language/models/batch_language_translation_result.py +++ b/src/oci/ai_language/models/batch_language_translation_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/capabilities.py b/src/oci/ai_language/models/capabilities.py index 1492d99bcd..eb32db16f3 100644 --- a/src/oci/ai_language/models/capabilities.py +++ b/src/oci/ai_language/models/capabilities.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/capability.py b/src/oci/ai_language/models/capability.py index 189e5cda25..dd387442c5 100644 --- a/src/oci/ai_language/models/capability.py +++ b/src/oci/ai_language/models/capability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/change_endpoint_compartment_details.py b/src/oci/ai_language/models/change_endpoint_compartment_details.py index a5ec2e3e3e..ed4788bd2c 100644 --- a/src/oci/ai_language/models/change_endpoint_compartment_details.py +++ b/src/oci/ai_language/models/change_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/change_job_compartment_details.py b/src/oci/ai_language/models/change_job_compartment_details.py index 02599bd20a..0550a0c3eb 100644 --- a/src/oci/ai_language/models/change_job_compartment_details.py +++ b/src/oci/ai_language/models/change_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/change_model_compartment_details.py b/src/oci/ai_language/models/change_model_compartment_details.py index 854702d999..b18af34664 100644 --- a/src/oci/ai_language/models/change_model_compartment_details.py +++ b/src/oci/ai_language/models/change_model_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/change_project_compartment_details.py b/src/oci/ai_language/models/change_project_compartment_details.py index ee90d0dc06..9b68726e74 100644 --- a/src/oci/ai_language/models/change_project_compartment_details.py +++ b/src/oci/ai_language/models/change_project_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/class_metrics.py b/src/oci/ai_language/models/class_metrics.py index 98bf07f90b..3ff570cc46 100644 --- a/src/oci/ai_language/models/class_metrics.py +++ b/src/oci/ai_language/models/class_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/classification_multi_class_mode_details.py b/src/oci/ai_language/models/classification_multi_class_mode_details.py index 8ee3d118c5..4906f7ccf0 100644 --- a/src/oci/ai_language/models/classification_multi_class_mode_details.py +++ b/src/oci/ai_language/models/classification_multi_class_mode_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/classification_multi_label_mode_details.py b/src/oci/ai_language/models/classification_multi_label_mode_details.py index 25045177ea..49f479fa49 100644 --- a/src/oci/ai_language/models/classification_multi_label_mode_details.py +++ b/src/oci/ai_language/models/classification_multi_label_mode_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/classification_type.py b/src/oci/ai_language/models/classification_type.py index 3429c996d9..8854cac128 100644 --- a/src/oci/ai_language/models/classification_type.py +++ b/src/oci/ai_language/models/classification_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/configuration_details.py b/src/oci/ai_language/models/configuration_details.py index a1f4b3151c..1e2ca29b7e 100644 --- a/src/oci/ai_language/models/configuration_details.py +++ b/src/oci/ai_language/models/configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/confusion_matrix_details.py b/src/oci/ai_language/models/confusion_matrix_details.py index 817e55fe64..6c34ac96fc 100644 --- a/src/oci/ai_language/models/confusion_matrix_details.py +++ b/src/oci/ai_language/models/confusion_matrix_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/create_endpoint_details.py b/src/oci/ai_language/models/create_endpoint_details.py index 1b19ca7f50..c1c7035190 100644 --- a/src/oci/ai_language/models/create_endpoint_details.py +++ b/src/oci/ai_language/models/create_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/create_job_details.py b/src/oci/ai_language/models/create_job_details.py index 645b9042e6..9a0e03680a 100644 --- a/src/oci/ai_language/models/create_job_details.py +++ b/src/oci/ai_language/models/create_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/create_model_details.py b/src/oci/ai_language/models/create_model_details.py index c57fff461c..ccaf22b435 100644 --- a/src/oci/ai_language/models/create_model_details.py +++ b/src/oci/ai_language/models/create_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/create_project_details.py b/src/oci/ai_language/models/create_project_details.py index 5ed7d97c86..6c8da8f59c 100644 --- a/src/oci/ai_language/models/create_project_details.py +++ b/src/oci/ai_language/models/create_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/data_science_labeling_dataset.py b/src/oci/ai_language/models/data_science_labeling_dataset.py index 78c9f59aea..0af438179a 100644 --- a/src/oci/ai_language/models/data_science_labeling_dataset.py +++ b/src/oci/ai_language/models/data_science_labeling_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/dataset_details.py b/src/oci/ai_language/models/dataset_details.py index cefe925ac9..420e36c89a 100644 --- a/src/oci/ai_language/models/dataset_details.py +++ b/src/oci/ai_language/models/dataset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 b49fda8e57..e6a3eda86d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 846e896113..c6a6419de1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 20ffc1d4db..d5fcaee462 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 15a3a6cf91..e38ee86546 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 42ca983107..06851c07de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 dcc0fcc232..15a662aab9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 0cb7da2dbe..788d236a24 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 1e2fca3723..46c30193d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 ae1d36d031..d848dfb161 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 08cadcdbd9..28c9c72b8a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/detected_language.py b/src/oci/ai_language/models/detected_language.py index 0ddfcf241d..0dd63afda6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/document_error.py b/src/oci/ai_language/models/document_error.py index 0721033173..409040c9b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/documents_configuration.py b/src/oci/ai_language/models/documents_configuration.py index 01dac1eca7..47c3b8278d 100644 --- a/src/oci/ai_language/models/documents_configuration.py +++ b/src/oci/ai_language/models/documents_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/dominant_language_document.py b/src/oci/ai_language/models/dominant_language_document.py index 4d8273e745..172547bbcf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 638445fbac..ce9dffe487 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/endpoint.py b/src/oci/ai_language/models/endpoint.py index 590ba65092..6b4ece6782 100644 --- a/src/oci/ai_language/models/endpoint.py +++ b/src/oci/ai_language/models/endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/endpoint_collection.py b/src/oci/ai_language/models/endpoint_collection.py index a49dce684c..6c56f6f25b 100644 --- a/src/oci/ai_language/models/endpoint_collection.py +++ b/src/oci/ai_language/models/endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/endpoint_summary.py b/src/oci/ai_language/models/endpoint_summary.py index afb2a78553..9a74b87615 100644 --- a/src/oci/ai_language/models/endpoint_summary.py +++ b/src/oci/ai_language/models/endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/entity.py b/src/oci/ai_language/models/entity.py index 0883301714..4422021082 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/entity_document_result.py b/src/oci/ai_language/models/entity_document_result.py index bab1ebfb76..44c9fea6d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/entity_label_error_analysis.py b/src/oci/ai_language/models/entity_label_error_analysis.py index b2de775f1c..dc99a42edf 100644 --- a/src/oci/ai_language/models/entity_label_error_analysis.py +++ b/src/oci/ai_language/models/entity_label_error_analysis.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/entity_metrics.py b/src/oci/ai_language/models/entity_metrics.py index 92527144ab..fe8d629219 100644 --- a/src/oci/ai_language/models/entity_metrics.py +++ b/src/oci/ai_language/models/entity_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/error_details.py b/src/oci/ai_language/models/error_details.py index 63433670dc..e01f16b204 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/evaluation_result_collection.py b/src/oci/ai_language/models/evaluation_result_collection.py index d44c032488..907a989010 100644 --- a/src/oci/ai_language/models/evaluation_result_collection.py +++ b/src/oci/ai_language/models/evaluation_result_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/evaluation_result_summary.py b/src/oci/ai_language/models/evaluation_result_summary.py index c8b376a5e7..66b33640e0 100644 --- a/src/oci/ai_language/models/evaluation_result_summary.py +++ b/src/oci/ai_language/models/evaluation_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/evaluation_results.py b/src/oci/ai_language/models/evaluation_results.py index 296825c60b..1c90823b88 100644 --- a/src/oci/ai_language/models/evaluation_results.py +++ b/src/oci/ai_language/models/evaluation_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/health_entity.py b/src/oci/ai_language/models/health_entity.py index eb90b66940..6d38d9e9b3 100644 --- a/src/oci/ai_language/models/health_entity.py +++ b/src/oci/ai_language/models/health_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/health_entity_document_result.py b/src/oci/ai_language/models/health_entity_document_result.py index 4a6bec10ba..307fe2a98a 100644 --- a/src/oci/ai_language/models/health_entity_document_result.py +++ b/src/oci/ai_language/models/health_entity_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/health_nlu_model_details.py b/src/oci/ai_language/models/health_nlu_model_details.py index 6cfc2f68ca..d680e2a577 100644 --- a/src/oci/ai_language/models/health_nlu_model_details.py +++ b/src/oci/ai_language/models/health_nlu_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/hierarchical_entity.py b/src/oci/ai_language/models/hierarchical_entity.py index a5646d9d1d..f16a53020e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/input_configuration.py b/src/oci/ai_language/models/input_configuration.py index d695d81bab..5d6b816178 100644 --- a/src/oci/ai_language/models/input_configuration.py +++ b/src/oci/ai_language/models/input_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/input_location.py b/src/oci/ai_language/models/input_location.py index ae47fcc71f..913e76f25b 100644 --- a/src/oci/ai_language/models/input_location.py +++ b/src/oci/ai_language/models/input_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/job.py b/src/oci/ai_language/models/job.py index a618a42196..f1fcd97e62 100644 --- a/src/oci/ai_language/models/job.py +++ b/src/oci/ai_language/models/job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/job_collection.py b/src/oci/ai_language/models/job_collection.py index ca1f2a1497..d82cb92f80 100644 --- a/src/oci/ai_language/models/job_collection.py +++ b/src/oci/ai_language/models/job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/job_summary.py b/src/oci/ai_language/models/job_summary.py index dd6ed1146f..c461069b28 100644 --- a/src/oci/ai_language/models/job_summary.py +++ b/src/oci/ai_language/models/job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/key_phrase.py b/src/oci/ai_language/models/key_phrase.py index 0e5c19d595..17c3b85e0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 fb4e752780..60a4e6cf55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/location_details.py b/src/oci/ai_language/models/location_details.py index 2698217905..6ac4a69b80 100644 --- a/src/oci/ai_language/models/location_details.py +++ b/src/oci/ai_language/models/location_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/mel_concept.py b/src/oci/ai_language/models/mel_concept.py index f2f52dc090..24a89dfd6e 100644 --- a/src/oci/ai_language/models/mel_concept.py +++ b/src/oci/ai_language/models/mel_concept.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/mel_concept_details.py b/src/oci/ai_language/models/mel_concept_details.py index cd01a13eb8..5cfec96bd0 100644 --- a/src/oci/ai_language/models/mel_concept_details.py +++ b/src/oci/ai_language/models/mel_concept_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/meta_info.py b/src/oci/ai_language/models/meta_info.py index 783647eb94..3a42508082 100644 --- a/src/oci/ai_language/models/meta_info.py +++ b/src/oci/ai_language/models/meta_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/model.py b/src/oci/ai_language/models/model.py index fcc1568e7f..b7ffff9d46 100644 --- a/src/oci/ai_language/models/model.py +++ b/src/oci/ai_language/models/model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/model_collection.py b/src/oci/ai_language/models/model_collection.py index fa99113d55..fa8162adf8 100644 --- a/src/oci/ai_language/models/model_collection.py +++ b/src/oci/ai_language/models/model_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/model_details.py b/src/oci/ai_language/models/model_details.py index 19ddc11cf0..67ec8318a1 100644 --- a/src/oci/ai_language/models/model_details.py +++ b/src/oci/ai_language/models/model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/model_metadata_details.py b/src/oci/ai_language/models/model_metadata_details.py index d92d170eae..f337a974d8 100644 --- a/src/oci/ai_language/models/model_metadata_details.py +++ b/src/oci/ai_language/models/model_metadata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/model_summary.py b/src/oci/ai_language/models/model_summary.py index 01e9126394..5cca57a970 100644 --- a/src/oci/ai_language/models/model_summary.py +++ b/src/oci/ai_language/models/model_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/model_type_info.py b/src/oci/ai_language/models/model_type_info.py index d99c82ad82..ca195f1a55 100644 --- a/src/oci/ai_language/models/model_type_info.py +++ b/src/oci/ai_language/models/model_type_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/named_entity_recognition_evaluation_result.py b/src/oci/ai_language/models/named_entity_recognition_evaluation_result.py index 6106461f2e..0272e94b06 100644 --- a/src/oci/ai_language/models/named_entity_recognition_evaluation_result.py +++ b/src/oci/ai_language/models/named_entity_recognition_evaluation_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/named_entity_recognition_evaluation_results.py b/src/oci/ai_language/models/named_entity_recognition_evaluation_results.py index 66d1900cc4..039d50cda9 100644 --- a/src/oci/ai_language/models/named_entity_recognition_evaluation_results.py +++ b/src/oci/ai_language/models/named_entity_recognition_evaluation_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/named_entity_recognition_model_details.py b/src/oci/ai_language/models/named_entity_recognition_model_details.py index 38004ad658..f81a5a0249 100644 --- a/src/oci/ai_language/models/named_entity_recognition_model_details.py +++ b/src/oci/ai_language/models/named_entity_recognition_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/named_entity_recognition_model_metrics.py b/src/oci/ai_language/models/named_entity_recognition_model_metrics.py index d9c7168285..ed271b8354 100644 --- a/src/oci/ai_language/models/named_entity_recognition_model_metrics.py +++ b/src/oci/ai_language/models/named_entity_recognition_model_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/object_list_dataset.py b/src/oci/ai_language/models/object_list_dataset.py index f1170cf539..4236d9eba1 100644 --- a/src/oci/ai_language/models/object_list_dataset.py +++ b/src/oci/ai_language/models/object_list_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/object_prefix_output_location.py b/src/oci/ai_language/models/object_prefix_output_location.py index 76c4a66ce7..8cc06c09a1 100644 --- a/src/oci/ai_language/models/object_prefix_output_location.py +++ b/src/oci/ai_language/models/object_prefix_output_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/object_storage_dataset.py b/src/oci/ai_language/models/object_storage_dataset.py index 2cb6e6c048..f4654ad9fa 100644 --- a/src/oci/ai_language/models/object_storage_dataset.py +++ b/src/oci/ai_language/models/object_storage_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/object_storage_file_name_location.py b/src/oci/ai_language/models/object_storage_file_name_location.py index 0fa154f56c..d725547f14 100644 --- a/src/oci/ai_language/models/object_storage_file_name_location.py +++ b/src/oci/ai_language/models/object_storage_file_name_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/object_storage_prefix_location.py b/src/oci/ai_language/models/object_storage_prefix_location.py index a043ccd7f3..bb7603de8a 100644 --- a/src/oci/ai_language/models/object_storage_prefix_location.py +++ b/src/oci/ai_language/models/object_storage_prefix_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pii_entity.py b/src/oci/ai_language/models/pii_entity.py index fb88f180ab..d59e7de89f 100644 --- a/src/oci/ai_language/models/pii_entity.py +++ b/src/oci/ai_language/models/pii_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pii_entity_document_result.py b/src/oci/ai_language/models/pii_entity_document_result.py index 7d6c187ebc..b3231f519b 100644 --- a/src/oci/ai_language/models/pii_entity_document_result.py +++ b/src/oci/ai_language/models/pii_entity_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pii_entity_mask.py b/src/oci/ai_language/models/pii_entity_mask.py index d46ddfffbe..002d7fd010 100644 --- a/src/oci/ai_language/models/pii_entity_mask.py +++ b/src/oci/ai_language/models/pii_entity_mask.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pii_entity_masking.py b/src/oci/ai_language/models/pii_entity_masking.py index 95b6602351..2daa25da04 100644 --- a/src/oci/ai_language/models/pii_entity_masking.py +++ b/src/oci/ai_language/models/pii_entity_masking.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pii_entity_remove.py b/src/oci/ai_language/models/pii_entity_remove.py index 9a566c5fa1..5915283ec9 100644 --- a/src/oci/ai_language/models/pii_entity_remove.py +++ b/src/oci/ai_language/models/pii_entity_remove.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pii_entity_replace.py b/src/oci/ai_language/models/pii_entity_replace.py index 0e998e0a40..582b33f6d9 100644 --- a/src/oci/ai_language/models/pii_entity_replace.py +++ b/src/oci/ai_language/models/pii_entity_replace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pii_model_details.py b/src/oci/ai_language/models/pii_model_details.py index 9491acec16..a3638a992d 100644 --- a/src/oci/ai_language/models/pii_model_details.py +++ b/src/oci/ai_language/models/pii_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_deployed_language_models.py b/src/oci/ai_language/models/pre_deployed_language_models.py index e6b5496e0e..35ce9158d3 100644 --- a/src/oci/ai_language/models/pre_deployed_language_models.py +++ b/src/oci/ai_language/models/pre_deployed_language_models.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_health_nlu_model_details.py b/src/oci/ai_language/models/pre_trained_health_nlu_model_details.py index 010eb2b925..6bbb9796e5 100644 --- a/src/oci/ai_language/models/pre_trained_health_nlu_model_details.py +++ b/src/oci/ai_language/models/pre_trained_health_nlu_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_key_phrase_extraction_model_details.py b/src/oci/ai_language/models/pre_trained_key_phrase_extraction_model_details.py index 8dbc9a1e59..f18e4ae23a 100644 --- a/src/oci/ai_language/models/pre_trained_key_phrase_extraction_model_details.py +++ b/src/oci/ai_language/models/pre_trained_key_phrase_extraction_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_language_detection_model_details.py b/src/oci/ai_language/models/pre_trained_language_detection_model_details.py index ae8270070d..742eea3665 100644 --- a/src/oci/ai_language/models/pre_trained_language_detection_model_details.py +++ b/src/oci/ai_language/models/pre_trained_language_detection_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_named_entity_recognition_model_details.py b/src/oci/ai_language/models/pre_trained_named_entity_recognition_model_details.py index d4b5ef0fa4..905d97ddc5 100644 --- a/src/oci/ai_language/models/pre_trained_named_entity_recognition_model_details.py +++ b/src/oci/ai_language/models/pre_trained_named_entity_recognition_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_pii_model_details.py b/src/oci/ai_language/models/pre_trained_pii_model_details.py index 447bc9f6af..85e26dae1a 100644 --- a/src/oci/ai_language/models/pre_trained_pii_model_details.py +++ b/src/oci/ai_language/models/pre_trained_pii_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_sentiment_analysis_model_details.py b/src/oci/ai_language/models/pre_trained_sentiment_analysis_model_details.py index 43a3ab2def..31f272bd3c 100644 --- a/src/oci/ai_language/models/pre_trained_sentiment_analysis_model_details.py +++ b/src/oci/ai_language/models/pre_trained_sentiment_analysis_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_summarization.py b/src/oci/ai_language/models/pre_trained_summarization.py index 8878bc4609..14b3097e50 100644 --- a/src/oci/ai_language/models/pre_trained_summarization.py +++ b/src/oci/ai_language/models/pre_trained_summarization.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_text_classification_model_details.py b/src/oci/ai_language/models/pre_trained_text_classification_model_details.py index 8bcec2a49e..7c440937cd 100644 --- a/src/oci/ai_language/models/pre_trained_text_classification_model_details.py +++ b/src/oci/ai_language/models/pre_trained_text_classification_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_translation_model_details.py b/src/oci/ai_language/models/pre_trained_translation_model_details.py index 41538ae53d..143281fb72 100644 --- a/src/oci/ai_language/models/pre_trained_translation_model_details.py +++ b/src/oci/ai_language/models/pre_trained_translation_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/pre_trained_universal_model.py b/src/oci/ai_language/models/pre_trained_universal_model.py index 25a200ab29..4a24fc5c23 100644 --- a/src/oci/ai_language/models/pre_trained_universal_model.py +++ b/src/oci/ai_language/models/pre_trained_universal_model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/profile.py b/src/oci/ai_language/models/profile.py index f6d7724827..eb4f9d60d1 100644 --- a/src/oci/ai_language/models/profile.py +++ b/src/oci/ai_language/models/profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/project.py b/src/oci/ai_language/models/project.py index f0649fed73..5c5e3ba28f 100644 --- a/src/oci/ai_language/models/project.py +++ b/src/oci/ai_language/models/project.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/project_collection.py b/src/oci/ai_language/models/project_collection.py index 1088df2fa5..a4e67f88e2 100644 --- a/src/oci/ai_language/models/project_collection.py +++ b/src/oci/ai_language/models/project_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/project_summary.py b/src/oci/ai_language/models/project_summary.py index 3ee0c2eb67..ffbe35a367 100644 --- a/src/oci/ai_language/models/project_summary.py +++ b/src/oci/ai_language/models/project_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/relation_entity.py b/src/oci/ai_language/models/relation_entity.py index e7499e7842..3705caf208 100644 --- a/src/oci/ai_language/models/relation_entity.py +++ b/src/oci/ai_language/models/relation_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/resolved_entities.py b/src/oci/ai_language/models/resolved_entities.py index 2dd601b4bd..76f75c3f9b 100644 --- a/src/oci/ai_language/models/resolved_entities.py +++ b/src/oci/ai_language/models/resolved_entities.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/resolved_entity.py b/src/oci/ai_language/models/resolved_entity.py index c31ea8d9f6..05cb073ca6 100644 --- a/src/oci/ai_language/models/resolved_entity.py +++ b/src/oci/ai_language/models/resolved_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/sentiment_aspect.py b/src/oci/ai_language/models/sentiment_aspect.py index 48fb2cfd62..9e4398abad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/sentiment_document_result.py b/src/oci/ai_language/models/sentiment_document_result.py index 88ed23a403..b29051dfdf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/sentiment_sentence.py b/src/oci/ai_language/models/sentiment_sentence.py index 7f47296b15..2366c97e69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/test_and_validation_dataset_strategy.py b/src/oci/ai_language/models/test_and_validation_dataset_strategy.py index 1159984489..16f10e66d7 100644 --- a/src/oci/ai_language/models/test_and_validation_dataset_strategy.py +++ b/src/oci/ai_language/models/test_and_validation_dataset_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/test_strategy.py b/src/oci/ai_language/models/test_strategy.py index 631d9db653..e50f3d79d2 100644 --- a/src/oci/ai_language/models/test_strategy.py +++ b/src/oci/ai_language/models/test_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/text_classification.py b/src/oci/ai_language/models/text_classification.py index fb5c8abd06..e381b282b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 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 8ccf9e8811..b315c28c90 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/text_classification_evaluation_results.py b/src/oci/ai_language/models/text_classification_evaluation_results.py index a1ee647b54..df7bfc4c51 100644 --- a/src/oci/ai_language/models/text_classification_evaluation_results.py +++ b/src/oci/ai_language/models/text_classification_evaluation_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/text_classification_model_details.py b/src/oci/ai_language/models/text_classification_model_details.py index d81ef42bc7..a680444164 100644 --- a/src/oci/ai_language/models/text_classification_model_details.py +++ b/src/oci/ai_language/models/text_classification_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/text_classification_model_evaluation_result.py b/src/oci/ai_language/models/text_classification_model_evaluation_result.py index 0fbe559cac..053cce3172 100644 --- a/src/oci/ai_language/models/text_classification_model_evaluation_result.py +++ b/src/oci/ai_language/models/text_classification_model_evaluation_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/text_classification_model_metrics.py b/src/oci/ai_language/models/text_classification_model_metrics.py index 11350170dc..71f3095dc2 100644 --- a/src/oci/ai_language/models/text_classification_model_metrics.py +++ b/src/oci/ai_language/models/text_classification_model_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/text_document.py b/src/oci/ai_language/models/text_document.py index fda73b2a32..e913c6e900 100644 --- a/src/oci/ai_language/models/text_document.py +++ b/src/oci/ai_language/models/text_document.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/translation_document_result.py b/src/oci/ai_language/models/translation_document_result.py index 3f37f246ee..30015bc87d 100644 --- a/src/oci/ai_language/models/translation_document_result.py +++ b/src/oci/ai_language/models/translation_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/update_endpoint_details.py b/src/oci/ai_language/models/update_endpoint_details.py index ca3996a2fc..b78e52cf28 100644 --- a/src/oci/ai_language/models/update_endpoint_details.py +++ b/src/oci/ai_language/models/update_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/update_job_details.py b/src/oci/ai_language/models/update_job_details.py index f0fdd342de..c3694431c6 100644 --- a/src/oci/ai_language/models/update_job_details.py +++ b/src/oci/ai_language/models/update_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/update_model_details.py b/src/oci/ai_language/models/update_model_details.py index 39cfba467b..f9735d9bde 100644 --- a/src/oci/ai_language/models/update_model_details.py +++ b/src/oci/ai_language/models/update_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/update_project_details.py b/src/oci/ai_language/models/update_project_details.py index fe20a0f9ea..ab3970c42e 100644 --- a/src/oci/ai_language/models/update_project_details.py +++ b/src/oci/ai_language/models/update_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/work_request.py b/src/oci/ai_language/models/work_request.py index c467f80031..33f54db6b8 100644 --- a/src/oci/ai_language/models/work_request.py +++ b/src/oci/ai_language/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/work_request_error.py b/src/oci/ai_language/models/work_request_error.py index c27a81040f..38334a0e66 100644 --- a/src/oci/ai_language/models/work_request_error.py +++ b/src/oci/ai_language/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/work_request_error_collection.py b/src/oci/ai_language/models/work_request_error_collection.py index c7102036a3..48bdf97d05 100644 --- a/src/oci/ai_language/models/work_request_error_collection.py +++ b/src/oci/ai_language/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/work_request_log.py b/src/oci/ai_language/models/work_request_log.py index 7bfdef1d1a..969eb783a0 100644 --- a/src/oci/ai_language/models/work_request_log.py +++ b/src/oci/ai_language/models/work_request_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/work_request_log_collection.py b/src/oci/ai_language/models/work_request_log_collection.py index bf550b4d5d..05442eae7d 100644 --- a/src/oci/ai_language/models/work_request_log_collection.py +++ b/src/oci/ai_language/models/work_request_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/work_request_resource.py b/src/oci/ai_language/models/work_request_resource.py index 36cf42bd1d..4c05763fa1 100644 --- a/src/oci/ai_language/models/work_request_resource.py +++ b/src/oci/ai_language/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/work_request_summary.py b/src/oci/ai_language/models/work_request_summary.py index 850bb3d68d..68cb0b5812 100644 --- a/src/oci/ai_language/models/work_request_summary.py +++ b/src/oci/ai_language/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_language/models/work_request_summary_collection.py b/src/oci/ai_language/models/work_request_summary_collection.py index d4ede7a0bd..48db30c2fa 100644 --- a/src/oci/ai_language/models/work_request_summary_collection.py +++ b/src/oci/ai_language/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221001 diff --git a/src/oci/ai_speech/__init__.py b/src/oci/ai_speech/__init__.py index ad7dbd84f7..ab237f90cb 100644 --- a/src/oci/ai_speech/__init__.py +++ b/src/oci/ai_speech/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/ai_service_speech_client.py b/src/oci/ai_speech/ai_service_speech_client.py index 0cdbd8a81a..23d5e0fddf 100644 --- a/src/oci/ai_speech/ai_service_speech_client.py +++ b/src/oci/ai_speech/ai_service_speech_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/ai_service_speech_client_composite_operations.py b/src/oci/ai_speech/ai_service_speech_client_composite_operations.py index c6879d950e..8298fb55b8 100644 --- a/src/oci/ai_speech/ai_service_speech_client_composite_operations.py +++ b/src/oci/ai_speech/ai_service_speech_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/__init__.py b/src/oci/ai_speech/models/__init__.py index dccb056ee2..c6a99a2f88 100644 --- a/src/oci/ai_speech/models/__init__.py +++ b/src/oci/ai_speech/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/audio_format_details.py b/src/oci/ai_speech/models/audio_format_details.py index b65bfe4417..13ed2875aa 100644 --- a/src/oci/ai_speech/models/audio_format_details.py +++ b/src/oci/ai_speech/models/audio_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/change_customization_compartment_details.py b/src/oci/ai_speech/models/change_customization_compartment_details.py index de42f957a0..a67dac81bb 100644 --- a/src/oci/ai_speech/models/change_customization_compartment_details.py +++ b/src/oci/ai_speech/models/change_customization_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/change_transcription_job_compartment_details.py b/src/oci/ai_speech/models/change_transcription_job_compartment_details.py index 99bdfef56f..38be9b1ed2 100644 --- a/src/oci/ai_speech/models/change_transcription_job_compartment_details.py +++ b/src/oci/ai_speech/models/change_transcription_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/create_customization_details.py b/src/oci/ai_speech/models/create_customization_details.py index 31d9f1314c..59267d183f 100644 --- a/src/oci/ai_speech/models/create_customization_details.py +++ b/src/oci/ai_speech/models/create_customization_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/create_realtime_session_token_details.py b/src/oci/ai_speech/models/create_realtime_session_token_details.py index 1214f1b8de..032d3777e0 100644 --- a/src/oci/ai_speech/models/create_realtime_session_token_details.py +++ b/src/oci/ai_speech/models/create_realtime_session_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/create_transcription_job_details.py b/src/oci/ai_speech/models/create_transcription_job_details.py index 5973932acc..daa8c6cae3 100644 --- a/src/oci/ai_speech/models/create_transcription_job_details.py +++ b/src/oci/ai_speech/models/create_transcription_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/customization.py b/src/oci/ai_speech/models/customization.py index 8303281c02..93e8138e81 100644 --- a/src/oci/ai_speech/models/customization.py +++ b/src/oci/ai_speech/models/customization.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/customization_collection.py b/src/oci/ai_speech/models/customization_collection.py index e9c3314f3c..32329eb23f 100644 --- a/src/oci/ai_speech/models/customization_collection.py +++ b/src/oci/ai_speech/models/customization_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/customization_dataset_details.py b/src/oci/ai_speech/models/customization_dataset_details.py index 78d05db77b..b9f451ebce 100644 --- a/src/oci/ai_speech/models/customization_dataset_details.py +++ b/src/oci/ai_speech/models/customization_dataset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/customization_inference.py b/src/oci/ai_speech/models/customization_inference.py index 914568a84c..90a9e8a75d 100644 --- a/src/oci/ai_speech/models/customization_inference.py +++ b/src/oci/ai_speech/models/customization_inference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/customization_inference_entity.py b/src/oci/ai_speech/models/customization_inference_entity.py index 4fd36c78b2..31bb39a14e 100644 --- a/src/oci/ai_speech/models/customization_inference_entity.py +++ b/src/oci/ai_speech/models/customization_inference_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/customization_model_details.py b/src/oci/ai_speech/models/customization_model_details.py index 89c136924b..ffb6b2ee77 100644 --- a/src/oci/ai_speech/models/customization_model_details.py +++ b/src/oci/ai_speech/models/customization_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/customization_referenced_entities.py b/src/oci/ai_speech/models/customization_referenced_entities.py index 3acf5f8780..dcb0d3e5bb 100644 --- a/src/oci/ai_speech/models/customization_referenced_entities.py +++ b/src/oci/ai_speech/models/customization_referenced_entities.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/customization_summary.py b/src/oci/ai_speech/models/customization_summary.py index 05ea2de817..a9752b5bee 100644 --- a/src/oci/ai_speech/models/customization_summary.py +++ b/src/oci/ai_speech/models/customization_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/diarization.py b/src/oci/ai_speech/models/diarization.py index f2f7bd2d0f..f8c71e9059 100644 --- a/src/oci/ai_speech/models/diarization.py +++ b/src/oci/ai_speech/models/diarization.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/entity.py b/src/oci/ai_speech/models/entity.py index 8bcf43dddd..24dab0daf1 100644 --- a/src/oci/ai_speech/models/entity.py +++ b/src/oci/ai_speech/models/entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/entity_list.py b/src/oci/ai_speech/models/entity_list.py index 8f00c25e84..8f00a15897 100644 --- a/src/oci/ai_speech/models/entity_list.py +++ b/src/oci/ai_speech/models/entity_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/entity_list_dataset.py b/src/oci/ai_speech/models/entity_list_dataset.py index 6925ea2edd..9f82ae04f0 100644 --- a/src/oci/ai_speech/models/entity_list_dataset.py +++ b/src/oci/ai_speech/models/entity_list_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/input_location.py b/src/oci/ai_speech/models/input_location.py index 7b9dcb52e9..444b71179c 100644 --- a/src/oci/ai_speech/models/input_location.py +++ b/src/oci/ai_speech/models/input_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/location_details.py b/src/oci/ai_speech/models/location_details.py index b7d7d52bc4..e293a6aef5 100644 --- a/src/oci/ai_speech/models/location_details.py +++ b/src/oci/ai_speech/models/location_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/object_list_dataset.py b/src/oci/ai_speech/models/object_list_dataset.py index b30e0169b1..95cd268c54 100644 --- a/src/oci/ai_speech/models/object_list_dataset.py +++ b/src/oci/ai_speech/models/object_list_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/object_list_file_input_location.py b/src/oci/ai_speech/models/object_list_file_input_location.py index abd531dee3..cd9a1342a4 100644 --- a/src/oci/ai_speech/models/object_list_file_input_location.py +++ b/src/oci/ai_speech/models/object_list_file_input_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/object_list_inline_input_location.py b/src/oci/ai_speech/models/object_list_inline_input_location.py index b367c2f99c..a42e959711 100644 --- a/src/oci/ai_speech/models/object_list_inline_input_location.py +++ b/src/oci/ai_speech/models/object_list_inline_input_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/object_location.py b/src/oci/ai_speech/models/object_location.py index ef9d1f5caf..3f16966c8f 100644 --- a/src/oci/ai_speech/models/object_location.py +++ b/src/oci/ai_speech/models/object_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/object_storage_dataset.py b/src/oci/ai_speech/models/object_storage_dataset.py index 929c2d0063..72915aa734 100644 --- a/src/oci/ai_speech/models/object_storage_dataset.py +++ b/src/oci/ai_speech/models/object_storage_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/output_location.py b/src/oci/ai_speech/models/output_location.py index 7bf3c46916..c78cb818aa 100644 --- a/src/oci/ai_speech/models/output_location.py +++ b/src/oci/ai_speech/models/output_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/profanity_transcription_filter.py b/src/oci/ai_speech/models/profanity_transcription_filter.py index ebdf17eb3e..27539b3edc 100644 --- a/src/oci/ai_speech/models/profanity_transcription_filter.py +++ b/src/oci/ai_speech/models/profanity_transcription_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/pronunciation.py b/src/oci/ai_speech/models/pronunciation.py index b957879b09..7fe40bd45a 100644 --- a/src/oci/ai_speech/models/pronunciation.py +++ b/src/oci/ai_speech/models/pronunciation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message.py b/src/oci/ai_speech/models/realtime_message.py index 2666554a4f..8920285485 100644 --- a/src/oci/ai_speech/models/realtime_message.py +++ b/src/oci/ai_speech/models/realtime_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_ack_audio.py b/src/oci/ai_speech/models/realtime_message_ack_audio.py index 3813c0819a..622983071d 100644 --- a/src/oci/ai_speech/models/realtime_message_ack_audio.py +++ b/src/oci/ai_speech/models/realtime_message_ack_audio.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_ack_audio_details.py b/src/oci/ai_speech/models/realtime_message_ack_audio_details.py index 4210d14e69..d0487ad30e 100644 --- a/src/oci/ai_speech/models/realtime_message_ack_audio_details.py +++ b/src/oci/ai_speech/models/realtime_message_ack_audio_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_authentication.py b/src/oci/ai_speech/models/realtime_message_authentication.py index a5d0bf8539..d9f35749d4 100644 --- a/src/oci/ai_speech/models/realtime_message_authentication.py +++ b/src/oci/ai_speech/models/realtime_message_authentication.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_authentication_credentials.py b/src/oci/ai_speech/models/realtime_message_authentication_credentials.py index 2b37ef86b5..97af48b08e 100644 --- a/src/oci/ai_speech/models/realtime_message_authentication_credentials.py +++ b/src/oci/ai_speech/models/realtime_message_authentication_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_authentication_token.py b/src/oci/ai_speech/models/realtime_message_authentication_token.py index f84191cbc5..35c61ed3b7 100644 --- a/src/oci/ai_speech/models/realtime_message_authentication_token.py +++ b/src/oci/ai_speech/models/realtime_message_authentication_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_connect.py b/src/oci/ai_speech/models/realtime_message_connect.py index 7271f47edb..bc7d456889 100644 --- a/src/oci/ai_speech/models/realtime_message_connect.py +++ b/src/oci/ai_speech/models/realtime_message_connect.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_error.py b/src/oci/ai_speech/models/realtime_message_error.py index 8522013cd3..23ad836fb7 100644 --- a/src/oci/ai_speech/models/realtime_message_error.py +++ b/src/oci/ai_speech/models/realtime_message_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_out.py b/src/oci/ai_speech/models/realtime_message_out.py index b751d06549..7183e111d1 100644 --- a/src/oci/ai_speech/models/realtime_message_out.py +++ b/src/oci/ai_speech/models/realtime_message_out.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_result.py b/src/oci/ai_speech/models/realtime_message_result.py index e1a755b5ae..fdaff0b3f1 100644 --- a/src/oci/ai_speech/models/realtime_message_result.py +++ b/src/oci/ai_speech/models/realtime_message_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_result_transcription.py b/src/oci/ai_speech/models/realtime_message_result_transcription.py index 01b7f97355..07bffb670d 100644 --- a/src/oci/ai_speech/models/realtime_message_result_transcription.py +++ b/src/oci/ai_speech/models/realtime_message_result_transcription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_result_transcription_token.py b/src/oci/ai_speech/models/realtime_message_result_transcription_token.py index 620891dcf5..2890d35346 100644 --- a/src/oci/ai_speech/models/realtime_message_result_transcription_token.py +++ b/src/oci/ai_speech/models/realtime_message_result_transcription_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_message_send_final_result.py b/src/oci/ai_speech/models/realtime_message_send_final_result.py index b29feb8e37..98d807fb27 100644 --- a/src/oci/ai_speech/models/realtime_message_send_final_result.py +++ b/src/oci/ai_speech/models/realtime_message_send_final_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_model_details.py b/src/oci/ai_speech/models/realtime_model_details.py index 21e77ea1b2..ca572b0f74 100644 --- a/src/oci/ai_speech/models/realtime_model_details.py +++ b/src/oci/ai_speech/models/realtime_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_parameters.py b/src/oci/ai_speech/models/realtime_parameters.py index a6d4d4d738..75fe0f7aa2 100644 --- a/src/oci/ai_speech/models/realtime_parameters.py +++ b/src/oci/ai_speech/models/realtime_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/realtime_session_token.py b/src/oci/ai_speech/models/realtime_session_token.py index 9940e822f8..5aeb5142df 100644 --- a/src/oci/ai_speech/models/realtime_session_token.py +++ b/src/oci/ai_speech/models/realtime_session_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/synthesize_speech_details.py b/src/oci/ai_speech/models/synthesize_speech_details.py index 1e1e068baa..5b6eea78d2 100644 --- a/src/oci/ai_speech/models/synthesize_speech_details.py +++ b/src/oci/ai_speech/models/synthesize_speech_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_filter.py b/src/oci/ai_speech/models/transcription_filter.py index 954d9d58e4..f565c82934 100644 --- a/src/oci/ai_speech/models/transcription_filter.py +++ b/src/oci/ai_speech/models/transcription_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_job.py b/src/oci/ai_speech/models/transcription_job.py index dbb9d1d7eb..030920a111 100644 --- a/src/oci/ai_speech/models/transcription_job.py +++ b/src/oci/ai_speech/models/transcription_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_job_collection.py b/src/oci/ai_speech/models/transcription_job_collection.py index 6d3cc84f7e..259c7eb654 100644 --- a/src/oci/ai_speech/models/transcription_job_collection.py +++ b/src/oci/ai_speech/models/transcription_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_job_summary.py b/src/oci/ai_speech/models/transcription_job_summary.py index aed428e997..99978f1aeb 100644 --- a/src/oci/ai_speech/models/transcription_job_summary.py +++ b/src/oci/ai_speech/models/transcription_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_model_details.py b/src/oci/ai_speech/models/transcription_model_details.py index 3f092964ab..ae1d7d828d 100644 --- a/src/oci/ai_speech/models/transcription_model_details.py +++ b/src/oci/ai_speech/models/transcription_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_normalization.py b/src/oci/ai_speech/models/transcription_normalization.py index 6131aee6b9..e0cbf7c07b 100644 --- a/src/oci/ai_speech/models/transcription_normalization.py +++ b/src/oci/ai_speech/models/transcription_normalization.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_settings.py b/src/oci/ai_speech/models/transcription_settings.py index 3d23446917..9a3d8f29fe 100644 --- a/src/oci/ai_speech/models/transcription_settings.py +++ b/src/oci/ai_speech/models/transcription_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_task.py b/src/oci/ai_speech/models/transcription_task.py index a998417bc4..e519f3c3d4 100644 --- a/src/oci/ai_speech/models/transcription_task.py +++ b/src/oci/ai_speech/models/transcription_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_task_collection.py b/src/oci/ai_speech/models/transcription_task_collection.py index c55478b7dd..6b484b4695 100644 --- a/src/oci/ai_speech/models/transcription_task_collection.py +++ b/src/oci/ai_speech/models/transcription_task_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/transcription_task_summary.py b/src/oci/ai_speech/models/transcription_task_summary.py index b57cfd5780..0d7562e2c9 100644 --- a/src/oci/ai_speech/models/transcription_task_summary.py +++ b/src/oci/ai_speech/models/transcription_task_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/tts_audio_config.py b/src/oci/ai_speech/models/tts_audio_config.py index a952d49af3..739054c698 100644 --- a/src/oci/ai_speech/models/tts_audio_config.py +++ b/src/oci/ai_speech/models/tts_audio_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/tts_base_audio_config.py b/src/oci/ai_speech/models/tts_base_audio_config.py index a90eb7a234..37098e7156 100644 --- a/src/oci/ai_speech/models/tts_base_audio_config.py +++ b/src/oci/ai_speech/models/tts_base_audio_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/tts_configuration.py b/src/oci/ai_speech/models/tts_configuration.py index c29cfcf08d..87571a5742 100644 --- a/src/oci/ai_speech/models/tts_configuration.py +++ b/src/oci/ai_speech/models/tts_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/tts_oracle_configuration.py b/src/oci/ai_speech/models/tts_oracle_configuration.py index 6ab7383b17..4a4e534d22 100644 --- a/src/oci/ai_speech/models/tts_oracle_configuration.py +++ b/src/oci/ai_speech/models/tts_oracle_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/tts_oracle_model_details.py b/src/oci/ai_speech/models/tts_oracle_model_details.py index 7ef7f3ccaa..a8de0a690e 100644 --- a/src/oci/ai_speech/models/tts_oracle_model_details.py +++ b/src/oci/ai_speech/models/tts_oracle_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/tts_oracle_speech_settings.py b/src/oci/ai_speech/models/tts_oracle_speech_settings.py index 3a6bf89e0a..365fda771f 100644 --- a/src/oci/ai_speech/models/tts_oracle_speech_settings.py +++ b/src/oci/ai_speech/models/tts_oracle_speech_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/tts_oracle_tts1_standard_model_details.py b/src/oci/ai_speech/models/tts_oracle_tts1_standard_model_details.py index 6e5ee200f1..15bbcc80ac 100644 --- a/src/oci/ai_speech/models/tts_oracle_tts1_standard_model_details.py +++ b/src/oci/ai_speech/models/tts_oracle_tts1_standard_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/tts_oracle_tts2_natural_model_details.py b/src/oci/ai_speech/models/tts_oracle_tts2_natural_model_details.py index fef08aee7b..f6fe0fad53 100644 --- a/src/oci/ai_speech/models/tts_oracle_tts2_natural_model_details.py +++ b/src/oci/ai_speech/models/tts_oracle_tts2_natural_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/update_customization_details.py b/src/oci/ai_speech/models/update_customization_details.py index 9423d1484e..d948735eb5 100644 --- a/src/oci/ai_speech/models/update_customization_details.py +++ b/src/oci/ai_speech/models/update_customization_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/update_transcription_job_details.py b/src/oci/ai_speech/models/update_transcription_job_details.py index 92e2f71c70..92162a447f 100644 --- a/src/oci/ai_speech/models/update_transcription_job_details.py +++ b/src/oci/ai_speech/models/update_transcription_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/voice_collection.py b/src/oci/ai_speech/models/voice_collection.py index e5156d2926..63bdc5433b 100644 --- a/src/oci/ai_speech/models/voice_collection.py +++ b/src/oci/ai_speech/models/voice_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_speech/models/voice_summary.py b/src/oci/ai_speech/models/voice_summary.py index 1a642c0c80..945c2422fd 100644 --- a/src/oci/ai_speech/models/voice_summary.py +++ b/src/oci/ai_speech/models/voice_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220101 diff --git a/src/oci/ai_vision/__init__.py b/src/oci/ai_vision/__init__.py index 24c3b40885..0b39e5980f 100644 --- a/src/oci/ai_vision/__init__.py +++ b/src/oci/ai_vision/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/ai_service_vision_client.py b/src/oci/ai_vision/ai_service_vision_client.py index 71646018b2..d7db952fc8 100644 --- a/src/oci/ai_vision/ai_service_vision_client.py +++ b/src/oci/ai_vision/ai_service_vision_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/ai_service_vision_client_composite_operations.py b/src/oci/ai_vision/ai_service_vision_client_composite_operations.py index 4233980af4..01a9b40caa 100644 --- a/src/oci/ai_vision/ai_service_vision_client_composite_operations.py +++ b/src/oci/ai_vision/ai_service_vision_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/__init__.py b/src/oci/ai_vision/models/__init__.py index 1a429813d0..bd063dde49 100644 --- a/src/oci/ai_vision/models/__init__.py +++ b/src/oci/ai_vision/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/analyze_document_details.py b/src/oci/ai_vision/models/analyze_document_details.py index 7eab0c2810..21020f4baf 100644 --- a/src/oci/ai_vision/models/analyze_document_details.py +++ b/src/oci/ai_vision/models/analyze_document_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/analyze_document_result.py b/src/oci/ai_vision/models/analyze_document_result.py index 3b9fdcb237..a0df39662b 100644 --- a/src/oci/ai_vision/models/analyze_document_result.py +++ b/src/oci/ai_vision/models/analyze_document_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/analyze_image_details.py b/src/oci/ai_vision/models/analyze_image_details.py index 64043bfef0..f19985af1f 100644 --- a/src/oci/ai_vision/models/analyze_image_details.py +++ b/src/oci/ai_vision/models/analyze_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/analyze_image_result.py b/src/oci/ai_vision/models/analyze_image_result.py index 3cc991f753..6cc55ade45 100644 --- a/src/oci/ai_vision/models/analyze_image_result.py +++ b/src/oci/ai_vision/models/analyze_image_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/analyze_video_result.py b/src/oci/ai_vision/models/analyze_video_result.py index d3c168fb4b..646bdc6196 100644 --- a/src/oci/ai_vision/models/analyze_video_result.py +++ b/src/oci/ai_vision/models/analyze_video_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/bounding_polygon.py b/src/oci/ai_vision/models/bounding_polygon.py index 3ad56f2980..211b14ac6b 100644 --- a/src/oci/ai_vision/models/bounding_polygon.py +++ b/src/oci/ai_vision/models/bounding_polygon.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/cell.py b/src/oci/ai_vision/models/cell.py index 445a032961..fd1cda8dd8 100644 --- a/src/oci/ai_vision/models/cell.py +++ b/src/oci/ai_vision/models/cell.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/change_model_compartment_details.py b/src/oci/ai_vision/models/change_model_compartment_details.py index 52daeaaec8..f544c20199 100644 --- a/src/oci/ai_vision/models/change_model_compartment_details.py +++ b/src/oci/ai_vision/models/change_model_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/change_project_compartment_details.py b/src/oci/ai_vision/models/change_project_compartment_details.py index 419f25372f..022783089b 100644 --- a/src/oci/ai_vision/models/change_project_compartment_details.py +++ b/src/oci/ai_vision/models/change_project_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/create_document_job_details.py b/src/oci/ai_vision/models/create_document_job_details.py index 30b6bc1e06..3abcf857bb 100644 --- a/src/oci/ai_vision/models/create_document_job_details.py +++ b/src/oci/ai_vision/models/create_document_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/create_image_job_details.py b/src/oci/ai_vision/models/create_image_job_details.py index 4ca90d0e78..5e30f91261 100644 --- a/src/oci/ai_vision/models/create_image_job_details.py +++ b/src/oci/ai_vision/models/create_image_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/create_model_details.py b/src/oci/ai_vision/models/create_model_details.py index 47e9f61eaa..5026963945 100644 --- a/src/oci/ai_vision/models/create_model_details.py +++ b/src/oci/ai_vision/models/create_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/create_project_details.py b/src/oci/ai_vision/models/create_project_details.py index 43b77d5aa7..e8b29442ff 100644 --- a/src/oci/ai_vision/models/create_project_details.py +++ b/src/oci/ai_vision/models/create_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/create_video_job_details.py b/src/oci/ai_vision/models/create_video_job_details.py index 3f1c3dd00c..c15ba48769 100644 --- a/src/oci/ai_vision/models/create_video_job_details.py +++ b/src/oci/ai_vision/models/create_video_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/data_science_labeling_dataset.py b/src/oci/ai_vision/models/data_science_labeling_dataset.py index 8d0df336c3..55c53f528c 100644 --- a/src/oci/ai_vision/models/data_science_labeling_dataset.py +++ b/src/oci/ai_vision/models/data_science_labeling_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/dataset.py b/src/oci/ai_vision/models/dataset.py index 5111126c8e..24dde9ae98 100644 --- a/src/oci/ai_vision/models/dataset.py +++ b/src/oci/ai_vision/models/dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/detected_document_type.py b/src/oci/ai_vision/models/detected_document_type.py index 4f5cb16b9d..28a07110ae 100644 --- a/src/oci/ai_vision/models/detected_document_type.py +++ b/src/oci/ai_vision/models/detected_document_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/detected_language.py b/src/oci/ai_vision/models/detected_language.py index aee5c619b6..e33fda57e7 100644 --- a/src/oci/ai_vision/models/detected_language.py +++ b/src/oci/ai_vision/models/detected_language.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/dimensions.py b/src/oci/ai_vision/models/dimensions.py index 957fbcde3d..6b003e023e 100644 --- a/src/oci/ai_vision/models/dimensions.py +++ b/src/oci/ai_vision/models/dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_classification_feature.py b/src/oci/ai_vision/models/document_classification_feature.py index 0749f3e485..7b0f851992 100644 --- a/src/oci/ai_vision/models/document_classification_feature.py +++ b/src/oci/ai_vision/models/document_classification_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_details.py b/src/oci/ai_vision/models/document_details.py index 4f28b161f6..8b5c28f96a 100644 --- a/src/oci/ai_vision/models/document_details.py +++ b/src/oci/ai_vision/models/document_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_feature.py b/src/oci/ai_vision/models/document_feature.py index 4173798a4f..5e88c3f3cc 100644 --- a/src/oci/ai_vision/models/document_feature.py +++ b/src/oci/ai_vision/models/document_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_field.py b/src/oci/ai_vision/models/document_field.py index 507ca12ba2..3c18edab67 100644 --- a/src/oci/ai_vision/models/document_field.py +++ b/src/oci/ai_vision/models/document_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_job.py b/src/oci/ai_vision/models/document_job.py index cee53ad756..aa6093bd70 100644 --- a/src/oci/ai_vision/models/document_job.py +++ b/src/oci/ai_vision/models/document_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_key_value_detection_feature.py b/src/oci/ai_vision/models/document_key_value_detection_feature.py index 5790e3d817..4b2d6798dc 100644 --- a/src/oci/ai_vision/models/document_key_value_detection_feature.py +++ b/src/oci/ai_vision/models/document_key_value_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_language_classification_feature.py b/src/oci/ai_vision/models/document_language_classification_feature.py index e5265db8d2..24d248fd2d 100644 --- a/src/oci/ai_vision/models/document_language_classification_feature.py +++ b/src/oci/ai_vision/models/document_language_classification_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_metadata.py b/src/oci/ai_vision/models/document_metadata.py index af6c335b8f..7c73ce4f8a 100644 --- a/src/oci/ai_vision/models/document_metadata.py +++ b/src/oci/ai_vision/models/document_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_table_detection_feature.py b/src/oci/ai_vision/models/document_table_detection_feature.py index e215daa95b..1ec43ba552 100644 --- a/src/oci/ai_vision/models/document_table_detection_feature.py +++ b/src/oci/ai_vision/models/document_table_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/document_text_detection_feature.py b/src/oci/ai_vision/models/document_text_detection_feature.py index 5c7a992471..798a522ccc 100644 --- a/src/oci/ai_vision/models/document_text_detection_feature.py +++ b/src/oci/ai_vision/models/document_text_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/face.py b/src/oci/ai_vision/models/face.py index 42416bbd39..92573c9275 100644 --- a/src/oci/ai_vision/models/face.py +++ b/src/oci/ai_vision/models/face.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/face_detection_feature.py b/src/oci/ai_vision/models/face_detection_feature.py index 8c295879a8..18f7b5d989 100644 --- a/src/oci/ai_vision/models/face_detection_feature.py +++ b/src/oci/ai_vision/models/face_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/field_label.py b/src/oci/ai_vision/models/field_label.py index d72f5b815e..1cab8988ec 100644 --- a/src/oci/ai_vision/models/field_label.py +++ b/src/oci/ai_vision/models/field_label.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/field_name.py b/src/oci/ai_vision/models/field_name.py index 187109ad38..60fdb07034 100644 --- a/src/oci/ai_vision/models/field_name.py +++ b/src/oci/ai_vision/models/field_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/field_value.py b/src/oci/ai_vision/models/field_value.py index 0824ad39d6..06900a8115 100644 --- a/src/oci/ai_vision/models/field_value.py +++ b/src/oci/ai_vision/models/field_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/image_classification_feature.py b/src/oci/ai_vision/models/image_classification_feature.py index a66defe6a5..37144bb551 100644 --- a/src/oci/ai_vision/models/image_classification_feature.py +++ b/src/oci/ai_vision/models/image_classification_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/image_details.py b/src/oci/ai_vision/models/image_details.py index 7c6a7c8628..c81191c2ab 100644 --- a/src/oci/ai_vision/models/image_details.py +++ b/src/oci/ai_vision/models/image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/image_feature.py b/src/oci/ai_vision/models/image_feature.py index 93545eac0e..3c6a6366f6 100644 --- a/src/oci/ai_vision/models/image_feature.py +++ b/src/oci/ai_vision/models/image_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/image_job.py b/src/oci/ai_vision/models/image_job.py index ca6b0ecd49..ab7d2532af 100644 --- a/src/oci/ai_vision/models/image_job.py +++ b/src/oci/ai_vision/models/image_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/image_object.py b/src/oci/ai_vision/models/image_object.py index f29a275def..90ca9adf8b 100644 --- a/src/oci/ai_vision/models/image_object.py +++ b/src/oci/ai_vision/models/image_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/image_object_detection_feature.py b/src/oci/ai_vision/models/image_object_detection_feature.py index 9a8f1cd68e..33591f39d5 100644 --- a/src/oci/ai_vision/models/image_object_detection_feature.py +++ b/src/oci/ai_vision/models/image_object_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/image_text.py b/src/oci/ai_vision/models/image_text.py index 8b324ae9f0..59f15f6fdb 100644 --- a/src/oci/ai_vision/models/image_text.py +++ b/src/oci/ai_vision/models/image_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/image_text_detection_feature.py b/src/oci/ai_vision/models/image_text_detection_feature.py index c873cc1210..f1094a277a 100644 --- a/src/oci/ai_vision/models/image_text_detection_feature.py +++ b/src/oci/ai_vision/models/image_text_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/inline_document_details.py b/src/oci/ai_vision/models/inline_document_details.py index c841235813..3d3d73a410 100644 --- a/src/oci/ai_vision/models/inline_document_details.py +++ b/src/oci/ai_vision/models/inline_document_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/inline_image_details.py b/src/oci/ai_vision/models/inline_image_details.py index 14db2f67c6..5b2d547c24 100644 --- a/src/oci/ai_vision/models/inline_image_details.py +++ b/src/oci/ai_vision/models/inline_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/input_location.py b/src/oci/ai_vision/models/input_location.py index 9a5c204fd8..5147071a81 100644 --- a/src/oci/ai_vision/models/input_location.py +++ b/src/oci/ai_vision/models/input_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/label.py b/src/oci/ai_vision/models/label.py index b1423c7c3f..4b00853e2c 100644 --- a/src/oci/ai_vision/models/label.py +++ b/src/oci/ai_vision/models/label.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/landmark.py b/src/oci/ai_vision/models/landmark.py index 5ec8b69444..561c6c1dda 100644 --- a/src/oci/ai_vision/models/landmark.py +++ b/src/oci/ai_vision/models/landmark.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/line.py b/src/oci/ai_vision/models/line.py index bb00346a26..5cbb827a64 100644 --- a/src/oci/ai_vision/models/line.py +++ b/src/oci/ai_vision/models/line.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/model.py b/src/oci/ai_vision/models/model.py index e10761828d..d6f4f9f1f9 100644 --- a/src/oci/ai_vision/models/model.py +++ b/src/oci/ai_vision/models/model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/model_collection.py b/src/oci/ai_vision/models/model_collection.py index b6f357fe11..01019e4a1b 100644 --- a/src/oci/ai_vision/models/model_collection.py +++ b/src/oci/ai_vision/models/model_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/model_summary.py b/src/oci/ai_vision/models/model_summary.py index 8bc72a272b..49dacc6751 100644 --- a/src/oci/ai_vision/models/model_summary.py +++ b/src/oci/ai_vision/models/model_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/normalized_vertex.py b/src/oci/ai_vision/models/normalized_vertex.py index 98de4a0197..eacf2cbd5e 100644 --- a/src/oci/ai_vision/models/normalized_vertex.py +++ b/src/oci/ai_vision/models/normalized_vertex.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/object_list_inline_input_location.py b/src/oci/ai_vision/models/object_list_inline_input_location.py index 9a993845fe..9944e8cbfd 100644 --- a/src/oci/ai_vision/models/object_list_inline_input_location.py +++ b/src/oci/ai_vision/models/object_list_inline_input_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/object_location.py b/src/oci/ai_vision/models/object_location.py index 89b7c433c7..09a585999a 100644 --- a/src/oci/ai_vision/models/object_location.py +++ b/src/oci/ai_vision/models/object_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/object_property.py b/src/oci/ai_vision/models/object_property.py index 1e3bf907b3..ce60b45a33 100644 --- a/src/oci/ai_vision/models/object_property.py +++ b/src/oci/ai_vision/models/object_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/object_storage_dataset.py b/src/oci/ai_vision/models/object_storage_dataset.py index 695372dafc..d31ea2e7d6 100644 --- a/src/oci/ai_vision/models/object_storage_dataset.py +++ b/src/oci/ai_vision/models/object_storage_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/object_storage_document_details.py b/src/oci/ai_vision/models/object_storage_document_details.py index 85d4acc126..43e5aa5f5d 100644 --- a/src/oci/ai_vision/models/object_storage_document_details.py +++ b/src/oci/ai_vision/models/object_storage_document_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/object_storage_image_details.py b/src/oci/ai_vision/models/object_storage_image_details.py index c2047a35d4..bc52daecc7 100644 --- a/src/oci/ai_vision/models/object_storage_image_details.py +++ b/src/oci/ai_vision/models/object_storage_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/ontology_class.py b/src/oci/ai_vision/models/ontology_class.py index 19bbcf34c2..0816337875 100644 --- a/src/oci/ai_vision/models/ontology_class.py +++ b/src/oci/ai_vision/models/ontology_class.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/output_location.py b/src/oci/ai_vision/models/output_location.py index c73eff40e2..705228f48c 100644 --- a/src/oci/ai_vision/models/output_location.py +++ b/src/oci/ai_vision/models/output_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/page.py b/src/oci/ai_vision/models/page.py index b86df88dcd..e052204fc2 100644 --- a/src/oci/ai_vision/models/page.py +++ b/src/oci/ai_vision/models/page.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/processing_error.py b/src/oci/ai_vision/models/processing_error.py index 8231a80ee1..412cf33c6e 100644 --- a/src/oci/ai_vision/models/processing_error.py +++ b/src/oci/ai_vision/models/processing_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/project.py b/src/oci/ai_vision/models/project.py index 55c31df083..32b1cc4433 100644 --- a/src/oci/ai_vision/models/project.py +++ b/src/oci/ai_vision/models/project.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/project_collection.py b/src/oci/ai_vision/models/project_collection.py index 0ace90035d..e240511d11 100644 --- a/src/oci/ai_vision/models/project_collection.py +++ b/src/oci/ai_vision/models/project_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/project_summary.py b/src/oci/ai_vision/models/project_summary.py index ebb2d5f59f..f822acd86b 100644 --- a/src/oci/ai_vision/models/project_summary.py +++ b/src/oci/ai_vision/models/project_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/table.py b/src/oci/ai_vision/models/table.py index 5a6ec16b7c..3d02c09126 100644 --- a/src/oci/ai_vision/models/table.py +++ b/src/oci/ai_vision/models/table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/table_row.py b/src/oci/ai_vision/models/table_row.py index 1fa425a7c4..f671d1bfbc 100644 --- a/src/oci/ai_vision/models/table_row.py +++ b/src/oci/ai_vision/models/table_row.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/update_model_details.py b/src/oci/ai_vision/models/update_model_details.py index 3a80e20227..f850236c27 100644 --- a/src/oci/ai_vision/models/update_model_details.py +++ b/src/oci/ai_vision/models/update_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/update_project_details.py b/src/oci/ai_vision/models/update_project_details.py index ae798f6a55..b36949d5cd 100644 --- a/src/oci/ai_vision/models/update_project_details.py +++ b/src/oci/ai_vision/models/update_project_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/value_array.py b/src/oci/ai_vision/models/value_array.py index cec0539db7..5ee1442116 100644 --- a/src/oci/ai_vision/models/value_array.py +++ b/src/oci/ai_vision/models/value_array.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/value_date.py b/src/oci/ai_vision/models/value_date.py index ca0053acd6..9b5d8a6a8c 100644 --- a/src/oci/ai_vision/models/value_date.py +++ b/src/oci/ai_vision/models/value_date.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/value_integer.py b/src/oci/ai_vision/models/value_integer.py index 124cc91a5a..74d8da71f4 100644 --- a/src/oci/ai_vision/models/value_integer.py +++ b/src/oci/ai_vision/models/value_integer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/value_number.py b/src/oci/ai_vision/models/value_number.py index 811ac6bb03..1e10c266e7 100644 --- a/src/oci/ai_vision/models/value_number.py +++ b/src/oci/ai_vision/models/value_number.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/value_phone_number.py b/src/oci/ai_vision/models/value_phone_number.py index 8bab8a73fa..75b976add4 100644 --- a/src/oci/ai_vision/models/value_phone_number.py +++ b/src/oci/ai_vision/models/value_phone_number.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/value_string.py b/src/oci/ai_vision/models/value_string.py index 0e60f70e81..90965012dc 100644 --- a/src/oci/ai_vision/models/value_string.py +++ b/src/oci/ai_vision/models/value_string.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/value_time.py b/src/oci/ai_vision/models/value_time.py index 99926b2244..008a51d491 100644 --- a/src/oci/ai_vision/models/value_time.py +++ b/src/oci/ai_vision/models/value_time.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_face.py b/src/oci/ai_vision/models/video_face.py index d04658d1b9..f19921aca1 100644 --- a/src/oci/ai_vision/models/video_face.py +++ b/src/oci/ai_vision/models/video_face.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_face_detection_feature.py b/src/oci/ai_vision/models/video_face_detection_feature.py index 0cd02472c6..9888ea622c 100644 --- a/src/oci/ai_vision/models/video_face_detection_feature.py +++ b/src/oci/ai_vision/models/video_face_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_face_frame.py b/src/oci/ai_vision/models/video_face_frame.py index 7e68b35527..4e556768a2 100644 --- a/src/oci/ai_vision/models/video_face_frame.py +++ b/src/oci/ai_vision/models/video_face_frame.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_face_segment.py b/src/oci/ai_vision/models/video_face_segment.py index f7ff98d477..a7c6fc4f66 100644 --- a/src/oci/ai_vision/models/video_face_segment.py +++ b/src/oci/ai_vision/models/video_face_segment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_feature.py b/src/oci/ai_vision/models/video_feature.py index 457fd43171..554dec6016 100644 --- a/src/oci/ai_vision/models/video_feature.py +++ b/src/oci/ai_vision/models/video_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_job.py b/src/oci/ai_vision/models/video_job.py index 37590404e2..6c12a9dda4 100644 --- a/src/oci/ai_vision/models/video_job.py +++ b/src/oci/ai_vision/models/video_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_label.py b/src/oci/ai_vision/models/video_label.py index 6d76745c75..57b198ed1e 100644 --- a/src/oci/ai_vision/models/video_label.py +++ b/src/oci/ai_vision/models/video_label.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_label_detection_feature.py b/src/oci/ai_vision/models/video_label_detection_feature.py index 5fe924e3f7..f24226ed0f 100644 --- a/src/oci/ai_vision/models/video_label_detection_feature.py +++ b/src/oci/ai_vision/models/video_label_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_label_segment.py b/src/oci/ai_vision/models/video_label_segment.py index 376d4ededa..f73fd48bbb 100644 --- a/src/oci/ai_vision/models/video_label_segment.py +++ b/src/oci/ai_vision/models/video_label_segment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_metadata.py b/src/oci/ai_vision/models/video_metadata.py index 218fb7aab2..d9acfbc83d 100644 --- a/src/oci/ai_vision/models/video_metadata.py +++ b/src/oci/ai_vision/models/video_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_object.py b/src/oci/ai_vision/models/video_object.py index d83cb8eb61..a0a068cff9 100644 --- a/src/oci/ai_vision/models/video_object.py +++ b/src/oci/ai_vision/models/video_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_object_detection_feature.py b/src/oci/ai_vision/models/video_object_detection_feature.py index 527841801a..c97d6106a3 100644 --- a/src/oci/ai_vision/models/video_object_detection_feature.py +++ b/src/oci/ai_vision/models/video_object_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_object_frame.py b/src/oci/ai_vision/models/video_object_frame.py index 8424bc5a8d..b0cac5e6cd 100644 --- a/src/oci/ai_vision/models/video_object_frame.py +++ b/src/oci/ai_vision/models/video_object_frame.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_object_segment.py b/src/oci/ai_vision/models/video_object_segment.py index 25050ab158..7352e069d2 100644 --- a/src/oci/ai_vision/models/video_object_segment.py +++ b/src/oci/ai_vision/models/video_object_segment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_object_tracking_feature.py b/src/oci/ai_vision/models/video_object_tracking_feature.py index 1d4c88c9d1..300ce47fd1 100644 --- a/src/oci/ai_vision/models/video_object_tracking_feature.py +++ b/src/oci/ai_vision/models/video_object_tracking_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_segment.py b/src/oci/ai_vision/models/video_segment.py index 6f0bdf1415..87a1f7019e 100644 --- a/src/oci/ai_vision/models/video_segment.py +++ b/src/oci/ai_vision/models/video_segment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_text.py b/src/oci/ai_vision/models/video_text.py index ee17ffa802..0346a8f138 100644 --- a/src/oci/ai_vision/models/video_text.py +++ b/src/oci/ai_vision/models/video_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_text_detection_feature.py b/src/oci/ai_vision/models/video_text_detection_feature.py index 7595bc74ab..d04f6c96e8 100644 --- a/src/oci/ai_vision/models/video_text_detection_feature.py +++ b/src/oci/ai_vision/models/video_text_detection_feature.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_text_frame.py b/src/oci/ai_vision/models/video_text_frame.py index 487c7e85a1..72693bb772 100644 --- a/src/oci/ai_vision/models/video_text_frame.py +++ b/src/oci/ai_vision/models/video_text_frame.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_text_segment.py b/src/oci/ai_vision/models/video_text_segment.py index 8050d1d5ea..7af6d08290 100644 --- a/src/oci/ai_vision/models/video_text_segment.py +++ b/src/oci/ai_vision/models/video_text_segment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_tracked_object.py b/src/oci/ai_vision/models/video_tracked_object.py index fd73dfc6f8..cc323a41be 100644 --- a/src/oci/ai_vision/models/video_tracked_object.py +++ b/src/oci/ai_vision/models/video_tracked_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_tracked_object_properties.py b/src/oci/ai_vision/models/video_tracked_object_properties.py index 5a947f21f0..9c6b4e8289 100644 --- a/src/oci/ai_vision/models/video_tracked_object_properties.py +++ b/src/oci/ai_vision/models/video_tracked_object_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_tracked_object_segment.py b/src/oci/ai_vision/models/video_tracked_object_segment.py index 47b6f404e3..c14d4ccf9b 100644 --- a/src/oci/ai_vision/models/video_tracked_object_segment.py +++ b/src/oci/ai_vision/models/video_tracked_object_segment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/video_tracking_frame.py b/src/oci/ai_vision/models/video_tracking_frame.py index 7e3f379ef1..41fd0425ca 100644 --- a/src/oci/ai_vision/models/video_tracking_frame.py +++ b/src/oci/ai_vision/models/video_tracking_frame.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/word.py b/src/oci/ai_vision/models/word.py index 0edf8749ac..70dd04a852 100644 --- a/src/oci/ai_vision/models/word.py +++ b/src/oci/ai_vision/models/word.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/work_request.py b/src/oci/ai_vision/models/work_request.py index 74ea3b9f46..9316643bc3 100644 --- a/src/oci/ai_vision/models/work_request.py +++ b/src/oci/ai_vision/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/work_request_error.py b/src/oci/ai_vision/models/work_request_error.py index 235efaf85b..6d4d0fce5d 100644 --- a/src/oci/ai_vision/models/work_request_error.py +++ b/src/oci/ai_vision/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/work_request_error_collection.py b/src/oci/ai_vision/models/work_request_error_collection.py index 72643ce689..4a0f14bdf6 100644 --- a/src/oci/ai_vision/models/work_request_error_collection.py +++ b/src/oci/ai_vision/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/work_request_log_entry.py b/src/oci/ai_vision/models/work_request_log_entry.py index 4fe0456c06..c7cd04a819 100644 --- a/src/oci/ai_vision/models/work_request_log_entry.py +++ b/src/oci/ai_vision/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/work_request_log_entry_collection.py b/src/oci/ai_vision/models/work_request_log_entry_collection.py index 028525cd14..9753332b21 100644 --- a/src/oci/ai_vision/models/work_request_log_entry_collection.py +++ b/src/oci/ai_vision/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/work_request_resource.py b/src/oci/ai_vision/models/work_request_resource.py index 290bab3056..ae09cb6288 100644 --- a/src/oci/ai_vision/models/work_request_resource.py +++ b/src/oci/ai_vision/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/work_request_summary.py b/src/oci/ai_vision/models/work_request_summary.py index 953f9f8eaf..17da169a87 100644 --- a/src/oci/ai_vision/models/work_request_summary.py +++ b/src/oci/ai_vision/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/ai_vision/models/work_request_summary_collection.py b/src/oci/ai_vision/models/work_request_summary_collection.py index a6eb55fdce..3ec55f41ec 100644 --- a/src/oci/ai_vision/models/work_request_summary_collection.py +++ b/src/oci/ai_vision/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/alloy.py b/src/oci/alloy.py index 82a8130911..5f9c01b8e6 100644 --- a/src/oci/alloy.py +++ b/src/oci/alloy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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/__init__.py b/src/oci/analytics/__init__.py index 0c8c19f78e..763748613c 100644 --- a/src/oci/analytics/__init__.py +++ b/src/oci/analytics/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/analytics_client.py b/src/oci/analytics/analytics_client.py index 394678c315..b9b0517be8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/analytics_client_composite_operations.py b/src/oci/analytics/analytics_client_composite_operations.py index 671eaf5e54..78b97cd5df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/__init__.py b/src/oci/analytics/models/__init__.py index 75c302eeb7..f216e98642 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/analytics_instance.py b/src/oci/analytics/models/analytics_instance.py index 813ab64e4b..891b7d05bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/analytics_instance_summary.py b/src/oci/analytics/models/analytics_instance_summary.py index 0bc59306e4..4b7a78db5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/capacity.py b/src/oci/analytics/models/capacity.py index 2b90a62c5a..c84b67d150 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 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 ab0ccc0e13..04da1870c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/change_compartment_details.py b/src/oci/analytics/models/change_compartment_details.py index 6b80395005..260edd1b86 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/create_analytics_instance_details.py b/src/oci/analytics/models/create_analytics_instance_details.py index a395c16c8f..d68d6e9155 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 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 62a5f802d4..2157054750 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/create_vanity_url_details.py b/src/oci/analytics/models/create_vanity_url_details.py index 4352f401ee..c5a50b5d55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/network_endpoint_details.py b/src/oci/analytics/models/network_endpoint_details.py index f8e23938bd..846ea98be6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/private_access_channel.py b/src/oci/analytics/models/private_access_channel.py index 09a65f76eb..d1884fb0cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/private_endpoint_details.py b/src/oci/analytics/models/private_endpoint_details.py index 0d6fd296d3..7e78270fea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/private_source_dns_zone.py b/src/oci/analytics/models/private_source_dns_zone.py index fc7a75e8b8..eb3123555b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/private_source_scan_host.py b/src/oci/analytics/models/private_source_scan_host.py index 7a9d6cc5e9..3df1c9a369 100644 --- a/src/oci/analytics/models/private_source_scan_host.py +++ b/src/oci/analytics/models/private_source_scan_host.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/public_endpoint_details.py b/src/oci/analytics/models/public_endpoint_details.py index f3edd5f1d1..d86ace88b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/scale_analytics_instance_details.py b/src/oci/analytics/models/scale_analytics_instance_details.py index b7dda9cd3f..c5dc5bc28e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/set_feature_bundle_details.py b/src/oci/analytics/models/set_feature_bundle_details.py index 255938b0b7..2a1dee4ebf 100644 --- a/src/oci/analytics/models/set_feature_bundle_details.py +++ b/src/oci/analytics/models/set_feature_bundle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/set_kms_key_details.py b/src/oci/analytics/models/set_kms_key_details.py index 022c8aa16e..dd22b3340f 100644 --- a/src/oci/analytics/models/set_kms_key_details.py +++ b/src/oci/analytics/models/set_kms_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/update_analytics_instance_details.py b/src/oci/analytics/models/update_analytics_instance_details.py index 7186498787..b383b61624 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 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 5209051974..fab2d96a32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/update_vanity_url_details.py b/src/oci/analytics/models/update_vanity_url_details.py index 234030b96f..7243567cfd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/vanity_url_details.py b/src/oci/analytics/models/vanity_url_details.py index 1d3e3e21d6..a2071028cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/virtual_cloud_network.py b/src/oci/analytics/models/virtual_cloud_network.py index 1a1e948bce..09d69e42c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/work_request.py b/src/oci/analytics/models/work_request.py index 1a07b94645..24f0199877 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/work_request_error.py b/src/oci/analytics/models/work_request_error.py index dbe75f1930..23999cd9ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/work_request_log.py b/src/oci/analytics/models/work_request_log.py index b1b505661b..fb7e3756a7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/work_request_resource.py b/src/oci/analytics/models/work_request_resource.py index 585904cac3..e18b734b2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/analytics/models/work_request_summary.py b/src/oci/analytics/models/work_request_summary.py index cf769d7e13..e5d0e1d21d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190331 diff --git a/src/oci/announcements_service/__init__.py b/src/oci/announcements_service/__init__.py index 51215b3b01..dc0fdb01a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/announcement_client.py b/src/oci/announcements_service/announcement_client.py index 07654084e8..95b6bfc5d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/announcement_client_composite_operations.py b/src/oci/announcements_service/announcement_client_composite_operations.py index 5905fe6ae3..9b3072497a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/announcement_subscription_client.py b/src/oci/announcements_service/announcement_subscription_client.py index 8a5660778c..83c720d41f 100644 --- a/src/oci/announcements_service/announcement_subscription_client.py +++ b/src/oci/announcements_service/announcement_subscription_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/announcement_subscription_client_composite_operations.py b/src/oci/announcements_service/announcement_subscription_client_composite_operations.py index b48bda7529..67ab7585b9 100644 --- a/src/oci/announcements_service/announcement_subscription_client_composite_operations.py +++ b/src/oci/announcements_service/announcement_subscription_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/announcements_preferences_client.py b/src/oci/announcements_service/announcements_preferences_client.py index 3431b1aa04..48ab148461 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 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 2221ddebc8..dbcf4a51a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/__init__.py b/src/oci/announcements_service/models/__init__.py index b5cdf85a01..4b28d5cc5a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/affected_resource.py b/src/oci/announcements_service/models/affected_resource.py index 89b508776c..18540d99da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/announcement.py b/src/oci/announcements_service/models/announcement.py index 4459c2c947..ee984e4a48 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/announcement_compartment.py b/src/oci/announcements_service/models/announcement_compartment.py index b8569ca112..3d4a456af4 100644 --- a/src/oci/announcements_service/models/announcement_compartment.py +++ b/src/oci/announcements_service/models/announcement_compartment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/announcement_subscription.py b/src/oci/announcements_service/models/announcement_subscription.py index 3decb5e2ec..131c00caa4 100644 --- a/src/oci/announcements_service/models/announcement_subscription.py +++ b/src/oci/announcements_service/models/announcement_subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/announcement_subscription_collection.py b/src/oci/announcements_service/models/announcement_subscription_collection.py index 4f34e8a3b4..e3fee90bd9 100644 --- a/src/oci/announcements_service/models/announcement_subscription_collection.py +++ b/src/oci/announcements_service/models/announcement_subscription_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/announcement_subscription_summary.py b/src/oci/announcements_service/models/announcement_subscription_summary.py index df81ec8fa2..a5c9553e9c 100644 --- a/src/oci/announcements_service/models/announcement_subscription_summary.py +++ b/src/oci/announcements_service/models/announcement_subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/announcement_summary.py b/src/oci/announcements_service/models/announcement_summary.py index 753c9da0b6..1cf6235cd5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 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 748b6a6d53..026973d475 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/announcements_collection.py b/src/oci/announcements_service/models/announcements_collection.py index d62301cb44..35c54a3d59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/announcements_preferences.py b/src/oci/announcements_service/models/announcements_preferences.py index 6bfd759662..b54d40c5be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/announcements_preferences_summary.py b/src/oci/announcements_service/models/announcements_preferences_summary.py index ef7f25ec03..1a80904970 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/base_announcement.py b/src/oci/announcements_service/models/base_announcement.py index ad7aa852ab..1bb2e81371 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/base_announcements_preferences.py b/src/oci/announcements_service/models/base_announcements_preferences.py index 907584dad0..0b8c5d7a29 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 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 81e0ed3c93..11d4be515a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/base_service.py b/src/oci/announcements_service/models/base_service.py index 3584fd1eb5..4f03252068 100644 --- a/src/oci/announcements_service/models/base_service.py +++ b/src/oci/announcements_service/models/base_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/change_announcement_subscription_compartment_details.py b/src/oci/announcements_service/models/change_announcement_subscription_compartment_details.py index cf9674bc50..bce5b71354 100644 --- a/src/oci/announcements_service/models/change_announcement_subscription_compartment_details.py +++ b/src/oci/announcements_service/models/change_announcement_subscription_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/create_announcement_subscription_details.py b/src/oci/announcements_service/models/create_announcement_subscription_details.py index 26ca98c8c8..47e62454fc 100644 --- a/src/oci/announcements_service/models/create_announcement_subscription_details.py +++ b/src/oci/announcements_service/models/create_announcement_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 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 f0bbd7bb47..d802dbae7a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/create_filter_group_details.py b/src/oci/announcements_service/models/create_filter_group_details.py index df9519c57b..3af294f792 100644 --- a/src/oci/announcements_service/models/create_filter_group_details.py +++ b/src/oci/announcements_service/models/create_filter_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/filter.py b/src/oci/announcements_service/models/filter.py index 784a74b444..7cf537b151 100644 --- a/src/oci/announcements_service/models/filter.py +++ b/src/oci/announcements_service/models/filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/filter_group.py b/src/oci/announcements_service/models/filter_group.py index af41047f63..c45be73111 100644 --- a/src/oci/announcements_service/models/filter_group.py +++ b/src/oci/announcements_service/models/filter_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/filter_group_details.py b/src/oci/announcements_service/models/filter_group_details.py index 3cdae9a14d..1004bad610 100644 --- a/src/oci/announcements_service/models/filter_group_details.py +++ b/src/oci/announcements_service/models/filter_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/model_property.py b/src/oci/announcements_service/models/model_property.py index 7ca5df02b4..e2aab7e216 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/notifications_summary.py b/src/oci/announcements_service/models/notifications_summary.py index a95cf2292d..5a0749a3ec 100644 --- a/src/oci/announcements_service/models/notifications_summary.py +++ b/src/oci/announcements_service/models/notifications_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/service.py b/src/oci/announcements_service/models/service.py index ae9fa54b5a..8784bb269d 100644 --- a/src/oci/announcements_service/models/service.py +++ b/src/oci/announcements_service/models/service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/service_summary.py b/src/oci/announcements_service/models/service_summary.py index c68711ebc5..ea6a10b521 100644 --- a/src/oci/announcements_service/models/service_summary.py +++ b/src/oci/announcements_service/models/service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/services_collection.py b/src/oci/announcements_service/models/services_collection.py index 80aa2a9f7f..d885d26a42 100644 --- a/src/oci/announcements_service/models/services_collection.py +++ b/src/oci/announcements_service/models/services_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/update_announcement_subscription_details.py b/src/oci/announcements_service/models/update_announcement_subscription_details.py index 89329ca3f2..626b6b052b 100644 --- a/src/oci/announcements_service/models/update_announcement_subscription_details.py +++ b/src/oci/announcements_service/models/update_announcement_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 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 b6e891ddbc..7efe6ad39e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/models/update_filter_group_details.py b/src/oci/announcements_service/models/update_filter_group_details.py index ebfa9495a0..382d20e51b 100644 --- a/src/oci/announcements_service/models/update_filter_group_details.py +++ b/src/oci/announcements_service/models/update_filter_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/service_client.py b/src/oci/announcements_service/service_client.py index 40dfaa7b71..1cd0fa4e22 100644 --- a/src/oci/announcements_service/service_client.py +++ b/src/oci/announcements_service/service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/announcements_service/service_client_composite_operations.py b/src/oci/announcements_service/service_client_composite_operations.py index be10f14838..583ceecb0f 100644 --- a/src/oci/announcements_service/service_client_composite_operations.py +++ b/src/oci/announcements_service/service_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 0.0.1 diff --git a/src/oci/apigateway/__init__.py b/src/oci/apigateway/__init__.py index edced7673e..ae7dde4387 100644 --- a/src/oci/apigateway/__init__.py +++ b/src/oci/apigateway/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/api_gateway_client.py b/src/oci/apigateway/api_gateway_client.py index 93e7d0b712..8584b1581d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/api_gateway_client_composite_operations.py b/src/oci/apigateway/api_gateway_client_composite_operations.py index 901dcb12ee..350563c897 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/deployment_client.py b/src/oci/apigateway/deployment_client.py index c7874b912a..251b417d29 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/deployment_client_composite_operations.py b/src/oci/apigateway/deployment_client_composite_operations.py index 7ee16de0ba..53b0e0fc8b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/gateway_client.py b/src/oci/apigateway/gateway_client.py index 74c8b384e7..ac1e23d06c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/gateway_client_composite_operations.py b/src/oci/apigateway/gateway_client_composite_operations.py index e4a54461f2..34cab5ae2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/__init__.py b/src/oci/apigateway/models/__init__.py index c12b06a5fb..fa8c2c8f38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/access_log_policy.py b/src/oci/apigateway/models/access_log_policy.py index 829963b6bb..edf49c962f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/additional_validation_policy.py b/src/oci/apigateway/models/additional_validation_policy.py index a52686473c..e7f05f568b 100644 --- a/src/oci/apigateway/models/additional_validation_policy.py +++ b/src/oci/apigateway/models/additional_validation_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/anonymous_route_authorization_policy.py b/src/oci/apigateway/models/anonymous_route_authorization_policy.py index effa6afcb7..f45f2b4452 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 c853174358..514ad3dd91 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/any_of_selection_key.py b/src/oci/apigateway/models/any_of_selection_key.py index fccc6b21fe..91d4873b73 100644 --- a/src/oci/apigateway/models/any_of_selection_key.py +++ b/src/oci/apigateway/models/any_of_selection_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api.py b/src/oci/apigateway/models/api.py index f4755f1992..d22728a126 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_collection.py b/src/oci/apigateway/models/api_collection.py index 5a87baf9b4..33fc6c9e40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_specification.py b/src/oci/apigateway/models/api_specification.py index 21bcfcd4fb..0329be6055 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_specification_logging_policies.py b/src/oci/apigateway/models/api_specification_logging_policies.py index a6e6c5af28..3ad21229c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_specification_request_policies.py b/src/oci/apigateway/models/api_specification_request_policies.py index af8907150d..4e07f1b443 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_specification_route.py b/src/oci/apigateway/models/api_specification_route.py index 97aaa5dc32..0477af829d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_specification_route_backend.py b/src/oci/apigateway/models/api_specification_route_backend.py index 02b0e7a8c1..fb41067d47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 76caadc3c1..a51274e693 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 34e00772d9..600e4d9123 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_summary.py b/src/oci/apigateway/models/api_summary.py index db294827e5..b4ea0cec47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_validation_detail.py b/src/oci/apigateway/models/api_validation_detail.py index 1cdc41fb75..5b49b71b44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_validation_details.py b/src/oci/apigateway/models/api_validation_details.py index e725e8f8ef..67f4b6ffb0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_validation_result.py b/src/oci/apigateway/models/api_validation_result.py index 599137f498..28a4a3f4b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/api_validations.py b/src/oci/apigateway/models/api_validations.py index 988305032e..5d50edd0da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 3c2d4ffaa6..589a9b5256 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/authentication_policy.py b/src/oci/apigateway/models/authentication_policy.py index 52ca9f7692..fa67ec3974 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/authentication_server_policy.py b/src/oci/apigateway/models/authentication_server_policy.py index 5303c60097..93e0a15263 100644 --- a/src/oci/apigateway/models/authentication_server_policy.py +++ b/src/oci/apigateway/models/authentication_server_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/body_validation_request_policy.py b/src/oci/apigateway/models/body_validation_request_policy.py index 4c57401c92..9a9ab045c0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/ca_bundle.py b/src/oci/apigateway/models/ca_bundle.py index c2d2daea69..033bad9777 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/certificate.py b/src/oci/apigateway/models/certificate.py index b74a4cc85a..f07c6b090d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/certificate_collection.py b/src/oci/apigateway/models/certificate_collection.py index c0933d47f7..eaab00b54d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/certificate_summary.py b/src/oci/apigateway/models/certificate_summary.py index 7479a5d4ba..536e92dc68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/certificates_ca_bundle.py b/src/oci/apigateway/models/certificates_ca_bundle.py index 3549e90ba0..3db63dee2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/certificates_certificate_authority.py b/src/oci/apigateway/models/certificates_certificate_authority.py index 213d8d919c..5f87bcd3e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/change_api_compartment_details.py b/src/oci/apigateway/models/change_api_compartment_details.py index aa369c93d0..4f9d515d28 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/change_certificate_compartment_details.py b/src/oci/apigateway/models/change_certificate_compartment_details.py index c6e2e5f32d..dd313f4c5c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/change_deployment_compartment_details.py b/src/oci/apigateway/models/change_deployment_compartment_details.py index 2f3dd7b465..6585a833ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/change_gateway_compartment_details.py b/src/oci/apigateway/models/change_gateway_compartment_details.py index 5a711089e0..29ceddef32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/change_subscriber_compartment_details.py b/src/oci/apigateway/models/change_subscriber_compartment_details.py index b9c5c73c4d..8bc8fd959b 100644 --- a/src/oci/apigateway/models/change_subscriber_compartment_details.py +++ b/src/oci/apigateway/models/change_subscriber_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/change_usage_plan_compartment_details.py b/src/oci/apigateway/models/change_usage_plan_compartment_details.py index 90228f0a0e..06165a895f 100644 --- a/src/oci/apigateway/models/change_usage_plan_compartment_details.py +++ b/src/oci/apigateway/models/change_usage_plan_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/client.py b/src/oci/apigateway/models/client.py index f8b7a6734d..ef8da68509 100644 --- a/src/oci/apigateway/models/client.py +++ b/src/oci/apigateway/models/client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/client_app_details.py b/src/oci/apigateway/models/client_app_details.py index 1d515d731f..35b2f0877a 100644 --- a/src/oci/apigateway/models/client_app_details.py +++ b/src/oci/apigateway/models/client_app_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/client_summary.py b/src/oci/apigateway/models/client_summary.py index 51c12e73b1..aeaa6b3895 100644 --- a/src/oci/apigateway/models/client_summary.py +++ b/src/oci/apigateway/models/client_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/content_validation.py b/src/oci/apigateway/models/content_validation.py index 820a78aecd..017a6c5bae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/cors_policy.py b/src/oci/apigateway/models/cors_policy.py index f9e3788004..fa45d4578e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/create_api_details.py b/src/oci/apigateway/models/create_api_details.py index 32aa93d380..ca70423bfa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/create_certificate_details.py b/src/oci/apigateway/models/create_certificate_details.py index 89ce6cf48f..fbad2304d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/create_deployment_details.py b/src/oci/apigateway/models/create_deployment_details.py index 500ed6b5ea..0dcfb2764e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/create_gateway_details.py b/src/oci/apigateway/models/create_gateway_details.py index a3df8ce0ac..24c0d430bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/create_sdk_details.py b/src/oci/apigateway/models/create_sdk_details.py index c3cceb4062..b108c2efea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/create_subscriber_details.py b/src/oci/apigateway/models/create_subscriber_details.py index 28f64ec46e..5b5c357af5 100644 --- a/src/oci/apigateway/models/create_subscriber_details.py +++ b/src/oci/apigateway/models/create_subscriber_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/create_usage_plan_details.py b/src/oci/apigateway/models/create_usage_plan_details.py index c481b92118..5b96753086 100644 --- a/src/oci/apigateway/models/create_usage_plan_details.py +++ b/src/oci/apigateway/models/create_usage_plan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/custom_authentication_policy.py b/src/oci/apigateway/models/custom_authentication_policy.py index 48dc49b8f3..f1d821db92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/custom_client_app_details.py b/src/oci/apigateway/models/custom_client_app_details.py index 0d085fa788..7908ab79a7 100644 --- a/src/oci/apigateway/models/custom_client_app_details.py +++ b/src/oci/apigateway/models/custom_client_app_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/deployment.py b/src/oci/apigateway/models/deployment.py index e251f64517..7617e6fe07 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/deployment_collection.py b/src/oci/apigateway/models/deployment_collection.py index af1b2f3c2e..a4e1953a55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/deployment_summary.py b/src/oci/apigateway/models/deployment_summary.py index a3d2073dcc..253051c7ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/discovery_uri_source_uri_details.py b/src/oci/apigateway/models/discovery_uri_source_uri_details.py index 7df6a6eb2b..a5f9de541a 100644 --- a/src/oci/apigateway/models/discovery_uri_source_uri_details.py +++ b/src/oci/apigateway/models/discovery_uri_source_uri_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/dynamic_authentication_policy.py b/src/oci/apigateway/models/dynamic_authentication_policy.py index 03a207cc45..d84990dad5 100644 --- a/src/oci/apigateway/models/dynamic_authentication_policy.py +++ b/src/oci/apigateway/models/dynamic_authentication_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/dynamic_routing_backend.py b/src/oci/apigateway/models/dynamic_routing_backend.py index 3c8a950c45..8cc5ae9531 100644 --- a/src/oci/apigateway/models/dynamic_routing_backend.py +++ b/src/oci/apigateway/models/dynamic_routing_backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/dynamic_routing_type_routing_backend.py b/src/oci/apigateway/models/dynamic_routing_type_routing_backend.py index c6ac9c4558..1d7d4ac861 100644 --- a/src/oci/apigateway/models/dynamic_routing_type_routing_backend.py +++ b/src/oci/apigateway/models/dynamic_routing_type_routing_backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/dynamic_selection_key.py b/src/oci/apigateway/models/dynamic_selection_key.py index e82a7d2da8..65c5ea8dab 100644 --- a/src/oci/apigateway/models/dynamic_selection_key.py +++ b/src/oci/apigateway/models/dynamic_selection_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/entitlement.py b/src/oci/apigateway/models/entitlement.py index 992967d1f5..00fc43eb4b 100644 --- a/src/oci/apigateway/models/entitlement.py +++ b/src/oci/apigateway/models/entitlement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/entitlement_summary.py b/src/oci/apigateway/models/entitlement_summary.py index 42d0fec0f9..536e26da09 100644 --- a/src/oci/apigateway/models/entitlement_summary.py +++ b/src/oci/apigateway/models/entitlement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/entitlement_target.py b/src/oci/apigateway/models/entitlement_target.py index 7628e6caec..2795870c34 100644 --- a/src/oci/apigateway/models/entitlement_target.py +++ b/src/oci/apigateway/models/entitlement_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/execution_log_policy.py b/src/oci/apigateway/models/execution_log_policy.py index db3ec11fed..b67d1a0d8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/external_resp_cache.py b/src/oci/apigateway/models/external_resp_cache.py index bf1c89d6be..06a06abe35 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/filter_header_policy.py b/src/oci/apigateway/models/filter_header_policy.py index 9e6fb702a1..7af41f49c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/filter_header_policy_item.py b/src/oci/apigateway/models/filter_header_policy_item.py index be3f2bad5e..97659d4409 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/filter_query_parameter_policy.py b/src/oci/apigateway/models/filter_query_parameter_policy.py index 1ab8989019..22ff17e631 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 ffacfcbf96..74e502b177 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 3a882a7073..970fae802c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/gateway.py b/src/oci/apigateway/models/gateway.py index 64d170dfc4..511ce79cbd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/gateway_collection.py b/src/oci/apigateway/models/gateway_collection.py index 5bdba8ce17..bc1dc4f924 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/gateway_summary.py b/src/oci/apigateway/models/gateway_summary.py index 62204cbbc8..7ace664f17 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/header_field_specification.py b/src/oci/apigateway/models/header_field_specification.py index 312fa88173..e04c8eb63b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/header_transformation_policy.py b/src/oci/apigateway/models/header_transformation_policy.py index fbd64a31fd..4b554aade7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/header_validation_item.py b/src/oci/apigateway/models/header_validation_item.py index ad88b19983..ff049ec4d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/header_validation_request_policy.py b/src/oci/apigateway/models/header_validation_request_policy.py index 8059ffb9bf..fb1c0b4af2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/http_backend.py b/src/oci/apigateway/models/http_backend.py index c32d4d29f3..1375408912 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/ip_address.py b/src/oci/apigateway/models/ip_address.py index 9627d620c4..8cb27112eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/json_web_key.py b/src/oci/apigateway/models/json_web_key.py index 926d79a372..0871815de3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/json_web_token_claim.py b/src/oci/apigateway/models/json_web_token_claim.py index 473162fbda..e42bceb4fc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/jwt_authentication_policy.py b/src/oci/apigateway/models/jwt_authentication_policy.py index 046c164d28..eeae7d6bae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/modify_response_validation_failure_policy.py b/src/oci/apigateway/models/modify_response_validation_failure_policy.py index f92ecc9876..06597b69c6 100644 --- a/src/oci/apigateway/models/modify_response_validation_failure_policy.py +++ b/src/oci/apigateway/models/modify_response_validation_failure_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/mutual_tls_details.py b/src/oci/apigateway/models/mutual_tls_details.py index 10a2555c75..2c5a0a08e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/no_cache.py b/src/oci/apigateway/models/no_cache.py index 96faa2afad..1b4ca74f15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/no_content_validation.py b/src/oci/apigateway/models/no_content_validation.py index d3a9b078a8..67b0e880d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/o_auth2_logout_backend.py b/src/oci/apigateway/models/o_auth2_logout_backend.py index 19d5c282f2..a4e325e1f5 100644 --- a/src/oci/apigateway/models/o_auth2_logout_backend.py +++ b/src/oci/apigateway/models/o_auth2_logout_backend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/o_auth2_response_validation_failure_policy.py b/src/oci/apigateway/models/o_auth2_response_validation_failure_policy.py index c53e7dcb7c..c67d8ac481 100644 --- a/src/oci/apigateway/models/o_auth2_response_validation_failure_policy.py +++ b/src/oci/apigateway/models/o_auth2_response_validation_failure_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/oracle_function_backend.py b/src/oci/apigateway/models/oracle_function_backend.py index 7e7b77cc5c..7fb398ce96 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/pem_encoded_public_key.py b/src/oci/apigateway/models/pem_encoded_public_key.py index 4c45abc918..6d4f365187 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/public_key_set.py b/src/oci/apigateway/models/public_key_set.py index 0acebdb715..8eecd0583a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/query_parameter_transformation_policy.py b/src/oci/apigateway/models/query_parameter_transformation_policy.py index 519ae4be5c..2c7adb23c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/query_parameter_validation_item.py b/src/oci/apigateway/models/query_parameter_validation_item.py index cfcac30285..1f7c72415b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 ac3c74fe5b..fb82c35b43 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/quota.py b/src/oci/apigateway/models/quota.py index 1a8ae76fff..70a7ef98f3 100644 --- a/src/oci/apigateway/models/quota.py +++ b/src/oci/apigateway/models/quota.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/rate_limit.py b/src/oci/apigateway/models/rate_limit.py index ef1a13c04f..bf7e947a6e 100644 --- a/src/oci/apigateway/models/rate_limit.py +++ b/src/oci/apigateway/models/rate_limit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/rate_limiting_policy.py b/src/oci/apigateway/models/rate_limiting_policy.py index 2bf61da6e7..17a7a5a4de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 440ef769de..e58920b3ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/rename_header_policy.py b/src/oci/apigateway/models/rename_header_policy.py index a40c5fceab..bbc0c6e750 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/rename_header_policy_item.py b/src/oci/apigateway/models/rename_header_policy_item.py index 4b53dfe656..550a206354 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/rename_query_parameter_policy.py b/src/oci/apigateway/models/rename_query_parameter_policy.py index 050ce9cb6c..ef25200e19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 6a9d3b9de7..bacff781b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/request_parameter_validation.py b/src/oci/apigateway/models/request_parameter_validation.py index 018c9f42f7..4ec64a912b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/response_cache_details.py b/src/oci/apigateway/models/response_cache_details.py index 50390411a4..d61c381c3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/response_cache_lookup_policy.py b/src/oci/apigateway/models/response_cache_lookup_policy.py index 7b6ce36eed..ec00abfa3c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/response_cache_resp_server.py b/src/oci/apigateway/models/response_cache_resp_server.py index fa1f2db73d..7655b24a50 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/response_cache_store_policy.py b/src/oci/apigateway/models/response_cache_store_policy.py index bfa39d7ea0..7278c5c8df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/route_authorization_policy.py b/src/oci/apigateway/models/route_authorization_policy.py index 1beeea5a16..ca0ac7709d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/sdk.py b/src/oci/apigateway/models/sdk.py index 081e21a967..3aa0adcc94 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/sdk_collection.py b/src/oci/apigateway/models/sdk_collection.py index 1144dcc35a..b62eaa7a8f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/sdk_language_optional_parameters.py b/src/oci/apigateway/models/sdk_language_optional_parameters.py index 4e90defc47..fc43ee9464 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 b324c0684a..6446ba16b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/sdk_language_type_collection.py b/src/oci/apigateway/models/sdk_language_type_collection.py index 927274541f..7870145fbe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/sdk_language_type_summary.py b/src/oci/apigateway/models/sdk_language_type_summary.py index 030d04a636..7f421c2511 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/sdk_language_types.py b/src/oci/apigateway/models/sdk_language_types.py index 15d997824c..eeee7bedcd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/sdk_summary.py b/src/oci/apigateway/models/sdk_summary.py index fa0048ecc8..c2e85f7131 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/selection_source_policy.py b/src/oci/apigateway/models/selection_source_policy.py index bf9dc684a3..a1d18a576d 100644 --- a/src/oci/apigateway/models/selection_source_policy.py +++ b/src/oci/apigateway/models/selection_source_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/set_header_policy.py b/src/oci/apigateway/models/set_header_policy.py index cffccbf63f..090f9131fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/set_header_policy_item.py b/src/oci/apigateway/models/set_header_policy_item.py index 672160168a..ab68bd508f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/set_query_parameter_policy.py b/src/oci/apigateway/models/set_query_parameter_policy.py index 1c5ccf20f7..0f13af9ca8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 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 b648a7c61e..833a26531b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/simple_lookup_policy.py b/src/oci/apigateway/models/simple_lookup_policy.py index b3616531c4..eaa775742b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/single_selection_source_policy.py b/src/oci/apigateway/models/single_selection_source_policy.py index 441013312f..4044808dc7 100644 --- a/src/oci/apigateway/models/single_selection_source_policy.py +++ b/src/oci/apigateway/models/single_selection_source_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/source_uri_details.py b/src/oci/apigateway/models/source_uri_details.py index 138d693c4d..4c18b6dc55 100644 --- a/src/oci/apigateway/models/source_uri_details.py +++ b/src/oci/apigateway/models/source_uri_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/static_public_key.py b/src/oci/apigateway/models/static_public_key.py index f855eb1484..2105b4b574 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/static_public_key_set.py b/src/oci/apigateway/models/static_public_key_set.py index d9fb68ec26..d12ed3ba8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/stock_response_backend.py b/src/oci/apigateway/models/stock_response_backend.py index 5d6a99a4fe..963020c2b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/subscriber.py b/src/oci/apigateway/models/subscriber.py index 08217f0b08..fcf9c21ac4 100644 --- a/src/oci/apigateway/models/subscriber.py +++ b/src/oci/apigateway/models/subscriber.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/subscriber_collection.py b/src/oci/apigateway/models/subscriber_collection.py index 7a7986ec7d..0781d8d58f 100644 --- a/src/oci/apigateway/models/subscriber_collection.py +++ b/src/oci/apigateway/models/subscriber_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/subscriber_summary.py b/src/oci/apigateway/models/subscriber_summary.py index d83a39cc8c..7328d3c1df 100644 --- a/src/oci/apigateway/models/subscriber_summary.py +++ b/src/oci/apigateway/models/subscriber_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/token_authentication_policy.py b/src/oci/apigateway/models/token_authentication_policy.py index eb2de8bb1b..7b04446e74 100644 --- a/src/oci/apigateway/models/token_authentication_policy.py +++ b/src/oci/apigateway/models/token_authentication_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/token_authentication_remote_discovery_validation_policy.py b/src/oci/apigateway/models/token_authentication_remote_discovery_validation_policy.py index 47ea43227a..f8beb1e850 100644 --- a/src/oci/apigateway/models/token_authentication_remote_discovery_validation_policy.py +++ b/src/oci/apigateway/models/token_authentication_remote_discovery_validation_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/token_authentication_remote_jwks_validation_policy.py b/src/oci/apigateway/models/token_authentication_remote_jwks_validation_policy.py index 2746572f0d..88133eae46 100644 --- a/src/oci/apigateway/models/token_authentication_remote_jwks_validation_policy.py +++ b/src/oci/apigateway/models/token_authentication_remote_jwks_validation_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/token_authentication_static_keys_validation_policy.py b/src/oci/apigateway/models/token_authentication_static_keys_validation_policy.py index 0b51cc663d..d54f587765 100644 --- a/src/oci/apigateway/models/token_authentication_static_keys_validation_policy.py +++ b/src/oci/apigateway/models/token_authentication_static_keys_validation_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/token_authentication_validation_policy.py b/src/oci/apigateway/models/token_authentication_validation_policy.py index f945e6c06c..4e00731b26 100644 --- a/src/oci/apigateway/models/token_authentication_validation_policy.py +++ b/src/oci/apigateway/models/token_authentication_validation_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/update_api_details.py b/src/oci/apigateway/models/update_api_details.py index e864729b1d..0186cb1965 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/update_certificate_details.py b/src/oci/apigateway/models/update_certificate_details.py index 16f60084db..79102f19c2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/update_deployment_details.py b/src/oci/apigateway/models/update_deployment_details.py index 611b1a3424..83b9351ce8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/update_gateway_details.py b/src/oci/apigateway/models/update_gateway_details.py index 92f4550154..6cb9dad685 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/update_sdk_details.py b/src/oci/apigateway/models/update_sdk_details.py index 5b38393c2d..f2a97e0ab4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/update_subscriber_details.py b/src/oci/apigateway/models/update_subscriber_details.py index f39ed4db67..15a4225b9a 100644 --- a/src/oci/apigateway/models/update_subscriber_details.py +++ b/src/oci/apigateway/models/update_subscriber_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/update_usage_plan_details.py b/src/oci/apigateway/models/update_usage_plan_details.py index feaa7bdf3f..cdabd598f0 100644 --- a/src/oci/apigateway/models/update_usage_plan_details.py +++ b/src/oci/apigateway/models/update_usage_plan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/usage_plan.py b/src/oci/apigateway/models/usage_plan.py index 5fc473844a..b11078d029 100644 --- a/src/oci/apigateway/models/usage_plan.py +++ b/src/oci/apigateway/models/usage_plan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/usage_plan_collection.py b/src/oci/apigateway/models/usage_plan_collection.py index ec6b245866..693f6b9d72 100644 --- a/src/oci/apigateway/models/usage_plan_collection.py +++ b/src/oci/apigateway/models/usage_plan_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/usage_plan_summary.py b/src/oci/apigateway/models/usage_plan_summary.py index 32463e6be2..a1ea0f77da 100644 --- a/src/oci/apigateway/models/usage_plan_summary.py +++ b/src/oci/apigateway/models/usage_plan_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/usage_plans_policy.py b/src/oci/apigateway/models/usage_plans_policy.py index a92ca79259..8ebb8c6877 100644 --- a/src/oci/apigateway/models/usage_plans_policy.py +++ b/src/oci/apigateway/models/usage_plans_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/validation_block_client_app_details.py b/src/oci/apigateway/models/validation_block_client_app_details.py index 437ebe5afc..59b9054091 100644 --- a/src/oci/apigateway/models/validation_block_client_app_details.py +++ b/src/oci/apigateway/models/validation_block_client_app_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/validation_block_source_uri_details.py b/src/oci/apigateway/models/validation_block_source_uri_details.py index 474896f034..5d2f39999b 100644 --- a/src/oci/apigateway/models/validation_block_source_uri_details.py +++ b/src/oci/apigateway/models/validation_block_source_uri_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/validation_failure_policy.py b/src/oci/apigateway/models/validation_failure_policy.py index d320dbe07f..c338132faf 100644 --- a/src/oci/apigateway/models/validation_failure_policy.py +++ b/src/oci/apigateway/models/validation_failure_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/validation_request_policy.py b/src/oci/apigateway/models/validation_request_policy.py index 26a1ff6826..dd56a0f268 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/wildcard_selection_key.py b/src/oci/apigateway/models/wildcard_selection_key.py index 114bb6e267..863e453416 100644 --- a/src/oci/apigateway/models/wildcard_selection_key.py +++ b/src/oci/apigateway/models/wildcard_selection_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/work_request.py b/src/oci/apigateway/models/work_request.py index 179099330c..3ab98d2af5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/work_request_collection.py b/src/oci/apigateway/models/work_request_collection.py index 33521ba765..3b7072677b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/work_request_error.py b/src/oci/apigateway/models/work_request_error.py index 7b9f3ee497..cf8e01b1c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/work_request_error_collection.py b/src/oci/apigateway/models/work_request_error_collection.py index 1dbedd2260..de6faafb71 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/work_request_log.py b/src/oci/apigateway/models/work_request_log.py index cde2b20fa3..b18f4cd4dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/work_request_log_collection.py b/src/oci/apigateway/models/work_request_log_collection.py index 6d3cb4a4e7..6375c2d983 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/work_request_resource.py b/src/oci/apigateway/models/work_request_resource.py index fb4f3f9e06..38c78ea0b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/models/work_request_summary.py b/src/oci/apigateway/models/work_request_summary.py index b6ed91776a..56302e89fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/subscribers_client.py b/src/oci/apigateway/subscribers_client.py index 6cbb92d14f..5d1a8d066a 100644 --- a/src/oci/apigateway/subscribers_client.py +++ b/src/oci/apigateway/subscribers_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/subscribers_client_composite_operations.py b/src/oci/apigateway/subscribers_client_composite_operations.py index 069269c0c4..4e0fe1a343 100644 --- a/src/oci/apigateway/subscribers_client_composite_operations.py +++ b/src/oci/apigateway/subscribers_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/usage_plans_client.py b/src/oci/apigateway/usage_plans_client.py index e6d70b6b5e..8e30688e02 100644 --- a/src/oci/apigateway/usage_plans_client.py +++ b/src/oci/apigateway/usage_plans_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/usage_plans_client_composite_operations.py b/src/oci/apigateway/usage_plans_client_composite_operations.py index 1924cb9cf8..b09180d4e5 100644 --- a/src/oci/apigateway/usage_plans_client_composite_operations.py +++ b/src/oci/apigateway/usage_plans_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/work_requests_client.py b/src/oci/apigateway/work_requests_client.py index f795515b57..1c29f0e61f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apigateway/work_requests_client_composite_operations.py b/src/oci/apigateway/work_requests_client_composite_operations.py index 774d300dba..2415c2ac89 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190501 diff --git a/src/oci/apm_config/__init__.py b/src/oci/apm_config/__init__.py index f40704fbd9..0e90135e8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/config_client.py b/src/oci/apm_config/config_client.py index 9f819c2c59..e83d1b7743 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/config_client_composite_operations.py b/src/oci/apm_config/config_client_composite_operations.py index 51fcd8ec59..b8a2cc0483 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/__init__.py b/src/oci/apm_config/models/__init__.py index 819a4f11fd..83d9bdd4d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/apdex.py b/src/oci/apm_config/models/apdex.py index e2bc3fdd0a..5b13533dfb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/apdex_rules.py b/src/oci/apm_config/models/apdex_rules.py index cf19d14503..1128167a5a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/apdex_rules_summary.py b/src/oci/apm_config/models/apdex_rules_summary.py index 70980c8b3b..7b943a450f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/config.py b/src/oci/apm_config/models/config.py index b0e7b5049b..4acabec1b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/config_collection.py b/src/oci/apm_config/models/config_collection.py index 8add8be083..29a0e9e9e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/config_summary.py b/src/oci/apm_config/models/config_summary.py index 91d1e3122e..4052fb7998 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 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 672a417496..df027a3a91 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/create_config_details.py b/src/oci/apm_config/models/create_config_details.py index 4cb42c56d6..69cd38ff8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 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 904a936d14..7d24499630 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/create_options_details.py b/src/oci/apm_config/models/create_options_details.py index 0feb684721..0d49905c95 100644 --- a/src/oci/apm_config/models/create_options_details.py +++ b/src/oci/apm_config/models/create_options_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 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 1ec51ee59c..a5b8a1aa45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/dimension.py b/src/oci/apm_config/models/dimension.py index 9c0432e3d4..7198d22447 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/filter_text_or_id.py b/src/oci/apm_config/models/filter_text_or_id.py index 9b33aa0e4b..9efa148692 100644 --- a/src/oci/apm_config/models/filter_text_or_id.py +++ b/src/oci/apm_config/models/filter_text_or_id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/metric.py b/src/oci/apm_config/models/metric.py index 3c41beb234..9f7ae72012 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/metric_group.py b/src/oci/apm_config/models/metric_group.py index f3a1034984..9879dec91c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/metric_group_summary.py b/src/oci/apm_config/models/metric_group_summary.py index 7c8b747ddb..519779d0f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/namespace.py b/src/oci/apm_config/models/namespace.py index 3ac1830b70..aca08646ce 100644 --- a/src/oci/apm_config/models/namespace.py +++ b/src/oci/apm_config/models/namespace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/namespace_collection.py b/src/oci/apm_config/models/namespace_collection.py index 2cf90ff47d..c146da23e5 100644 --- a/src/oci/apm_config/models/namespace_collection.py +++ b/src/oci/apm_config/models/namespace_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/namespace_metric.py b/src/oci/apm_config/models/namespace_metric.py index a7f0725266..706c6225b7 100644 --- a/src/oci/apm_config/models/namespace_metric.py +++ b/src/oci/apm_config/models/namespace_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/namespace_metric_collection.py b/src/oci/apm_config/models/namespace_metric_collection.py index 63b4df5c6d..f83d920369 100644 --- a/src/oci/apm_config/models/namespace_metric_collection.py +++ b/src/oci/apm_config/models/namespace_metric_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/options.py b/src/oci/apm_config/models/options.py index 8ef994b60a..22df7d7c28 100644 --- a/src/oci/apm_config/models/options.py +++ b/src/oci/apm_config/models/options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/options_summary.py b/src/oci/apm_config/models/options_summary.py index 4463378908..65f7f86b92 100644 --- a/src/oci/apm_config/models/options_summary.py +++ b/src/oci/apm_config/models/options_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/retrieve_namespace_metrics_details.py b/src/oci/apm_config/models/retrieve_namespace_metrics_details.py index 804e39c80c..361165cc92 100644 --- a/src/oci/apm_config/models/retrieve_namespace_metrics_details.py +++ b/src/oci/apm_config/models/retrieve_namespace_metrics_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/span_filter.py b/src/oci/apm_config/models/span_filter.py index 76cfb3c76e..e1e25d0cb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/span_filter_reference.py b/src/oci/apm_config/models/span_filter_reference.py index b0aa8a766a..8ce045528a 100644 --- a/src/oci/apm_config/models/span_filter_reference.py +++ b/src/oci/apm_config/models/span_filter_reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/span_filter_summary.py b/src/oci/apm_config/models/span_filter_summary.py index 2e44f32b28..4fb0ceef7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/test_details.py b/src/oci/apm_config/models/test_details.py index 07692fbd4f..4c2c5a5ec1 100644 --- a/src/oci/apm_config/models/test_details.py +++ b/src/oci/apm_config/models/test_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/test_output.py b/src/oci/apm_config/models/test_output.py index e24559c0e2..55e67e853f 100644 --- a/src/oci/apm_config/models/test_output.py +++ b/src/oci/apm_config/models/test_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/test_span_enrichment_details.py b/src/oci/apm_config/models/test_span_enrichment_details.py index e24f52b55b..24948ae324 100644 --- a/src/oci/apm_config/models/test_span_enrichment_details.py +++ b/src/oci/apm_config/models/test_span_enrichment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/test_span_enrichment_output.py b/src/oci/apm_config/models/test_span_enrichment_output.py index f94ba66f93..12fdd5f6a9 100644 --- a/src/oci/apm_config/models/test_span_enrichment_output.py +++ b/src/oci/apm_config/models/test_span_enrichment_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 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 7ce3222fad..197a58c0ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/update_config_details.py b/src/oci/apm_config/models/update_config_details.py index 0bc7448de5..acd728b146 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 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 728eeb81f7..5e917351ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/update_options_details.py b/src/oci/apm_config/models/update_options_details.py index 15124a0829..7c692bee1c 100644 --- a/src/oci/apm_config/models/update_options_details.py +++ b/src/oci/apm_config/models/update_options_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 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 07143b775d..129358d7b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_config/models/validate_span_filter_pattern_details.py b/src/oci/apm_config/models/validate_span_filter_pattern_details.py index 42aaab0d6b..7d87041e44 100644 --- a/src/oci/apm_config/models/validate_span_filter_pattern_details.py +++ b/src/oci/apm_config/models/validate_span_filter_pattern_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/apm_control_plane/__init__.py b/src/oci/apm_control_plane/__init__.py index 7c659b1720..e472caf6bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_control_plane/apm_domain_client.py b/src/oci/apm_control_plane/apm_domain_client.py index a27657637d..e0b21d979e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 43d819926a..ea90e521da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_control_plane/models/__init__.py b/src/oci/apm_control_plane/models/__init__.py index 60f01b781e..e8d64738df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_control_plane/models/apm_domain.py b/src/oci/apm_control_plane/models/apm_domain.py index ec7eef983b..4432fbb7a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 63f92dc9b0..cb60d8fbd3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 a8a128e531..3391ebca84 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 7b9322d96b..e052a4abbb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 8617fd3fa2..94a4e7a48d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 f9fa092391..c07f7f45a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_control_plane/models/data_key.py b/src/oci/apm_control_plane/models/data_key.py index 1b7f0762ce..617f0e7ace 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 cd83d54e08..60396abe62 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 f983ee1fb7..d303b6f778 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 6d0dfa07e3..3820b3e658 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 49aecbe71e..380e6471a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_control_plane/models/work_request.py b/src/oci/apm_control_plane/models/work_request.py index 0fcbacc74e..4fa66e2830 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 97ac19afa7..468b469b3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 6080b0ffa3..920cff5073 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 6ccdd514c8..04f092ed49 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/__init__.py b/src/oci/apm_synthetics/__init__.py index 2cd9e00115..d454f0b3e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/apm_synthetic_client.py b/src/oci/apm_synthetics/apm_synthetic_client.py index 2e57f5af94..720aca898d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 988b66e56f..1e4044d28f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/__init__.py b/src/oci/apm_synthetics/models/__init__.py index 0323612e70..7944c82276 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/aggregate_network_data_details.py b/src/oci/apm_synthetics/models/aggregate_network_data_details.py index 0a6dee84bc..45e87ffa7e 100644 --- a/src/oci/apm_synthetics/models/aggregate_network_data_details.py +++ b/src/oci/apm_synthetics/models/aggregate_network_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/aggregated_network_data.py b/src/oci/apm_synthetics/models/aggregated_network_data.py index bc24dd4bbf..abee26bdb2 100644 --- a/src/oci/apm_synthetics/models/aggregated_network_data.py +++ b/src/oci/apm_synthetics/models/aggregated_network_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/aggregated_network_data_result.py b/src/oci/apm_synthetics/models/aggregated_network_data_result.py index 7b223b758b..b8483b7058 100644 --- a/src/oci/apm_synthetics/models/aggregated_network_data_result.py +++ b/src/oci/apm_synthetics/models/aggregated_network_data_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/availability_configuration.py b/src/oci/apm_synthetics/models/availability_configuration.py index d5d1e748f6..588b72aeca 100644 --- a/src/oci/apm_synthetics/models/availability_configuration.py +++ b/src/oci/apm_synthetics/models/availability_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/available_capability.py b/src/oci/apm_synthetics/models/available_capability.py index e7264671c6..085790cd39 100644 --- a/src/oci/apm_synthetics/models/available_capability.py +++ b/src/oci/apm_synthetics/models/available_capability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/basic_authentication_details.py b/src/oci/apm_synthetics/models/basic_authentication_details.py index c502a439ae..b2c6bef202 100644 --- a/src/oci/apm_synthetics/models/basic_authentication_details.py +++ b/src/oci/apm_synthetics/models/basic_authentication_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/browser_monitor_configuration.py b/src/oci/apm_synthetics/models/browser_monitor_configuration.py index a8de14a398..7a43b3eff8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/client_certificate.py b/src/oci/apm_synthetics/models/client_certificate.py index c5eadd2081..c764424b62 100644 --- a/src/oci/apm_synthetics/models/client_certificate.py +++ b/src/oci/apm_synthetics/models/client_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/client_certificate_details.py b/src/oci/apm_synthetics/models/client_certificate_details.py index 52a3ba9bac..65806e828e 100644 --- a/src/oci/apm_synthetics/models/client_certificate_details.py +++ b/src/oci/apm_synthetics/models/client_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/create_dedicated_vantage_point_details.py b/src/oci/apm_synthetics/models/create_dedicated_vantage_point_details.py index 63badfd94e..9064e7563c 100644 --- a/src/oci/apm_synthetics/models/create_dedicated_vantage_point_details.py +++ b/src/oci/apm_synthetics/models/create_dedicated_vantage_point_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/create_monitor_details.py b/src/oci/apm_synthetics/models/create_monitor_details.py index 5532386663..18fc88fff8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/create_on_premise_vantage_point_details.py b/src/oci/apm_synthetics/models/create_on_premise_vantage_point_details.py index 96202be6a1..11a37b3a7d 100644 --- a/src/oci/apm_synthetics/models/create_on_premise_vantage_point_details.py +++ b/src/oci/apm_synthetics/models/create_on_premise_vantage_point_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/create_script_details.py b/src/oci/apm_synthetics/models/create_script_details.py index 21c4a25f84..73f2905160 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/create_worker_details.py b/src/oci/apm_synthetics/models/create_worker_details.py index 694a6d720a..161d2aac2a 100644 --- a/src/oci/apm_synthetics/models/create_worker_details.py +++ b/src/oci/apm_synthetics/models/create_worker_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/database_wallet_details.py b/src/oci/apm_synthetics/models/database_wallet_details.py index fc586a6359..71c4e0090b 100644 --- a/src/oci/apm_synthetics/models/database_wallet_details.py +++ b/src/oci/apm_synthetics/models/database_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/dedicated_vantage_point.py b/src/oci/apm_synthetics/models/dedicated_vantage_point.py index 6ee216045e..9681b6b423 100644 --- a/src/oci/apm_synthetics/models/dedicated_vantage_point.py +++ b/src/oci/apm_synthetics/models/dedicated_vantage_point.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/dedicated_vantage_point_collection.py b/src/oci/apm_synthetics/models/dedicated_vantage_point_collection.py index 6dd81c2ddd..949a93ae4c 100644 --- a/src/oci/apm_synthetics/models/dedicated_vantage_point_collection.py +++ b/src/oci/apm_synthetics/models/dedicated_vantage_point_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/dedicated_vantage_point_summary.py b/src/oci/apm_synthetics/models/dedicated_vantage_point_summary.py index 5bfa2a2668..bd113485a2 100644 --- a/src/oci/apm_synthetics/models/dedicated_vantage_point_summary.py +++ b/src/oci/apm_synthetics/models/dedicated_vantage_point_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/dns_configuration.py b/src/oci/apm_synthetics/models/dns_configuration.py index 1cf6acb52f..39b71b4b6c 100644 --- a/src/oci/apm_synthetics/models/dns_configuration.py +++ b/src/oci/apm_synthetics/models/dns_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/dns_sec_monitor_configuration.py b/src/oci/apm_synthetics/models/dns_sec_monitor_configuration.py index f65ee587f9..7f96e451d2 100644 --- a/src/oci/apm_synthetics/models/dns_sec_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/dns_sec_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/dns_server_monitor_configuration.py b/src/oci/apm_synthetics/models/dns_server_monitor_configuration.py index d4de102536..7b311b92e7 100644 --- a/src/oci/apm_synthetics/models/dns_server_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/dns_server_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/dns_trace_monitor_configuration.py b/src/oci/apm_synthetics/models/dns_trace_monitor_configuration.py index 8df650c06a..16ee67e586 100644 --- a/src/oci/apm_synthetics/models/dns_trace_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/dns_trace_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/dvp_stack_details.py b/src/oci/apm_synthetics/models/dvp_stack_details.py index e1ac47d4b8..d00b12da43 100644 --- a/src/oci/apm_synthetics/models/dvp_stack_details.py +++ b/src/oci/apm_synthetics/models/dvp_stack_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/ftp_monitor_configuration.py b/src/oci/apm_synthetics/models/ftp_monitor_configuration.py index 4e646b1e74..60e3775243 100644 --- a/src/oci/apm_synthetics/models/ftp_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/ftp_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/geo_summary.py b/src/oci/apm_synthetics/models/geo_summary.py index 97189d2d35..75826da807 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/header.py b/src/oci/apm_synthetics/models/header.py index 93028c576c..594e8f379a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/identity_info_details.py b/src/oci/apm_synthetics/models/identity_info_details.py index 33709ef242..8aa4dcfbc8 100644 --- a/src/oci/apm_synthetics/models/identity_info_details.py +++ b/src/oci/apm_synthetics/models/identity_info_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/link.py b/src/oci/apm_synthetics/models/link.py index 747183fbd0..ed2be49a75 100644 --- a/src/oci/apm_synthetics/models/link.py +++ b/src/oci/apm_synthetics/models/link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/maintenance_window_schedule.py b/src/oci/apm_synthetics/models/maintenance_window_schedule.py index 3a46d4462b..7828f1c995 100644 --- a/src/oci/apm_synthetics/models/maintenance_window_schedule.py +++ b/src/oci/apm_synthetics/models/maintenance_window_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/monitor.py b/src/oci/apm_synthetics/models/monitor.py index 20047a1575..2e58a6f02c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/monitor_collection.py b/src/oci/apm_synthetics/models/monitor_collection.py index 9d763c5c09..aad6bf115f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/monitor_configuration.py b/src/oci/apm_synthetics/models/monitor_configuration.py index e05b0d28a4..f3c5a904c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/monitor_result.py b/src/oci/apm_synthetics/models/monitor_result.py index 8a236e4cb7..49dd55bdf4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/monitor_result_data.py b/src/oci/apm_synthetics/models/monitor_result_data.py index c6249b0dbb..fcbce59732 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/monitor_script_parameter.py b/src/oci/apm_synthetics/models/monitor_script_parameter.py index 788b008009..5916d7694e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 6939f6b9da..901c8a82b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 299516c9c2..a8433dfda5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/monitor_summary.py b/src/oci/apm_synthetics/models/monitor_summary.py index 212c09de4e..01d9706e0d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/network_configuration.py b/src/oci/apm_synthetics/models/network_configuration.py index c11ee965a3..3fb6971acc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/network_monitor_configuration.py b/src/oci/apm_synthetics/models/network_monitor_configuration.py index e54c9e8555..a5706d63f9 100644 --- a/src/oci/apm_synthetics/models/network_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/network_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/node.py b/src/oci/apm_synthetics/models/node.py index e82b104f49..88d4ca6322 100644 --- a/src/oci/apm_synthetics/models/node.py +++ b/src/oci/apm_synthetics/models/node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/on_premise_vantage_point.py b/src/oci/apm_synthetics/models/on_premise_vantage_point.py index 1d7e3a965a..5bae88f09d 100644 --- a/src/oci/apm_synthetics/models/on_premise_vantage_point.py +++ b/src/oci/apm_synthetics/models/on_premise_vantage_point.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/on_premise_vantage_point_collection.py b/src/oci/apm_synthetics/models/on_premise_vantage_point_collection.py index b04235aa01..71b836cf07 100644 --- a/src/oci/apm_synthetics/models/on_premise_vantage_point_collection.py +++ b/src/oci/apm_synthetics/models/on_premise_vantage_point_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/on_premise_vantage_point_summary.py b/src/oci/apm_synthetics/models/on_premise_vantage_point_summary.py index ab50d6be7a..ca4d7764bd 100644 --- a/src/oci/apm_synthetics/models/on_premise_vantage_point_summary.py +++ b/src/oci/apm_synthetics/models/on_premise_vantage_point_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/on_premise_vp_worker_version_details.py b/src/oci/apm_synthetics/models/on_premise_vp_worker_version_details.py index 4f8fe4795d..f05772cdd8 100644 --- a/src/oci/apm_synthetics/models/on_premise_vp_worker_version_details.py +++ b/src/oci/apm_synthetics/models/on_premise_vp_worker_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/oracle_rm_stack.py b/src/oci/apm_synthetics/models/oracle_rm_stack.py index fd2ade1556..301320b19a 100644 --- a/src/oci/apm_synthetics/models/oracle_rm_stack.py +++ b/src/oci/apm_synthetics/models/oracle_rm_stack.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/password.py b/src/oci/apm_synthetics/models/password.py index fa0905eb72..6d884e5d54 100644 --- a/src/oci/apm_synthetics/models/password.py +++ b/src/oci/apm_synthetics/models/password.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/password_in_text.py b/src/oci/apm_synthetics/models/password_in_text.py index cce759f595..8d7b328705 100644 --- a/src/oci/apm_synthetics/models/password_in_text.py +++ b/src/oci/apm_synthetics/models/password_in_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/password_in_vault.py b/src/oci/apm_synthetics/models/password_in_vault.py index bdc9fed999..8e7b2e8583 100644 --- a/src/oci/apm_synthetics/models/password_in_vault.py +++ b/src/oci/apm_synthetics/models/password_in_vault.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/private_key.py b/src/oci/apm_synthetics/models/private_key.py index b58709e351..9c9d0d1a25 100644 --- a/src/oci/apm_synthetics/models/private_key.py +++ b/src/oci/apm_synthetics/models/private_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 7cd7207e17..5b541cbd0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 7c2813fa6c..264e3bbec7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/request_authentication_details.py b/src/oci/apm_synthetics/models/request_authentication_details.py index 01da892edf..de1a4633ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/request_query_param.py b/src/oci/apm_synthetics/models/request_query_param.py index bb19761707..07dd8205e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/rest_monitor_configuration.py b/src/oci/apm_synthetics/models/rest_monitor_configuration.py index 0e76d2fb71..d38a0cf3dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/script.py b/src/oci/apm_synthetics/models/script.py index 65213d0e6f..08f84d1150 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/script_collection.py b/src/oci/apm_synthetics/models/script_collection.py index f97bf450ad..422f6ba12b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/script_parameter.py b/src/oci/apm_synthetics/models/script_parameter.py index d711223c78..9b5c5e3532 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/script_parameter_info.py b/src/oci/apm_synthetics/models/script_parameter_info.py index af715850fc..8037c330f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/script_summary.py b/src/oci/apm_synthetics/models/script_summary.py index 56a425c491..8e96def387 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 63b4c1946b..e9608fbe13 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 08b217a4e2..3379fe0e0a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/sql_monitor_configuration.py b/src/oci/apm_synthetics/models/sql_monitor_configuration.py index 66329fe786..5d4460408e 100644 --- a/src/oci/apm_synthetics/models/sql_monitor_configuration.py +++ b/src/oci/apm_synthetics/models/sql_monitor_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/update_dedicated_vantage_point_details.py b/src/oci/apm_synthetics/models/update_dedicated_vantage_point_details.py index 7f93a2796f..a409470872 100644 --- a/src/oci/apm_synthetics/models/update_dedicated_vantage_point_details.py +++ b/src/oci/apm_synthetics/models/update_dedicated_vantage_point_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/update_monitor_details.py b/src/oci/apm_synthetics/models/update_monitor_details.py index 7f5c343636..6521e2eb8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/update_on_premise_vantage_point_details.py b/src/oci/apm_synthetics/models/update_on_premise_vantage_point_details.py index 2f84ce3bf9..1261537da4 100644 --- a/src/oci/apm_synthetics/models/update_on_premise_vantage_point_details.py +++ b/src/oci/apm_synthetics/models/update_on_premise_vantage_point_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/update_script_details.py b/src/oci/apm_synthetics/models/update_script_details.py index e9bd9770f3..0b59779e2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/update_worker_details.py b/src/oci/apm_synthetics/models/update_worker_details.py index c79d98fe71..bc9f84baeb 100644 --- a/src/oci/apm_synthetics/models/update_worker_details.py +++ b/src/oci/apm_synthetics/models/update_worker_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/vantage_point_execution.py b/src/oci/apm_synthetics/models/vantage_point_execution.py index ddaef181c9..f178be50f7 100644 --- a/src/oci/apm_synthetics/models/vantage_point_execution.py +++ b/src/oci/apm_synthetics/models/vantage_point_execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/vantage_point_info.py b/src/oci/apm_synthetics/models/vantage_point_info.py index 676633c369..5d9789bd9b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/vantage_point_node.py b/src/oci/apm_synthetics/models/vantage_point_node.py index 93ee7e7a49..297cc7c448 100644 --- a/src/oci/apm_synthetics/models/vantage_point_node.py +++ b/src/oci/apm_synthetics/models/vantage_point_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/verify_text.py b/src/oci/apm_synthetics/models/verify_text.py index e6747c1b0a..00868cecd5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/worker.py b/src/oci/apm_synthetics/models/worker.py index ca60916ac6..653c873584 100644 --- a/src/oci/apm_synthetics/models/worker.py +++ b/src/oci/apm_synthetics/models/worker.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/worker_collection.py b/src/oci/apm_synthetics/models/worker_collection.py index 4534ed3f1f..f70a393fc8 100644 --- a/src/oci/apm_synthetics/models/worker_collection.py +++ b/src/oci/apm_synthetics/models/worker_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/worker_monitor_list.py b/src/oci/apm_synthetics/models/worker_monitor_list.py index 02a56127e9..54cdb549e7 100644 --- a/src/oci/apm_synthetics/models/worker_monitor_list.py +++ b/src/oci/apm_synthetics/models/worker_monitor_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/worker_summary.py b/src/oci/apm_synthetics/models/worker_summary.py index 4a56848921..04484499e5 100644 --- a/src/oci/apm_synthetics/models/worker_summary.py +++ b/src/oci/apm_synthetics/models/worker_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_synthetics/models/workers_summary.py b/src/oci/apm_synthetics/models/workers_summary.py index 5af1d3314e..76ca354b6c 100644 --- a/src/oci/apm_synthetics/models/workers_summary.py +++ b/src/oci/apm_synthetics/models/workers_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/__init__.py b/src/oci/apm_traces/__init__.py index 900bc5fd09..c206f53da3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/attributes_client.py b/src/oci/apm_traces/attributes_client.py index d5371b1e68..5e30cd09be 100644 --- a/src/oci/apm_traces/attributes_client.py +++ b/src/oci/apm_traces/attributes_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/attributes_client_composite_operations.py b/src/oci/apm_traces/attributes_client_composite_operations.py index 6b1fe35e6b..deaefc9142 100644 --- a/src/oci/apm_traces/attributes_client_composite_operations.py +++ b/src/oci/apm_traces/attributes_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/__init__.py b/src/oci/apm_traces/models/__init__.py index afd34abd28..5f4c9b24da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/aggregated_snapshot.py b/src/oci/apm_traces/models/aggregated_snapshot.py index 9d6e2e4bd8..114754d54d 100644 --- a/src/oci/apm_traces/models/aggregated_snapshot.py +++ b/src/oci/apm_traces/models/aggregated_snapshot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/aggregated_stack_trace.py b/src/oci/apm_traces/models/aggregated_stack_trace.py index 7d3c6ff624..c73d05ce26 100644 --- a/src/oci/apm_traces/models/aggregated_stack_trace.py +++ b/src/oci/apm_traces/models/aggregated_stack_trace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/attribute_pin_response.py b/src/oci/apm_traces/models/attribute_pin_response.py index 6e67910d84..2460fc664e 100644 --- a/src/oci/apm_traces/models/attribute_pin_response.py +++ b/src/oci/apm_traces/models/attribute_pin_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/attribute_response.py b/src/oci/apm_traces/models/attribute_response.py index b7578a738d..6cef5baa13 100644 --- a/src/oci/apm_traces/models/attribute_response.py +++ b/src/oci/apm_traces/models/attribute_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/attribute_unpin_response.py b/src/oci/apm_traces/models/attribute_unpin_response.py index c49b9c4c5e..59bf11d8fb 100644 --- a/src/oci/apm_traces/models/attribute_unpin_response.py +++ b/src/oci/apm_traces/models/attribute_unpin_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/attribute_update_notes_response.py b/src/oci/apm_traces/models/attribute_update_notes_response.py index 5a1e01921e..868ad63156 100644 --- a/src/oci/apm_traces/models/attribute_update_notes_response.py +++ b/src/oci/apm_traces/models/attribute_update_notes_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/attribute_update_response.py b/src/oci/apm_traces/models/attribute_update_response.py index 09757c98d0..568443600a 100644 --- a/src/oci/apm_traces/models/attribute_update_response.py +++ b/src/oci/apm_traces/models/attribute_update_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/auto_activate_status.py b/src/oci/apm_traces/models/auto_activate_status.py index 155dec15d4..4fdec62270 100644 --- a/src/oci/apm_traces/models/auto_activate_status.py +++ b/src/oci/apm_traces/models/auto_activate_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/auto_activate_toggle_status.py b/src/oci/apm_traces/models/auto_activate_toggle_status.py index bdcff07831..8ed291770c 100644 --- a/src/oci/apm_traces/models/auto_activate_toggle_status.py +++ b/src/oci/apm_traces/models/auto_activate_toggle_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_activate_attribute_detail.py b/src/oci/apm_traces/models/bulk_activate_attribute_detail.py index 53c64a5601..955a01dda7 100644 --- a/src/oci/apm_traces/models/bulk_activate_attribute_detail.py +++ b/src/oci/apm_traces/models/bulk_activate_attribute_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_activate_attribute_details.py b/src/oci/apm_traces/models/bulk_activate_attribute_details.py index dec9d4791f..deb3a24259 100644 --- a/src/oci/apm_traces/models/bulk_activate_attribute_details.py +++ b/src/oci/apm_traces/models/bulk_activate_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_activation_metadata.py b/src/oci/apm_traces/models/bulk_activation_metadata.py index 94b31b27e1..6e3f501e50 100644 --- a/src/oci/apm_traces/models/bulk_activation_metadata.py +++ b/src/oci/apm_traces/models/bulk_activation_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_activation_status.py b/src/oci/apm_traces/models/bulk_activation_status.py index 6ccf3ccb74..13f71c5a8c 100644 --- a/src/oci/apm_traces/models/bulk_activation_status.py +++ b/src/oci/apm_traces/models/bulk_activation_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_de_activate_attribute_detail.py b/src/oci/apm_traces/models/bulk_de_activate_attribute_detail.py index c549b5d58a..522976cd04 100644 --- a/src/oci/apm_traces/models/bulk_de_activate_attribute_detail.py +++ b/src/oci/apm_traces/models/bulk_de_activate_attribute_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_de_activate_attribute_details.py b/src/oci/apm_traces/models/bulk_de_activate_attribute_details.py index c93702dfe9..b8c9e1422d 100644 --- a/src/oci/apm_traces/models/bulk_de_activate_attribute_details.py +++ b/src/oci/apm_traces/models/bulk_de_activate_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_de_activation_metadata.py b/src/oci/apm_traces/models/bulk_de_activation_metadata.py index 02ff0418e9..6f0d4e3d59 100644 --- a/src/oci/apm_traces/models/bulk_de_activation_metadata.py +++ b/src/oci/apm_traces/models/bulk_de_activation_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_de_activation_status.py b/src/oci/apm_traces/models/bulk_de_activation_status.py index eed05ecf86..12ac896c9f 100644 --- a/src/oci/apm_traces/models/bulk_de_activation_status.py +++ b/src/oci/apm_traces/models/bulk_de_activation_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_pin_attribute_detail.py b/src/oci/apm_traces/models/bulk_pin_attribute_detail.py index 1539609ccf..c530eb9fe7 100644 --- a/src/oci/apm_traces/models/bulk_pin_attribute_detail.py +++ b/src/oci/apm_traces/models/bulk_pin_attribute_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_pin_attribute_details.py b/src/oci/apm_traces/models/bulk_pin_attribute_details.py index 6b72cff199..a5d7c7ff9b 100644 --- a/src/oci/apm_traces/models/bulk_pin_attribute_details.py +++ b/src/oci/apm_traces/models/bulk_pin_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_pin_metadata.py b/src/oci/apm_traces/models/bulk_pin_metadata.py index 4cc61877ae..4576f9dc2d 100644 --- a/src/oci/apm_traces/models/bulk_pin_metadata.py +++ b/src/oci/apm_traces/models/bulk_pin_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_pin_status.py b/src/oci/apm_traces/models/bulk_pin_status.py index 1af5fe15aa..9a71970eae 100644 --- a/src/oci/apm_traces/models/bulk_pin_status.py +++ b/src/oci/apm_traces/models/bulk_pin_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_unpin_attribute_detail.py b/src/oci/apm_traces/models/bulk_unpin_attribute_detail.py index d1889c5ecb..a180fe6bbc 100644 --- a/src/oci/apm_traces/models/bulk_unpin_attribute_detail.py +++ b/src/oci/apm_traces/models/bulk_unpin_attribute_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_unpin_attribute_details.py b/src/oci/apm_traces/models/bulk_unpin_attribute_details.py index 0e8a41f878..ef89bcc50e 100644 --- a/src/oci/apm_traces/models/bulk_unpin_attribute_details.py +++ b/src/oci/apm_traces/models/bulk_unpin_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_unpin_metadata.py b/src/oci/apm_traces/models/bulk_unpin_metadata.py index 1917407a87..50bf25a7dd 100644 --- a/src/oci/apm_traces/models/bulk_unpin_metadata.py +++ b/src/oci/apm_traces/models/bulk_unpin_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_unpin_status.py b/src/oci/apm_traces/models/bulk_unpin_status.py index 1e5e428866..0f75edf077 100644 --- a/src/oci/apm_traces/models/bulk_unpin_status.py +++ b/src/oci/apm_traces/models/bulk_unpin_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_update_attribute_detail.py b/src/oci/apm_traces/models/bulk_update_attribute_detail.py index ccae842e22..06b84176e8 100644 --- a/src/oci/apm_traces/models/bulk_update_attribute_detail.py +++ b/src/oci/apm_traces/models/bulk_update_attribute_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_update_attribute_details.py b/src/oci/apm_traces/models/bulk_update_attribute_details.py index 01711d173a..96cb1b82fc 100644 --- a/src/oci/apm_traces/models/bulk_update_attribute_details.py +++ b/src/oci/apm_traces/models/bulk_update_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_update_attribute_metadata.py b/src/oci/apm_traces/models/bulk_update_attribute_metadata.py index 84e6147bbd..9ade10b393 100644 --- a/src/oci/apm_traces/models/bulk_update_attribute_metadata.py +++ b/src/oci/apm_traces/models/bulk_update_attribute_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_update_attribute_notes_detail.py b/src/oci/apm_traces/models/bulk_update_attribute_notes_detail.py index 7ba13981db..f1aa2dbf5f 100644 --- a/src/oci/apm_traces/models/bulk_update_attribute_notes_detail.py +++ b/src/oci/apm_traces/models/bulk_update_attribute_notes_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_update_attribute_notes_details.py b/src/oci/apm_traces/models/bulk_update_attribute_notes_details.py index 839a34eecb..47348a9f37 100644 --- a/src/oci/apm_traces/models/bulk_update_attribute_notes_details.py +++ b/src/oci/apm_traces/models/bulk_update_attribute_notes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_update_attribute_status.py b/src/oci/apm_traces/models/bulk_update_attribute_status.py index e85c5169cb..c57570eb22 100644 --- a/src/oci/apm_traces/models/bulk_update_attribute_status.py +++ b/src/oci/apm_traces/models/bulk_update_attribute_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_update_notes_metadata.py b/src/oci/apm_traces/models/bulk_update_notes_metadata.py index 7c87664107..07a218b378 100644 --- a/src/oci/apm_traces/models/bulk_update_notes_metadata.py +++ b/src/oci/apm_traces/models/bulk_update_notes_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/bulk_update_notes_status.py b/src/oci/apm_traces/models/bulk_update_notes_status.py index e9ea56cf5b..e582f7d168 100644 --- a/src/oci/apm_traces/models/bulk_update_notes_status.py +++ b/src/oci/apm_traces/models/bulk_update_notes_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/query_details.py b/src/oci/apm_traces/models/query_details.py index 6296871a44..7f5da26340 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 51ab6ce352..ff7a6835e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/query_result_response.py b/src/oci/apm_traces/models/query_result_response.py index c5d2a16060..24321faf96 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/query_result_row.py b/src/oci/apm_traces/models/query_result_row.py index af7483999f..a6f043ded2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 558dec2186..55d5c220ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/query_result_warning.py b/src/oci/apm_traces/models/query_result_warning.py index 510330d916..577d2a7041 100644 --- a/src/oci/apm_traces/models/query_result_warning.py +++ b/src/oci/apm_traces/models/query_result_warning.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 fb8ca92448..88036e248b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 7cb2e6bc7d..d349fa8f37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/query_results_topology_info.py b/src/oci/apm_traces/models/query_results_topology_info.py index 2c56da4644..ec37b0b9ce 100644 --- a/src/oci/apm_traces/models/query_results_topology_info.py +++ b/src/oci/apm_traces/models/query_results_topology_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/query_results_topology_node_info.py b/src/oci/apm_traces/models/query_results_topology_node_info.py index e44a7c1e2f..73a9802216 100644 --- a/src/oci/apm_traces/models/query_results_topology_node_info.py +++ b/src/oci/apm_traces/models/query_results_topology_node_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/quick_pick_summary.py b/src/oci/apm_traces/models/quick_pick_summary.py index 572881ba53..f68fd992c2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/snapshot_detail.py b/src/oci/apm_traces/models/snapshot_detail.py index b34c247903..74a25cee92 100644 --- a/src/oci/apm_traces/models/snapshot_detail.py +++ b/src/oci/apm_traces/models/snapshot_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/span.py b/src/oci/apm_traces/models/span.py index 21181576df..08868a1b66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/span_log.py b/src/oci/apm_traces/models/span_log.py index 928198e724..afa8cb3371 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/span_log_collection.py b/src/oci/apm_traces/models/span_log_collection.py index c391b7dcfb..3dce102bd2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/span_snapshot.py b/src/oci/apm_traces/models/span_snapshot.py index 2f3fe72708..c9b75abf07 100644 --- a/src/oci/apm_traces/models/span_snapshot.py +++ b/src/oci/apm_traces/models/span_snapshot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/stack_trace_element.py b/src/oci/apm_traces/models/stack_trace_element.py index 3fb552d501..bff2b32e26 100644 --- a/src/oci/apm_traces/models/stack_trace_element.py +++ b/src/oci/apm_traces/models/stack_trace_element.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/tag.py b/src/oci/apm_traces/models/tag.py index ca0778764f..46fca1ac1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/tag_metadata.py b/src/oci/apm_traces/models/tag_metadata.py index 7c25dcfdfc..fba5e554c0 100644 --- a/src/oci/apm_traces/models/tag_metadata.py +++ b/src/oci/apm_traces/models/tag_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/thread_snapshot.py b/src/oci/apm_traces/models/thread_snapshot.py index 171a642b86..f1d5813a3c 100644 --- a/src/oci/apm_traces/models/thread_snapshot.py +++ b/src/oci/apm_traces/models/thread_snapshot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/trace.py b/src/oci/apm_traces/models/trace.py index 1796c0a766..1080db0e2f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/trace_service_summary.py b/src/oci/apm_traces/models/trace_service_summary.py index cbbaa3ad63..8661eb77ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/trace_snapshot.py b/src/oci/apm_traces/models/trace_snapshot.py index 03f5bdd412..2790c1093b 100644 --- a/src/oci/apm_traces/models/trace_snapshot.py +++ b/src/oci/apm_traces/models/trace_snapshot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/models/trace_span_summary.py b/src/oci/apm_traces/models/trace_span_summary.py index 17b1fca03a..684f8f5846 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/query_client.py b/src/oci/apm_traces/query_client.py index 0144f44dbc..7e244c2276 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/query_client_composite_operations.py b/src/oci/apm_traces/query_client_composite_operations.py index ef836fd85d..9a4c31e74b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/trace_client.py b/src/oci/apm_traces/trace_client.py index 5a9e75c6e8..1242b23af2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/apm_traces/trace_client_composite_operations.py b/src/oci/apm_traces/trace_client_composite_operations.py index 7c99d5d296..4674fdca6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/appmgmt_control/__init__.py b/src/oci/appmgmt_control/__init__.py index 74c7bb8f24..3d398b6552 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/appmgmt_control/appmgmt_control_client.py b/src/oci/appmgmt_control/appmgmt_control_client.py index 9e612c66a3..7f38948fc2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 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 d97ecf4eb6..ed5ee3e412 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/appmgmt_control/models/__init__.py b/src/oci/appmgmt_control/models/__init__.py index 543f05f158..21bcc215c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/appmgmt_control/models/monitored_instance.py b/src/oci/appmgmt_control/models/monitored_instance.py index c38d18a954..9f4e3a10fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/appmgmt_control/models/monitored_instance_collection.py b/src/oci/appmgmt_control/models/monitored_instance_collection.py index d038468402..129011e0d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/appmgmt_control/models/monitored_instance_summary.py b/src/oci/appmgmt_control/models/monitored_instance_summary.py index ff7f6176e2..ecd79cb3c2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/appmgmt_control/models/work_request.py b/src/oci/appmgmt_control/models/work_request.py index 7bd24ba2bc..a82be9d5a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/appmgmt_control/models/work_request_error.py b/src/oci/appmgmt_control/models/work_request_error.py index 5ab008aea3..ad1fdd7028 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 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 d2ff1fdbd0..11e8dd8bbb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 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 d19d653046..fcf4e4f5cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 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 2e63ef23ad..1d3e804415 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/appmgmt_control/models/work_request_resource.py b/src/oci/appmgmt_control/models/work_request_resource.py index 6e851dca3d..e105ab4598 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/appmgmt_control/models/work_request_summary.py b/src/oci/appmgmt_control/models/work_request_summary.py index 2ba6eb504c..93901b292b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 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 29e92a3ab1..7ad54101ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/artifacts/__init__.py b/src/oci/artifacts/__init__.py index 63cd22968e..aa42eb96e5 100644 --- a/src/oci/artifacts/__init__.py +++ b/src/oci/artifacts/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/artifacts_client.py b/src/oci/artifacts/artifacts_client.py index c363eadf54..c8a3088a0d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/artifacts_client_composite_operations.py b/src/oci/artifacts/artifacts_client_composite_operations.py index c0d5a06452..5ac0ae9107 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/__init__.py b/src/oci/artifacts/models/__init__.py index b2888d6aa2..8785ad776b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a87ae4bc57..13c74835cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/change_repository_compartment_details.py b/src/oci/artifacts/models/change_repository_compartment_details.py index b4d3589e05..eb2c0d76a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_configuration.py b/src/oci/artifacts/models/container_configuration.py index 848c83e4d3..71ebb0bad2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_image.py b/src/oci/artifacts/models/container_image.py index 271db0d4cd..08f07ce164 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_image_collection.py b/src/oci/artifacts/models/container_image_collection.py index 7c0c83517e..b68006069a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_image_layer.py b/src/oci/artifacts/models/container_image_layer.py index 7ca6f25ae7..163b247e6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_image_signature.py b/src/oci/artifacts/models/container_image_signature.py index 7654d81729..36c0ac0b97 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_image_signature_collection.py b/src/oci/artifacts/models/container_image_signature_collection.py index 1cc01b91ab..eac9ca8e03 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_image_signature_summary.py b/src/oci/artifacts/models/container_image_signature_summary.py index 09952b578f..19a541f594 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_image_summary.py b/src/oci/artifacts/models/container_image_summary.py index e8028707e9..d8a67e5f1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_repository.py b/src/oci/artifacts/models/container_repository.py index 7025e3fb7b..ed8703f888 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_repository_collection.py b/src/oci/artifacts/models/container_repository_collection.py index 28b2689b31..6fc21f495e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_repository_readme.py b/src/oci/artifacts/models/container_repository_readme.py index 865cc0895f..a022e89ae6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_repository_summary.py b/src/oci/artifacts/models/container_repository_summary.py index 6f7f137c8a..7a6620f499 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/container_version.py b/src/oci/artifacts/models/container_version.py index 2eb94379d3..e9edbb452a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3cabf12340..e8cd459aba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/create_container_repository_details.py b/src/oci/artifacts/models/create_container_repository_details.py index eefa5e9cf5..de055f9e0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/create_generic_repository_details.py b/src/oci/artifacts/models/create_generic_repository_details.py index 3b920659a6..50952a06fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/create_repository_details.py b/src/oci/artifacts/models/create_repository_details.py index 1c4e3bf79c..6de24add81 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/generic_artifact.py b/src/oci/artifacts/models/generic_artifact.py index 097c36a3b0..5ea1793fa7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/generic_artifact_collection.py b/src/oci/artifacts/models/generic_artifact_collection.py index 35cf1144e0..825610a75e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/generic_artifact_summary.py b/src/oci/artifacts/models/generic_artifact_summary.py index 54685dbb69..ef25f25799 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/generic_repository.py b/src/oci/artifacts/models/generic_repository.py index 5dafff0a33..c7508ea1cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/generic_repository_summary.py b/src/oci/artifacts/models/generic_repository_summary.py index b6309ab875..bd8087036b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/remove_container_version_details.py b/src/oci/artifacts/models/remove_container_version_details.py index e5f40ecdc4..05c4bc37d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/repository.py b/src/oci/artifacts/models/repository.py index 2569becd09..51015c5f0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/repository_collection.py b/src/oci/artifacts/models/repository_collection.py index 893a085b04..b38599d3c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/repository_summary.py b/src/oci/artifacts/models/repository_summary.py index d5ee9310c6..99764f10aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/restore_container_image_details.py b/src/oci/artifacts/models/restore_container_image_details.py index be45bb11c1..5e2893c673 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/update_container_configuration_details.py b/src/oci/artifacts/models/update_container_configuration_details.py index 5cbc7cbf6e..6c3bceab81 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/update_container_image_details.py b/src/oci/artifacts/models/update_container_image_details.py index df11cc5d82..1dca4f67af 100644 --- a/src/oci/artifacts/models/update_container_image_details.py +++ b/src/oci/artifacts/models/update_container_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/update_container_image_signature_details.py b/src/oci/artifacts/models/update_container_image_signature_details.py index 21abcc5cc2..6808344441 100644 --- a/src/oci/artifacts/models/update_container_image_signature_details.py +++ b/src/oci/artifacts/models/update_container_image_signature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/update_container_repository_details.py b/src/oci/artifacts/models/update_container_repository_details.py index 61a3b88ce3..acf09d65b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8f73c26b88..389297330f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/update_generic_artifact_details.py b/src/oci/artifacts/models/update_generic_artifact_details.py index 32a7988e27..e29ea786ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/update_generic_repository_details.py b/src/oci/artifacts/models/update_generic_repository_details.py index 6f13033b9e..3f609834df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/artifacts/models/update_repository_details.py b/src/oci/artifacts/models/update_repository_details.py index cfe1fa3eb2..4777b5158d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/audit/__init__.py b/src/oci/audit/__init__.py index 3e6de0f1eb..c6febb2f55 100644 --- a/src/oci/audit/__init__.py +++ b/src/oci/audit/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/audit_client.py b/src/oci/audit/audit_client.py index fd496853f6..55c1456bce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/audit_client_composite_operations.py b/src/oci/audit/audit_client_composite_operations.py index 2f4ce312b7..f0d7be8738 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/models/__init__.py b/src/oci/audit/models/__init__.py index ef94206bed..8d9c20a854 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/models/audit_event.py b/src/oci/audit/models/audit_event.py index bd651f4e08..0a301a078e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/models/configuration.py b/src/oci/audit/models/configuration.py index 403e187fd0..56bd077da5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/models/data.py b/src/oci/audit/models/data.py index d306fc73e4..59c5e4f870 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/models/identity.py b/src/oci/audit/models/identity.py index b40e0c9012..dae8ca4c5f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/models/request.py b/src/oci/audit/models/request.py index 96bcde5fe1..3a5500f4af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/models/response.py b/src/oci/audit/models/response.py index 98c9656efe..1c5809ab58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/models/state_change.py b/src/oci/audit/models/state_change.py index 63f3590440..37c24c2594 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/audit/models/update_configuration_details.py b/src/oci/audit/models/update_configuration_details.py index 5b22039887..7aa07b37a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190901 diff --git a/src/oci/auth/__init__.py b/src/oci/auth/__init__.py index 055e153882..b4f818578e 100644 --- a/src/oci/auth/__init__.py +++ b/src/oci/auth/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 bfe88fb6fb..6bc2fae53c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/auth/certificate_retriever.py b/src/oci/auth/certificate_retriever.py index 5c2f2b0162..cb30995db7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 f940c53b3f..efb415aada 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 952ef98d7e..760b03b79b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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 61a30ae2f4..4f6bbbe449 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ff99da647c..bbabf78fd1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 339ab2c42f..d8e030335c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 f24be9b94f..587acee733 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 e631910281..2e4dfe49ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/ephemeral_resource_principals_v21_signer.py b/src/oci/auth/signers/ephemeral_resource_principals_v21_signer.py index b6344112b5..dabb558c30 100644 --- a/src/oci/auth/signers/ephemeral_resource_principals_v21_signer.py +++ b/src/oci/auth/signers/ephemeral_resource_principals_v21_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/instance_principals_delegation_token_signer.py b/src/oci/auth/signers/instance_principals_delegation_token_signer.py index 9dfef09419..bb0c404fd2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 79fff364b4..cb2472bbdc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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/key_pair_signer.py b/src/oci/auth/signers/key_pair_signer.py index 6c977a1fac..216be92afe 100644 --- a/src/oci/auth/signers/key_pair_signer.py +++ b/src/oci/auth/signers/key_pair_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/auth/signers/nested_resource_principals_signer.py b/src/oci/auth/signers/nested_resource_principals_signer.py index ee6e61c26a..a946ce46ae 100644 --- a/src/oci/auth/signers/nested_resource_principals_signer.py +++ b/src/oci/auth/signers/nested_resource_principals_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/oke_workload_identity_resource_principal_signer.py b/src/oci/auth/signers/oke_workload_identity_resource_principal_signer.py index 6f549624ed..8da6fddb21 100644 --- a/src/oci/auth/signers/oke_workload_identity_resource_principal_signer.py +++ b/src/oci/auth/signers/oke_workload_identity_resource_principal_signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/resource_principals_delegation_token_signer.py b/src/oci/auth/signers/resource_principals_delegation_token_signer.py index 081cd4a610..6a3c5f4f78 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 6fd9355b63..0a5a00e223 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 fdc6f7cc9c..5e1acfbe70 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 92cde440ee..0eed5db98b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 dec72b39ee..20c96ede3e 100644 --- a/src/oci/autoscaling/__init__.py +++ b/src/oci/autoscaling/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/auto_scaling_client.py b/src/oci/autoscaling/auto_scaling_client.py index 40af410165..44b614bf81 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/auto_scaling_client_composite_operations.py b/src/oci/autoscaling/auto_scaling_client_composite_operations.py index 4796685907..97f51d55f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/__init__.py b/src/oci/autoscaling/models/__init__.py index a22c753418..2d5a1ea5ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/action.py b/src/oci/autoscaling/models/action.py index bbe4d00750..fec8200656 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/auto_scaling_configuration.py b/src/oci/autoscaling/models/auto_scaling_configuration.py index 441502e157..2d90047c41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/auto_scaling_configuration_summary.py b/src/oci/autoscaling/models/auto_scaling_configuration_summary.py index 7af2d6bba7..5524b74ff5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/auto_scaling_policy.py b/src/oci/autoscaling/models/auto_scaling_policy.py index c9d634a251..c7e914060b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/auto_scaling_policy_summary.py b/src/oci/autoscaling/models/auto_scaling_policy_summary.py index 720fd3a86a..576d09f4f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/capacity.py b/src/oci/autoscaling/models/capacity.py index 79bed42252..24a86e842b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 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 79301b733f..115a936a8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/condition.py b/src/oci/autoscaling/models/condition.py index 1785805d61..4deb5f8e48 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 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 f4442f64e3..db77ead478 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 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 cc3c90c5ce..461d1c478e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/create_condition_details.py b/src/oci/autoscaling/models/create_condition_details.py index 6cc31347f1..554d5bc47a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/create_scheduled_policy_details.py b/src/oci/autoscaling/models/create_scheduled_policy_details.py index d68e0b51ac..f50b753f9d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/create_threshold_policy_details.py b/src/oci/autoscaling/models/create_threshold_policy_details.py index 48cc43303c..423f3316ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/cron_execution_schedule.py b/src/oci/autoscaling/models/cron_execution_schedule.py index 765e25615e..437a15323a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/execution_schedule.py b/src/oci/autoscaling/models/execution_schedule.py index a0b418ea35..3fe67f936d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/instance_pool_resource.py b/src/oci/autoscaling/models/instance_pool_resource.py index 2728304193..17ef2a8cd2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/metric.py b/src/oci/autoscaling/models/metric.py index bdd490e3cb..b809547fd4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/resource.py b/src/oci/autoscaling/models/resource.py index 1d12dfdd2c..3db50e9396 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/resource_action.py b/src/oci/autoscaling/models/resource_action.py index 94f6686393..87c3e2dd3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/resource_power_action.py b/src/oci/autoscaling/models/resource_power_action.py index 5feac079ad..7b1504eb47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/scheduled_policy.py b/src/oci/autoscaling/models/scheduled_policy.py index 6b5eb2ef6b..41b4c57c69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/threshold.py b/src/oci/autoscaling/models/threshold.py index 89f2e3b765..9bb40b31f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/threshold_policy.py b/src/oci/autoscaling/models/threshold_policy.py index 3fd648dbc9..93c0af5206 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 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 4f7685d3de..4b8c870ccd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 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 82a58e3c53..bb8cf0edd1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/update_condition_details.py b/src/oci/autoscaling/models/update_condition_details.py index 0569750025..9caf69064a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/update_scheduled_policy_details.py b/src/oci/autoscaling/models/update_scheduled_policy_details.py index 2d2b821fbf..bf7b9685b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/autoscaling/models/update_threshold_policy_details.py b/src/oci/autoscaling/models/update_threshold_policy_details.py index e8411f3d2c..ccf2b68857 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/base_client.py b/src/oci/base_client.py index d6ab4870e3..104fb33014 100644 --- a/src/oci/base_client.py +++ b/src/oci/base_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. from __future__ import absolute_import @@ -703,8 +703,9 @@ def request(self, request, allow_control_chars=None, operation_name=None, api_re timestamp = datetime.now(timezone.utc).isoformat() service_code, message, deserialized_data = self.get_deserialized_service_code_and_message(response, allow_control_chars) - if response.status_code == 413 and service_code == 'RequestEntityTooLarge': - self.logger.warning("Recieved a 413/RequestEntityTooLarge from {}, resetting session".format(target_service)) + if (response.status_code == 413 and service_code == 'MissingHeaderBodySeparatorDefect') or (response.status_code == 412 and service_code == 'IfNoneMatchFailed'): + self.logger.warning( + f"Received a {response.status_code}/{service_code} from {target_service}, resetting session") _ = response.content # Read the response content to enable closing the socket. response.close() new_session = copy.copy(self.session) diff --git a/src/oci/bastion/__init__.py b/src/oci/bastion/__init__.py index 87e73898e6..e207d94da1 100644 --- a/src/oci/bastion/__init__.py +++ b/src/oci/bastion/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/bastion_client.py b/src/oci/bastion/bastion_client.py index dc5bb9e9cd..91dd0a49cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/bastion_client_composite_operations.py b/src/oci/bastion/bastion_client_composite_operations.py index e4fde3a3af..9e54a74b93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/__init__.py b/src/oci/bastion/models/__init__.py index 9012d438c6..30f4014808 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/bastion.py b/src/oci/bastion/models/bastion.py index 58a12a0d88..8195004950 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/bastion_summary.py b/src/oci/bastion/models/bastion_summary.py index 311f4aba75..7c083adb57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/change_bastion_compartment_details.py b/src/oci/bastion/models/change_bastion_compartment_details.py index 3286f3a3f5..7e1a943499 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/create_bastion_details.py b/src/oci/bastion/models/create_bastion_details.py index 3947622d82..9b03ed155e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/create_dynamic_port_forwarding_session_target_resource_details.py b/src/oci/bastion/models/create_dynamic_port_forwarding_session_target_resource_details.py index 48f127fd4d..c7c7787fe9 100644 --- a/src/oci/bastion/models/create_dynamic_port_forwarding_session_target_resource_details.py +++ b/src/oci/bastion/models/create_dynamic_port_forwarding_session_target_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 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 6aa8c15ac2..f1cddfda9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 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 1a1c0ed26a..e3e9035181 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/create_session_details.py b/src/oci/bastion/models/create_session_details.py index 74b98169c3..81a3ee0b15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 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 fc6862b07f..b0917d696c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/dynamic_port_forwarding_session_target_resource_details.py b/src/oci/bastion/models/dynamic_port_forwarding_session_target_resource_details.py index 339c7739c3..698dcd99a9 100644 --- a/src/oci/bastion/models/dynamic_port_forwarding_session_target_resource_details.py +++ b/src/oci/bastion/models/dynamic_port_forwarding_session_target_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 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 ab4cad41f0..7c76c74a0d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 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 427483cdd0..82d7eed09a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/public_key_details.py b/src/oci/bastion/models/public_key_details.py index afa7e9655f..e5b52f5843 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/session.py b/src/oci/bastion/models/session.py index 6948163756..d08f3de920 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/session_summary.py b/src/oci/bastion/models/session_summary.py index 206dadb571..badac9c8fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/target_resource_details.py b/src/oci/bastion/models/target_resource_details.py index c32f2cfdf2..fe5de1b969 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/update_bastion_details.py b/src/oci/bastion/models/update_bastion_details.py index 1fea766d11..c3edf23b6f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/update_session_details.py b/src/oci/bastion/models/update_session_details.py index 37b6c2c4e8..0959f980c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/work_request.py b/src/oci/bastion/models/work_request.py index 3507fbb519..2edf702ba3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/work_request_error.py b/src/oci/bastion/models/work_request_error.py index bbd9710fe6..8a2492b2a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/work_request_log_entry.py b/src/oci/bastion/models/work_request_log_entry.py index a6508dfcb3..5ba88a2b68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/work_request_resource.py b/src/oci/bastion/models/work_request_resource.py index d59707e3da..d5d619c2ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bastion/models/work_request_summary.py b/src/oci/bastion/models/work_request_summary.py index 33b3b3a2e8..673b5d9e59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210331 diff --git a/src/oci/bds/__init__.py b/src/oci/bds/__init__.py index 2c893adae1..18df3c7e05 100644 --- a/src/oci/bds/__init__.py +++ b/src/oci/bds/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/bds_client.py b/src/oci/bds/bds_client.py index bbb9b81e4c..127fcd9e08 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/bds_client_composite_operations.py b/src/oci/bds/bds_client_composite_operations.py index 953f17d434..45ffe8122d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/__init__.py b/src/oci/bds/models/__init__.py index 50e27938cc..1f9ba9756c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 2e3a7e9d52..7815562fb3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/activate_iam_user_sync_configuration_details.py b/src/oci/bds/models/activate_iam_user_sync_configuration_details.py index 85710de37b..c27941a1ba 100644 --- a/src/oci/bds/models/activate_iam_user_sync_configuration_details.py +++ b/src/oci/bds/models/activate_iam_user_sync_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/activate_upst_configuration_details.py b/src/oci/bds/models/activate_upst_configuration_details.py index 7e4f754deb..dd21bdd9a8 100644 --- a/src/oci/bds/models/activate_upst_configuration_details.py +++ b/src/oci/bds/models/activate_upst_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_auto_scale_policy_details.py b/src/oci/bds/models/add_auto_scale_policy_details.py index ffc321b21b..a0bb864909 100644 --- a/src/oci/bds/models/add_auto_scale_policy_details.py +++ b/src/oci/bds/models/add_auto_scale_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 ef8cc0662e..05b67cc554 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_block_storage_details.py b/src/oci/bds/models/add_block_storage_details.py index 88ceaff16f..fecd961ab8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_cloud_sql_details.py b/src/oci/bds/models/add_cloud_sql_details.py index 1c0ffa6ba0..da7fe42a8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_kafka_details.py b/src/oci/bds/models/add_kafka_details.py index 3c0981b2fb..b23f382b0b 100644 --- a/src/oci/bds/models/add_kafka_details.py +++ b/src/oci/bds/models/add_kafka_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_master_nodes_details.py b/src/oci/bds/models/add_master_nodes_details.py index e8ed43be7f..e24ebcf25c 100644 --- a/src/oci/bds/models/add_master_nodes_details.py +++ b/src/oci/bds/models/add_master_nodes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_metric_based_horizontal_scaling_policy_details.py b/src/oci/bds/models/add_metric_based_horizontal_scaling_policy_details.py index 8815241ec6..bc1d5db7bc 100644 --- a/src/oci/bds/models/add_metric_based_horizontal_scaling_policy_details.py +++ b/src/oci/bds/models/add_metric_based_horizontal_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_metric_based_vertical_scaling_policy_details.py b/src/oci/bds/models/add_metric_based_vertical_scaling_policy_details.py index 49fac658d6..a43ae16960 100644 --- a/src/oci/bds/models/add_metric_based_vertical_scaling_policy_details.py +++ b/src/oci/bds/models/add_metric_based_vertical_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_schedule_based_horizontal_scaling_policy_details.py b/src/oci/bds/models/add_schedule_based_horizontal_scaling_policy_details.py index 884105265a..415da6e767 100644 --- a/src/oci/bds/models/add_schedule_based_horizontal_scaling_policy_details.py +++ b/src/oci/bds/models/add_schedule_based_horizontal_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_schedule_based_vertical_scaling_policy_details.py b/src/oci/bds/models/add_schedule_based_vertical_scaling_policy_details.py index 8907cccb9a..b35c8ee2d9 100644 --- a/src/oci/bds/models/add_schedule_based_vertical_scaling_policy_details.py +++ b/src/oci/bds/models/add_schedule_based_vertical_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_utility_nodes_details.py b/src/oci/bds/models/add_utility_nodes_details.py index daed8a5075..04405ca4a6 100644 --- a/src/oci/bds/models/add_utility_nodes_details.py +++ b/src/oci/bds/models/add_utility_nodes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/add_worker_nodes_details.py b/src/oci/bds/models/add_worker_nodes_details.py index 8dfafb987e..54e2b9faa2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/auto_scale_policy.py b/src/oci/bds/models/auto_scale_policy.py index 1e326988f0..64b824afca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/auto_scale_policy_details.py b/src/oci/bds/models/auto_scale_policy_details.py index 36268d8268..46b3943d9f 100644 --- a/src/oci/bds/models/auto_scale_policy_details.py +++ b/src/oci/bds/models/auto_scale_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 a84cdb18ac..c539d09e9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/auto_scale_policy_rule.py b/src/oci/bds/models/auto_scale_policy_rule.py index c7c0f25261..ee59068eb4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/auto_scaling_configuration.py b/src/oci/bds/models/auto_scaling_configuration.py index acaa19b877..cf162a0c23 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/auto_scaling_configuration_summary.py b/src/oci/bds/models/auto_scaling_configuration_summary.py index b2c98b8e19..c15fd101ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/backup_node_details.py b/src/oci/bds/models/backup_node_details.py index e1848519c4..c8104143e6 100644 --- a/src/oci/bds/models/backup_node_details.py +++ b/src/oci/bds/models/backup_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/batching_based_odh_patching_config.py b/src/oci/bds/models/batching_based_odh_patching_config.py index 9188f6cfc9..d6bc5765dd 100644 --- a/src/oci/bds/models/batching_based_odh_patching_config.py +++ b/src/oci/bds/models/batching_based_odh_patching_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/batching_based_patching_configs.py b/src/oci/bds/models/batching_based_patching_configs.py index 06287b7822..2d4395de28 100644 --- a/src/oci/bds/models/batching_based_patching_configs.py +++ b/src/oci/bds/models/batching_based_patching_configs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/bds_api_key.py b/src/oci/bds/models/bds_api_key.py index 1038f9ec88..272f5cb236 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/bds_api_key_summary.py b/src/oci/bds/models/bds_api_key_summary.py index b00e200577..d9afe6d71a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/bds_cluster_version_summary.py b/src/oci/bds/models/bds_cluster_version_summary.py index bbb33478d5..dda23bdeb1 100644 --- a/src/oci/bds/models/bds_cluster_version_summary.py +++ b/src/oci/bds/models/bds_cluster_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/bds_instance.py b/src/oci/bds/models/bds_instance.py index e04dadd485..c6c331d202 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/bds_instance_summary.py b/src/oci/bds/models/bds_instance_summary.py index d6c01e86c5..6214242a3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/bds_metastore_configuration.py b/src/oci/bds/models/bds_metastore_configuration.py index 18fc2e1ff9..892e724ac5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/bds_metastore_configuration_summary.py b/src/oci/bds/models/bds_metastore_configuration_summary.py index 40094dcb30..8658c5041f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/certificate_service_info_details.py b/src/oci/bds/models/certificate_service_info_details.py index b6281b40f4..4d86b38fdb 100644 --- a/src/oci/bds/models/certificate_service_info_details.py +++ b/src/oci/bds/models/certificate_service_info_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/certificate_service_info_summary.py b/src/oci/bds/models/certificate_service_info_summary.py index fd530b9951..80baa644ba 100644 --- a/src/oci/bds/models/certificate_service_info_summary.py +++ b/src/oci/bds/models/certificate_service_info_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 b5be1e2145..aad63a29ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/change_shape_details.py b/src/oci/bds/models/change_shape_details.py index ed0f373dcb..70ae4e4288 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/change_shape_nodes.py b/src/oci/bds/models/change_shape_nodes.py index 32c46eed30..a9496ea3eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/cloud_sql_details.py b/src/oci/bds/models/cloud_sql_details.py index e575fcf55d..7ab2744822 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/cluster_details.py b/src/oci/bds/models/cluster_details.py index 202477c3e0..21c9a51d0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 e92627e91a..f506d4621c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/create_bds_instance_details.py b/src/oci/bds/models/create_bds_instance_details.py index e38ec67f99..253cbfc53f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 26928e0cd4..80244cb0a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/create_identity_configuration_details.py b/src/oci/bds/models/create_identity_configuration_details.py index 6b33723b73..51063bc1d4 100644 --- a/src/oci/bds/models/create_identity_configuration_details.py +++ b/src/oci/bds/models/create_identity_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/create_node_backup_configuration_details.py b/src/oci/bds/models/create_node_backup_configuration_details.py index 913c4bda3c..f16f5cf220 100644 --- a/src/oci/bds/models/create_node_backup_configuration_details.py +++ b/src/oci/bds/models/create_node_backup_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/create_node_details.py b/src/oci/bds/models/create_node_details.py index 321c965fba..2a076724f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/create_node_replace_configuration_details.py b/src/oci/bds/models/create_node_replace_configuration_details.py index 21f6bab984..2d855db56b 100644 --- a/src/oci/bds/models/create_node_replace_configuration_details.py +++ b/src/oci/bds/models/create_node_replace_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/create_resource_principal_configuration_details.py b/src/oci/bds/models/create_resource_principal_configuration_details.py index 7ece2ff0f5..1e86991227 100644 --- a/src/oci/bds/models/create_resource_principal_configuration_details.py +++ b/src/oci/bds/models/create_resource_principal_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/day_based_horizontal_scaling_schedule_details.py b/src/oci/bds/models/day_based_horizontal_scaling_schedule_details.py index fdca6a56ab..0438826d8c 100644 --- a/src/oci/bds/models/day_based_horizontal_scaling_schedule_details.py +++ b/src/oci/bds/models/day_based_horizontal_scaling_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/day_based_vertical_scaling_schedule_details.py b/src/oci/bds/models/day_based_vertical_scaling_schedule_details.py index 05d77079c7..d20a830b37 100644 --- a/src/oci/bds/models/day_based_vertical_scaling_schedule_details.py +++ b/src/oci/bds/models/day_based_vertical_scaling_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/deactivate_iam_user_sync_configuration_details.py b/src/oci/bds/models/deactivate_iam_user_sync_configuration_details.py index bddee5c999..5ebaaac8e9 100644 --- a/src/oci/bds/models/deactivate_iam_user_sync_configuration_details.py +++ b/src/oci/bds/models/deactivate_iam_user_sync_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/deactivate_upst_configuration_details.py b/src/oci/bds/models/deactivate_upst_configuration_details.py index f51f344e32..c17b7f4f24 100644 --- a/src/oci/bds/models/deactivate_upst_configuration_details.py +++ b/src/oci/bds/models/deactivate_upst_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/default_error.py b/src/oci/bds/models/default_error.py index 0fd74f9a63..1535d0fbfc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/disable_certificate_details.py b/src/oci/bds/models/disable_certificate_details.py index d77f60b165..9e4d3080b8 100644 --- a/src/oci/bds/models/disable_certificate_details.py +++ b/src/oci/bds/models/disable_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/domain_based_odh_patching_config.py b/src/oci/bds/models/domain_based_odh_patching_config.py index e3a9b64667..d3541ab891 100644 --- a/src/oci/bds/models/domain_based_odh_patching_config.py +++ b/src/oci/bds/models/domain_based_odh_patching_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/domain_based_patching_configs.py b/src/oci/bds/models/domain_based_patching_configs.py index 12dfe594a4..eafcc88342 100644 --- a/src/oci/bds/models/domain_based_patching_configs.py +++ b/src/oci/bds/models/domain_based_patching_configs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/downtime_based_odh_patching_config.py b/src/oci/bds/models/downtime_based_odh_patching_config.py index 00b8ce5fd2..9db062d1b8 100644 --- a/src/oci/bds/models/downtime_based_odh_patching_config.py +++ b/src/oci/bds/models/downtime_based_odh_patching_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/downtime_based_patching_configs.py b/src/oci/bds/models/downtime_based_patching_configs.py index 9930c9a331..bfdc45ff42 100644 --- a/src/oci/bds/models/downtime_based_patching_configs.py +++ b/src/oci/bds/models/downtime_based_patching_configs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/enable_certificate_details.py b/src/oci/bds/models/enable_certificate_details.py index 6ccc2f099f..50854a235c 100644 --- a/src/oci/bds/models/enable_certificate_details.py +++ b/src/oci/bds/models/enable_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/execute_bootstrap_script_details.py b/src/oci/bds/models/execute_bootstrap_script_details.py index cda83f45b7..5596103690 100644 --- a/src/oci/bds/models/execute_bootstrap_script_details.py +++ b/src/oci/bds/models/execute_bootstrap_script_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/force_refresh_resource_principal_details.py b/src/oci/bds/models/force_refresh_resource_principal_details.py index 69531d8256..25dd018e8a 100644 --- a/src/oci/bds/models/force_refresh_resource_principal_details.py +++ b/src/oci/bds/models/force_refresh_resource_principal_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/horizontal_scaling_schedule_details.py b/src/oci/bds/models/horizontal_scaling_schedule_details.py index 0129ebbb6a..299d253299 100644 --- a/src/oci/bds/models/horizontal_scaling_schedule_details.py +++ b/src/oci/bds/models/horizontal_scaling_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/host_cert_details.py b/src/oci/bds/models/host_cert_details.py index ae30cc5637..9e55283f38 100644 --- a/src/oci/bds/models/host_cert_details.py +++ b/src/oci/bds/models/host_cert_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/host_specific_certificate_details.py b/src/oci/bds/models/host_specific_certificate_details.py index db6fb2e9ec..fc6ead0b51 100644 --- a/src/oci/bds/models/host_specific_certificate_details.py +++ b/src/oci/bds/models/host_specific_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/iam_user_sync_configuration.py b/src/oci/bds/models/iam_user_sync_configuration.py index 44605177ee..e514e14211 100644 --- a/src/oci/bds/models/iam_user_sync_configuration.py +++ b/src/oci/bds/models/iam_user_sync_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/iam_user_sync_configuration_details.py b/src/oci/bds/models/iam_user_sync_configuration_details.py index 4a52da5396..9b0e188d52 100644 --- a/src/oci/bds/models/iam_user_sync_configuration_details.py +++ b/src/oci/bds/models/iam_user_sync_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/identity_configuration.py b/src/oci/bds/models/identity_configuration.py index c3528d1baf..97c12e2896 100644 --- a/src/oci/bds/models/identity_configuration.py +++ b/src/oci/bds/models/identity_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/identity_configuration_summary.py b/src/oci/bds/models/identity_configuration_summary.py index 361c129e32..0df6ba178d 100644 --- a/src/oci/bds/models/identity_configuration_summary.py +++ b/src/oci/bds/models/identity_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/install_os_patch_details.py b/src/oci/bds/models/install_os_patch_details.py index 7ed534acb8..327cee2d8f 100644 --- a/src/oci/bds/models/install_os_patch_details.py +++ b/src/oci/bds/models/install_os_patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/install_patch_details.py b/src/oci/bds/models/install_patch_details.py index 3bd20e9368..9a309f82b7 100644 --- a/src/oci/bds/models/install_patch_details.py +++ b/src/oci/bds/models/install_patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/kerberos_details.py b/src/oci/bds/models/kerberos_details.py index 8c03adeca0..8e50dace5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/level_type_details.py b/src/oci/bds/models/level_type_details.py index 593b628d52..9f38d31e7e 100644 --- a/src/oci/bds/models/level_type_details.py +++ b/src/oci/bds/models/level_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/metric_based_horizontal_scale_in_config.py b/src/oci/bds/models/metric_based_horizontal_scale_in_config.py index e9a46e6ab4..0a420f7a74 100644 --- a/src/oci/bds/models/metric_based_horizontal_scale_in_config.py +++ b/src/oci/bds/models/metric_based_horizontal_scale_in_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/metric_based_horizontal_scale_out_config.py b/src/oci/bds/models/metric_based_horizontal_scale_out_config.py index c20d21748d..71d4d6a539 100644 --- a/src/oci/bds/models/metric_based_horizontal_scale_out_config.py +++ b/src/oci/bds/models/metric_based_horizontal_scale_out_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/metric_based_horizontal_scaling_policy_details.py b/src/oci/bds/models/metric_based_horizontal_scaling_policy_details.py index 74c3548b83..2ed0a44a4b 100644 --- a/src/oci/bds/models/metric_based_horizontal_scaling_policy_details.py +++ b/src/oci/bds/models/metric_based_horizontal_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/metric_based_vertical_scale_down_config.py b/src/oci/bds/models/metric_based_vertical_scale_down_config.py index 5b8fd561ba..a2bf521926 100644 --- a/src/oci/bds/models/metric_based_vertical_scale_down_config.py +++ b/src/oci/bds/models/metric_based_vertical_scale_down_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/metric_based_vertical_scale_up_config.py b/src/oci/bds/models/metric_based_vertical_scale_up_config.py index 959dc25a1c..af94b9193c 100644 --- a/src/oci/bds/models/metric_based_vertical_scale_up_config.py +++ b/src/oci/bds/models/metric_based_vertical_scale_up_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/metric_based_vertical_scaling_policy_details.py b/src/oci/bds/models/metric_based_vertical_scaling_policy_details.py index 7eda77b8c2..932278f927 100644 --- a/src/oci/bds/models/metric_based_vertical_scaling_policy_details.py +++ b/src/oci/bds/models/metric_based_vertical_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/metric_threshold_rule.py b/src/oci/bds/models/metric_threshold_rule.py index 9a10389425..6fb4d9ee5c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/network_config.py b/src/oci/bds/models/network_config.py index 7768bbe66f..f3e99ec0e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node.py b/src/oci/bds/models/node.py index 1a4ed07b85..051deced0a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node_backup.py b/src/oci/bds/models/node_backup.py index e4d38a1313..ab5313ae7e 100644 --- a/src/oci/bds/models/node_backup.py +++ b/src/oci/bds/models/node_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node_backup_configuration.py b/src/oci/bds/models/node_backup_configuration.py index 2cd7905d9a..97b7cd4934 100644 --- a/src/oci/bds/models/node_backup_configuration.py +++ b/src/oci/bds/models/node_backup_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node_backup_configuration_summary.py b/src/oci/bds/models/node_backup_configuration_summary.py index 2875b600a1..260f5d8ac0 100644 --- a/src/oci/bds/models/node_backup_configuration_summary.py +++ b/src/oci/bds/models/node_backup_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node_backup_summary.py b/src/oci/bds/models/node_backup_summary.py index 5d52099946..2695e349b3 100644 --- a/src/oci/bds/models/node_backup_summary.py +++ b/src/oci/bds/models/node_backup_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node_level_details.py b/src/oci/bds/models/node_level_details.py index 121f3d4567..c2fee4dd3b 100644 --- a/src/oci/bds/models/node_level_details.py +++ b/src/oci/bds/models/node_level_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node_replace_configuration.py b/src/oci/bds/models/node_replace_configuration.py index 2330a86932..88266fb904 100644 --- a/src/oci/bds/models/node_replace_configuration.py +++ b/src/oci/bds/models/node_replace_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node_replace_configuration_summary.py b/src/oci/bds/models/node_replace_configuration_summary.py index 4903baf0c6..aa04e7d92a 100644 --- a/src/oci/bds/models/node_replace_configuration_summary.py +++ b/src/oci/bds/models/node_replace_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node_type_level_details.py b/src/oci/bds/models/node_type_level_details.py index fb14d6afcf..9ba816645a 100644 --- a/src/oci/bds/models/node_type_level_details.py +++ b/src/oci/bds/models/node_type_level_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/node_type_shape_config.py b/src/oci/bds/models/node_type_shape_config.py index 7572844d36..05a8a430b6 100644 --- a/src/oci/bds/models/node_type_shape_config.py +++ b/src/oci/bds/models/node_type_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/odh_patching_config.py b/src/oci/bds/models/odh_patching_config.py index e068a76455..88283acd20 100644 --- a/src/oci/bds/models/odh_patching_config.py +++ b/src/oci/bds/models/odh_patching_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/os_patch_details.py b/src/oci/bds/models/os_patch_details.py index b97105907f..c6606cdffd 100644 --- a/src/oci/bds/models/os_patch_details.py +++ b/src/oci/bds/models/os_patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/os_patch_package_summary.py b/src/oci/bds/models/os_patch_package_summary.py index 102f34c922..c374f12ea5 100644 --- a/src/oci/bds/models/os_patch_package_summary.py +++ b/src/oci/bds/models/os_patch_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/os_patch_summary.py b/src/oci/bds/models/os_patch_summary.py index b616b457dc..389ce5b818 100644 --- a/src/oci/bds/models/os_patch_summary.py +++ b/src/oci/bds/models/os_patch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/patch_history_summary.py b/src/oci/bds/models/patch_history_summary.py index 5532c68fb1..fe155bbeb2 100644 --- a/src/oci/bds/models/patch_history_summary.py +++ b/src/oci/bds/models/patch_history_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/patch_summary.py b/src/oci/bds/models/patch_summary.py index 2a34b23167..1fdd762c84 100644 --- a/src/oci/bds/models/patch_summary.py +++ b/src/oci/bds/models/patch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/patching_configs.py b/src/oci/bds/models/patching_configs.py index f68c075322..fc03a0a862 100644 --- a/src/oci/bds/models/patching_configs.py +++ b/src/oci/bds/models/patching_configs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/refresh_confidential_application_details.py b/src/oci/bds/models/refresh_confidential_application_details.py index 2402142662..f014b19f2a 100644 --- a/src/oci/bds/models/refresh_confidential_application_details.py +++ b/src/oci/bds/models/refresh_confidential_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/refresh_upst_token_exchange_keytab_details.py b/src/oci/bds/models/refresh_upst_token_exchange_keytab_details.py index 9264eb9acd..6924399af8 100644 --- a/src/oci/bds/models/refresh_upst_token_exchange_keytab_details.py +++ b/src/oci/bds/models/refresh_upst_token_exchange_keytab_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 ad858831c7..d057c1c862 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/remove_cloud_sql_details.py b/src/oci/bds/models/remove_cloud_sql_details.py index cbec63c673..b9fb9a6cc2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/remove_kafka_details.py b/src/oci/bds/models/remove_kafka_details.py index 6daf879d0a..65b46ab1ec 100644 --- a/src/oci/bds/models/remove_kafka_details.py +++ b/src/oci/bds/models/remove_kafka_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/remove_node_details.py b/src/oci/bds/models/remove_node_details.py index 31697468bf..9cb24e35ba 100644 --- a/src/oci/bds/models/remove_node_details.py +++ b/src/oci/bds/models/remove_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/remove_node_replace_configuration_details.py b/src/oci/bds/models/remove_node_replace_configuration_details.py index 0d50940625..d0aa4f9187 100644 --- a/src/oci/bds/models/remove_node_replace_configuration_details.py +++ b/src/oci/bds/models/remove_node_replace_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/remove_resource_principal_configuration_details.py b/src/oci/bds/models/remove_resource_principal_configuration_details.py index 4b453c0c76..7ebeb51636 100644 --- a/src/oci/bds/models/remove_resource_principal_configuration_details.py +++ b/src/oci/bds/models/remove_resource_principal_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/renew_certificate_details.py b/src/oci/bds/models/renew_certificate_details.py index 2843cd40fb..fba496b197 100644 --- a/src/oci/bds/models/renew_certificate_details.py +++ b/src/oci/bds/models/renew_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/replace_node_details.py b/src/oci/bds/models/replace_node_details.py index 6056e3fb75..1434f8f9d7 100644 --- a/src/oci/bds/models/replace_node_details.py +++ b/src/oci/bds/models/replace_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/resource_principal_configuration.py b/src/oci/bds/models/resource_principal_configuration.py index e01822fe76..768fa485f1 100644 --- a/src/oci/bds/models/resource_principal_configuration.py +++ b/src/oci/bds/models/resource_principal_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/resource_principal_configuration_summary.py b/src/oci/bds/models/resource_principal_configuration_summary.py index c8fd8d0d1f..dad4620440 100644 --- a/src/oci/bds/models/resource_principal_configuration_summary.py +++ b/src/oci/bds/models/resource_principal_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/restart_node_details.py b/src/oci/bds/models/restart_node_details.py index 638dfb2b5a..24748b84a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/schedule_based_horizontal_scaling_policy_details.py b/src/oci/bds/models/schedule_based_horizontal_scaling_policy_details.py index 065036cd59..8efd275d18 100644 --- a/src/oci/bds/models/schedule_based_horizontal_scaling_policy_details.py +++ b/src/oci/bds/models/schedule_based_horizontal_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/schedule_based_vertical_scaling_policy_details.py b/src/oci/bds/models/schedule_based_vertical_scaling_policy_details.py index ae7a3ab1a4..d977785a14 100644 --- a/src/oci/bds/models/schedule_based_vertical_scaling_policy_details.py +++ b/src/oci/bds/models/schedule_based_vertical_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/shape_config_details.py b/src/oci/bds/models/shape_config_details.py index 4fc269a3b1..00721e94ed 100644 --- a/src/oci/bds/models/shape_config_details.py +++ b/src/oci/bds/models/shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/start_bds_instance_details.py b/src/oci/bds/models/start_bds_instance_details.py index 87cd1bb931..8203fefa4c 100644 --- a/src/oci/bds/models/start_bds_instance_details.py +++ b/src/oci/bds/models/start_bds_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/start_cluster_shape_configs.py b/src/oci/bds/models/start_cluster_shape_configs.py index 4f79919a86..3d4ba6c85e 100644 --- a/src/oci/bds/models/start_cluster_shape_configs.py +++ b/src/oci/bds/models/start_cluster_shape_configs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/stop_bds_instance_details.py b/src/oci/bds/models/stop_bds_instance_details.py index 2eb6732022..c76ca6f31f 100644 --- a/src/oci/bds/models/stop_bds_instance_details.py +++ b/src/oci/bds/models/stop_bds_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 346a8c3452..8fdb0dfdf2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 9a9e5422e6..0829354b10 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/time_and_horizontal_scaling_config.py b/src/oci/bds/models/time_and_horizontal_scaling_config.py index 6fac3086a1..8ebf167b21 100644 --- a/src/oci/bds/models/time_and_horizontal_scaling_config.py +++ b/src/oci/bds/models/time_and_horizontal_scaling_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/time_and_vertical_scaling_config.py b/src/oci/bds/models/time_and_vertical_scaling_config.py index 029524531c..6c48a0c57d 100644 --- a/src/oci/bds/models/time_and_vertical_scaling_config.py +++ b/src/oci/bds/models/time_and_vertical_scaling_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_auto_scale_policy_details.py b/src/oci/bds/models/update_auto_scale_policy_details.py index 0b94bbf551..1dad39aed0 100644 --- a/src/oci/bds/models/update_auto_scale_policy_details.py +++ b/src/oci/bds/models/update_auto_scale_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 9b69d44428..db6580e307 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_bds_instance_details.py b/src/oci/bds/models/update_bds_instance_details.py index b5a9e5c2d2..9a76b02c65 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 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 26eb3a9bae..f6cfdc5567 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_identity_configuration_details.py b/src/oci/bds/models/update_identity_configuration_details.py index a26447a5e3..1953fd6f2d 100644 --- a/src/oci/bds/models/update_identity_configuration_details.py +++ b/src/oci/bds/models/update_identity_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_metric_based_horizontal_scaling_policy_details.py b/src/oci/bds/models/update_metric_based_horizontal_scaling_policy_details.py index d3c756dcab..b32aa28adf 100644 --- a/src/oci/bds/models/update_metric_based_horizontal_scaling_policy_details.py +++ b/src/oci/bds/models/update_metric_based_horizontal_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_metric_based_vertical_scaling_policy_details.py b/src/oci/bds/models/update_metric_based_vertical_scaling_policy_details.py index 36eb99ea66..82c78e0973 100644 --- a/src/oci/bds/models/update_metric_based_vertical_scaling_policy_details.py +++ b/src/oci/bds/models/update_metric_based_vertical_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_node_backup_configuration_details.py b/src/oci/bds/models/update_node_backup_configuration_details.py index ad3124ae6e..cd0a331192 100644 --- a/src/oci/bds/models/update_node_backup_configuration_details.py +++ b/src/oci/bds/models/update_node_backup_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_node_replace_configuration_details.py b/src/oci/bds/models/update_node_replace_configuration_details.py index 3746dd1c3f..1d4931e624 100644 --- a/src/oci/bds/models/update_node_replace_configuration_details.py +++ b/src/oci/bds/models/update_node_replace_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_resource_principal_configuration_details.py b/src/oci/bds/models/update_resource_principal_configuration_details.py index d766866206..30965dd9b9 100644 --- a/src/oci/bds/models/update_resource_principal_configuration_details.py +++ b/src/oci/bds/models/update_resource_principal_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_schedule_based_horizontal_scaling_policy_details.py b/src/oci/bds/models/update_schedule_based_horizontal_scaling_policy_details.py index 74ef9243bd..37ed96a0cc 100644 --- a/src/oci/bds/models/update_schedule_based_horizontal_scaling_policy_details.py +++ b/src/oci/bds/models/update_schedule_based_horizontal_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/update_schedule_based_vertical_scaling_policy_details.py b/src/oci/bds/models/update_schedule_based_vertical_scaling_policy_details.py index a66a053105..db5d9c4ecd 100644 --- a/src/oci/bds/models/update_schedule_based_vertical_scaling_policy_details.py +++ b/src/oci/bds/models/update_schedule_based_vertical_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/upst_configuration.py b/src/oci/bds/models/upst_configuration.py index b4ef84b1f4..f1d0c1478c 100644 --- a/src/oci/bds/models/upst_configuration.py +++ b/src/oci/bds/models/upst_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/upst_configuration_details.py b/src/oci/bds/models/upst_configuration_details.py index 11b65c9552..6091399d78 100644 --- a/src/oci/bds/models/upst_configuration_details.py +++ b/src/oci/bds/models/upst_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/vertical_scaling_schedule_details.py b/src/oci/bds/models/vertical_scaling_schedule_details.py index 29efd22d3f..7da3d9e385 100644 --- a/src/oci/bds/models/vertical_scaling_schedule_details.py +++ b/src/oci/bds/models/vertical_scaling_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/volume_attachment_detail.py b/src/oci/bds/models/volume_attachment_detail.py index d24db001c5..2576dece2e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/work_request.py b/src/oci/bds/models/work_request.py index 266e3a8272..2d7b8ef996 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/work_request_error.py b/src/oci/bds/models/work_request_error.py index 1858c10b80..390e812084 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/work_request_log_entry.py b/src/oci/bds/models/work_request_log_entry.py index 3f5ba1477f..b3a0f64c56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/bds/models/work_request_resource.py b/src/oci/bds/models/work_request_resource.py index 136ae4d031..f6c83d72ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190531 diff --git a/src/oci/blockchain/__init__.py b/src/oci/blockchain/__init__.py index 9458121763..cd55b980c6 100644 --- a/src/oci/blockchain/__init__.py +++ b/src/oci/blockchain/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/blockchain_platform_client.py b/src/oci/blockchain/blockchain_platform_client.py index 4e0b35b3d5..1909ea819c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/blockchain_platform_client_composite_operations.py b/src/oci/blockchain/blockchain_platform_client_composite_operations.py index 12aeffb7cb..2caff2bf63 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/__init__.py b/src/oci/blockchain/models/__init__.py index 491add5538..80c9450240 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/availability_domain.py b/src/oci/blockchain/models/availability_domain.py index 0d34ccc5f4..cb1415cf7a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/blockchain_platform.py b/src/oci/blockchain/models/blockchain_platform.py index bf6c1de7ee..f590ddbc58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/blockchain_platform_by_hostname.py b/src/oci/blockchain/models/blockchain_platform_by_hostname.py index 9c49f49cb0..f9da7336ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/blockchain_platform_collection.py b/src/oci/blockchain/models/blockchain_platform_collection.py index a3e8f16d07..f79f44cae2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/blockchain_platform_component_details.py b/src/oci/blockchain/models/blockchain_platform_component_details.py index 026f859528..78912e3359 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/blockchain_platform_patch_collection.py b/src/oci/blockchain/models/blockchain_platform_patch_collection.py index 187375bc95..c8ef45dcd2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/blockchain_platform_patch_summary.py b/src/oci/blockchain/models/blockchain_platform_patch_summary.py index 4ff74b0e61..41e5e9532b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/blockchain_platform_summary.py b/src/oci/blockchain/models/blockchain_platform_summary.py index 21e60e65b3..b47268161b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 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 218ada8bb9..22bfb2189e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/create_blockchain_platform_details.py b/src/oci/blockchain/models/create_blockchain_platform_details.py index e7f6125857..ddd02b0fff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/create_osn_details.py b/src/oci/blockchain/models/create_osn_details.py index f7a945710b..2acfa3e469 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/create_peer_details.py b/src/oci/blockchain/models/create_peer_details.py index 153be61178..b134e4bc87 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/metadata_details.py b/src/oci/blockchain/models/metadata_details.py index a476f99965..df3f5a0146 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/modify_peer_details.py b/src/oci/blockchain/models/modify_peer_details.py index 12b9689295..28222e055b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/ocpu_allocation_number_param.py b/src/oci/blockchain/models/ocpu_allocation_number_param.py index b105ce483e..c6e1b5fe9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/ocpu_utilization_info.py b/src/oci/blockchain/models/ocpu_utilization_info.py index 7f5e06cdf3..7e9d99081c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/osn.py b/src/oci/blockchain/models/osn.py index 67434f6b69..3a1eeb1fe0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/osn_collection.py b/src/oci/blockchain/models/osn_collection.py index f56affe956..af2b296ef0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/osn_summary.py b/src/oci/blockchain/models/osn_summary.py index 0c42e4c461..009b5a1978 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/peer.py b/src/oci/blockchain/models/peer.py index e124726903..1dbef4c0f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/peer_collection.py b/src/oci/blockchain/models/peer_collection.py index 98420c35bc..256c4f0b44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/peer_role.py b/src/oci/blockchain/models/peer_role.py index 946e816db9..bfa05b42fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/peer_summary.py b/src/oci/blockchain/models/peer_summary.py index bd7922668e..2598e8cc68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/replica_details.py b/src/oci/blockchain/models/replica_details.py index 5c2230e960..4bf3a6b16a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/scale_blockchain_platform_details.py b/src/oci/blockchain/models/scale_blockchain_platform_details.py index d1e9d81fc7..7a42da6e8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/scale_storage_details.py b/src/oci/blockchain/models/scale_storage_details.py index d4da95f571..a23e91a5ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/scaled_blockchain_platform_preview.py b/src/oci/blockchain/models/scaled_blockchain_platform_preview.py index a712d6a64d..4a0f14f176 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/scaled_platform_metering_preview.py b/src/oci/blockchain/models/scaled_platform_metering_preview.py index 5fc16779e8..610f2c780e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/update_blockchain_platform_details.py b/src/oci/blockchain/models/update_blockchain_platform_details.py index 83505a27b7..e93a7b8b38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/update_osn_details.py b/src/oci/blockchain/models/update_osn_details.py index 7e3bc526f4..e55f024ce5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/update_peer_details.py b/src/oci/blockchain/models/update_peer_details.py index c5b9b5d9c3..2bab1d11c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/upgrade_blockchain_platform_details.py b/src/oci/blockchain/models/upgrade_blockchain_platform_details.py index 6d9e6219c9..357af511f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/work_request.py b/src/oci/blockchain/models/work_request.py index 50d261a233..e4cff358dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/work_request_collection.py b/src/oci/blockchain/models/work_request_collection.py index 45c169b06b..500ae59a46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/work_request_error.py b/src/oci/blockchain/models/work_request_error.py index b422dd5f66..c5ab148d0e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/work_request_error_collection.py b/src/oci/blockchain/models/work_request_error_collection.py index 0468d1377c..398e64ef8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/work_request_log_entry.py b/src/oci/blockchain/models/work_request_log_entry.py index b55769d57b..ce594b4234 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 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 b34318914a..1aec83534f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/work_request_resource.py b/src/oci/blockchain/models/work_request_resource.py index 542d46b5b8..8ac3477d45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 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 b3697e3563..a6fc5d4124 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/blockchain/models/work_request_summary.py b/src/oci/blockchain/models/work_request_summary.py index eb88032483..705d348c34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191010 diff --git a/src/oci/budget/__init__.py b/src/oci/budget/__init__.py index a992cbcc5b..74a65af232 100644 --- a/src/oci/budget/__init__.py +++ b/src/oci/budget/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/budget_client.py b/src/oci/budget/budget_client.py index 3ea1027cbb..dbdeba5f60 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/budget_client_composite_operations.py b/src/oci/budget/budget_client_composite_operations.py index dd19923558..59c40b434e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/models/__init__.py b/src/oci/budget/models/__init__.py index e3af2db77c..a28c2ecb06 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/models/alert_rule.py b/src/oci/budget/models/alert_rule.py index bc71078d01..0bdfe09c61 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/models/alert_rule_summary.py b/src/oci/budget/models/alert_rule_summary.py index c812043ed8..b54696e7e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/models/budget.py b/src/oci/budget/models/budget.py index e4d243086a..3f412aaf63 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/models/budget_summary.py b/src/oci/budget/models/budget_summary.py index ea38089386..4e09e6fe8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/models/create_alert_rule_details.py b/src/oci/budget/models/create_alert_rule_details.py index bb3c1cd5bb..7a4dd85973 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/models/create_budget_details.py b/src/oci/budget/models/create_budget_details.py index 4ceddefa8e..5c29f1ab25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/models/update_alert_rule_details.py b/src/oci/budget/models/update_alert_rule_details.py index f9fa673cee..c41b98d92d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/budget/models/update_budget_details.py b/src/oci/budget/models/update_budget_details.py index 2187e0ad30..01a8cceacc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/capacity_management/__init__.py b/src/oci/capacity_management/__init__.py index c9638a0276..1db45bbb91 100644 --- a/src/oci/capacity_management/__init__.py +++ b/src/oci/capacity_management/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/capacity_management_client.py b/src/oci/capacity_management/capacity_management_client.py index 6f747d5161..b5b20be7d9 100644 --- a/src/oci/capacity_management/capacity_management_client.py +++ b/src/oci/capacity_management/capacity_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/capacity_management_client_composite_operations.py b/src/oci/capacity_management/capacity_management_client_composite_operations.py index 4a3afe4cae..1043729edf 100644 --- a/src/oci/capacity_management/capacity_management_client_composite_operations.py +++ b/src/oci/capacity_management/capacity_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/__init__.py b/src/oci/capacity_management/models/__init__.py index 883bcad99b..7be66b601c 100644 --- a/src/oci/capacity_management/models/__init__.py +++ b/src/oci/capacity_management/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/associated_capacity_request_details.py b/src/oci/capacity_management/models/associated_capacity_request_details.py index ed70735abd..7a97586a42 100644 --- a/src/oci/capacity_management/models/associated_capacity_request_details.py +++ b/src/oci/capacity_management/models/associated_capacity_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/associated_occ_handover_resource_block.py b/src/oci/capacity_management/models/associated_occ_handover_resource_block.py index 6d2401b98e..0e763749e9 100644 --- a/src/oci/capacity_management/models/associated_occ_handover_resource_block.py +++ b/src/oci/capacity_management/models/associated_occ_handover_resource_block.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/create_occ_availability_catalog_details.py b/src/oci/capacity_management/models/create_occ_availability_catalog_details.py index 5ba6678b60..5eb195773d 100644 --- a/src/oci/capacity_management/models/create_occ_availability_catalog_details.py +++ b/src/oci/capacity_management/models/create_occ_availability_catalog_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/create_occ_capacity_request_details.py b/src/oci/capacity_management/models/create_occ_capacity_request_details.py index 2a60957930..295d2d24b3 100644 --- a/src/oci/capacity_management/models/create_occ_capacity_request_details.py +++ b/src/oci/capacity_management/models/create_occ_capacity_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/create_occ_customer_details.py b/src/oci/capacity_management/models/create_occ_customer_details.py index e8f5c2a389..ddd8ac746c 100644 --- a/src/oci/capacity_management/models/create_occ_customer_details.py +++ b/src/oci/capacity_management/models/create_occ_customer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/create_occ_customer_group_details.py b/src/oci/capacity_management/models/create_occ_customer_group_details.py index e906dc56c1..34df88c449 100644 --- a/src/oci/capacity_management/models/create_occ_customer_group_details.py +++ b/src/oci/capacity_management/models/create_occ_customer_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/metadata_details.py b/src/oci/capacity_management/models/metadata_details.py index 823b5d24e8..15f4a575b1 100644 --- a/src/oci/capacity_management/models/metadata_details.py +++ b/src/oci/capacity_management/models/metadata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_availability_catalog.py b/src/oci/capacity_management/models/occ_availability_catalog.py index 320e9bd8ec..4b6b861ba9 100644 --- a/src/oci/capacity_management/models/occ_availability_catalog.py +++ b/src/oci/capacity_management/models/occ_availability_catalog.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_availability_catalog_collection.py b/src/oci/capacity_management/models/occ_availability_catalog_collection.py index 1791510939..5c7497a708 100644 --- a/src/oci/capacity_management/models/occ_availability_catalog_collection.py +++ b/src/oci/capacity_management/models/occ_availability_catalog_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_availability_catalog_summary.py b/src/oci/capacity_management/models/occ_availability_catalog_summary.py index 7e0515b4b1..d0c23ef163 100644 --- a/src/oci/capacity_management/models/occ_availability_catalog_summary.py +++ b/src/oci/capacity_management/models/occ_availability_catalog_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_availability_collection.py b/src/oci/capacity_management/models/occ_availability_collection.py index d977ee4eb4..dca4c3ffe6 100644 --- a/src/oci/capacity_management/models/occ_availability_collection.py +++ b/src/oci/capacity_management/models/occ_availability_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_availability_summary.py b/src/oci/capacity_management/models/occ_availability_summary.py index 324223ae14..651f7cdac9 100644 --- a/src/oci/capacity_management/models/occ_availability_summary.py +++ b/src/oci/capacity_management/models/occ_availability_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_capacity_request.py b/src/oci/capacity_management/models/occ_capacity_request.py index 69645cca9d..daa19d2fe3 100644 --- a/src/oci/capacity_management/models/occ_capacity_request.py +++ b/src/oci/capacity_management/models/occ_capacity_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_capacity_request_base_details.py b/src/oci/capacity_management/models/occ_capacity_request_base_details.py index e92509d3e1..399f9ff899 100644 --- a/src/oci/capacity_management/models/occ_capacity_request_base_details.py +++ b/src/oci/capacity_management/models/occ_capacity_request_base_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_capacity_request_collection.py b/src/oci/capacity_management/models/occ_capacity_request_collection.py index 428eae9c3e..c9ca541377 100644 --- a/src/oci/capacity_management/models/occ_capacity_request_collection.py +++ b/src/oci/capacity_management/models/occ_capacity_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_capacity_request_summary.py b/src/oci/capacity_management/models/occ_capacity_request_summary.py index 0403f48f88..eea3894333 100644 --- a/src/oci/capacity_management/models/occ_capacity_request_summary.py +++ b/src/oci/capacity_management/models/occ_capacity_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_customer.py b/src/oci/capacity_management/models/occ_customer.py index 7938ae5288..e31c5c59f6 100644 --- a/src/oci/capacity_management/models/occ_customer.py +++ b/src/oci/capacity_management/models/occ_customer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_customer_group.py b/src/oci/capacity_management/models/occ_customer_group.py index 548a5cba41..c05adbc1cf 100644 --- a/src/oci/capacity_management/models/occ_customer_group.py +++ b/src/oci/capacity_management/models/occ_customer_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_customer_group_collection.py b/src/oci/capacity_management/models/occ_customer_group_collection.py index ade8f15a21..b9121da7d7 100644 --- a/src/oci/capacity_management/models/occ_customer_group_collection.py +++ b/src/oci/capacity_management/models/occ_customer_group_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_customer_group_summary.py b/src/oci/capacity_management/models/occ_customer_group_summary.py index c0d937e578..2276fa9a2b 100644 --- a/src/oci/capacity_management/models/occ_customer_group_summary.py +++ b/src/oci/capacity_management/models/occ_customer_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_handover_resource_block_collection.py b/src/oci/capacity_management/models/occ_handover_resource_block_collection.py index 5702a03c38..eac3b5f78f 100644 --- a/src/oci/capacity_management/models/occ_handover_resource_block_collection.py +++ b/src/oci/capacity_management/models/occ_handover_resource_block_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_handover_resource_block_detail_collection.py b/src/oci/capacity_management/models/occ_handover_resource_block_detail_collection.py index e6ebca0d99..263b99e61c 100644 --- a/src/oci/capacity_management/models/occ_handover_resource_block_detail_collection.py +++ b/src/oci/capacity_management/models/occ_handover_resource_block_detail_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_handover_resource_block_detail_summary.py b/src/oci/capacity_management/models/occ_handover_resource_block_detail_summary.py index d6a0e372dc..b4321aba86 100644 --- a/src/oci/capacity_management/models/occ_handover_resource_block_detail_summary.py +++ b/src/oci/capacity_management/models/occ_handover_resource_block_detail_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_handover_resource_block_summary.py b/src/oci/capacity_management/models/occ_handover_resource_block_summary.py index b670258c1e..97b793b82d 100644 --- a/src/oci/capacity_management/models/occ_handover_resource_block_summary.py +++ b/src/oci/capacity_management/models/occ_handover_resource_block_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_overview_collection.py b/src/oci/capacity_management/models/occ_overview_collection.py index 50e97b3632..22723a6d71 100644 --- a/src/oci/capacity_management/models/occ_overview_collection.py +++ b/src/oci/capacity_management/models/occ_overview_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/occ_overview_summary.py b/src/oci/capacity_management/models/occ_overview_summary.py index 6b200ccc4b..106f0f806e 100644 --- a/src/oci/capacity_management/models/occ_overview_summary.py +++ b/src/oci/capacity_management/models/occ_overview_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_insert_instruction.py b/src/oci/capacity_management/models/patch_insert_instruction.py index 389c871a46..7507410024 100644 --- a/src/oci/capacity_management/models/patch_insert_instruction.py +++ b/src/oci/capacity_management/models/patch_insert_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_insert_multiple_instruction.py b/src/oci/capacity_management/models/patch_insert_multiple_instruction.py index b520ea8f78..900be137bc 100644 --- a/src/oci/capacity_management/models/patch_insert_multiple_instruction.py +++ b/src/oci/capacity_management/models/patch_insert_multiple_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_instruction.py b/src/oci/capacity_management/models/patch_instruction.py index 5da327c185..25c5f1df0c 100644 --- a/src/oci/capacity_management/models/patch_instruction.py +++ b/src/oci/capacity_management/models/patch_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_merge_instruction.py b/src/oci/capacity_management/models/patch_merge_instruction.py index 9c1af96a3e..6b8bbf6924 100644 --- a/src/oci/capacity_management/models/patch_merge_instruction.py +++ b/src/oci/capacity_management/models/patch_merge_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_move_instruction.py b/src/oci/capacity_management/models/patch_move_instruction.py index 896bed6ae4..961f893927 100644 --- a/src/oci/capacity_management/models/patch_move_instruction.py +++ b/src/oci/capacity_management/models/patch_move_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_occ_capacity_request_details.py b/src/oci/capacity_management/models/patch_occ_capacity_request_details.py index e9f51039b7..9f2980bc0e 100644 --- a/src/oci/capacity_management/models/patch_occ_capacity_request_details.py +++ b/src/oci/capacity_management/models/patch_occ_capacity_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_prohibit_instruction.py b/src/oci/capacity_management/models/patch_prohibit_instruction.py index 271fbcb3ba..79b9e57225 100644 --- a/src/oci/capacity_management/models/patch_prohibit_instruction.py +++ b/src/oci/capacity_management/models/patch_prohibit_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_remove_instruction.py b/src/oci/capacity_management/models/patch_remove_instruction.py index 8e728b04ba..edfd9a4a28 100644 --- a/src/oci/capacity_management/models/patch_remove_instruction.py +++ b/src/oci/capacity_management/models/patch_remove_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_replace_instruction.py b/src/oci/capacity_management/models/patch_replace_instruction.py index 4cd3c2a5ec..26a08b9614 100644 --- a/src/oci/capacity_management/models/patch_replace_instruction.py +++ b/src/oci/capacity_management/models/patch_replace_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/patch_require_instruction.py b/src/oci/capacity_management/models/patch_require_instruction.py index 0db9f13f24..e590959436 100644 --- a/src/oci/capacity_management/models/patch_require_instruction.py +++ b/src/oci/capacity_management/models/patch_require_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/placement_details.py b/src/oci/capacity_management/models/placement_details.py index 6d1eb8aac5..bc6a215ff1 100644 --- a/src/oci/capacity_management/models/placement_details.py +++ b/src/oci/capacity_management/models/placement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/update_internal_occ_capacity_request_details.py b/src/oci/capacity_management/models/update_internal_occ_capacity_request_details.py index 8f0e46f8f7..fb843114fd 100644 --- a/src/oci/capacity_management/models/update_internal_occ_capacity_request_details.py +++ b/src/oci/capacity_management/models/update_internal_occ_capacity_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/update_occ_availability_catalog_details.py b/src/oci/capacity_management/models/update_occ_availability_catalog_details.py index 6a86c302ae..cbcde33792 100644 --- a/src/oci/capacity_management/models/update_occ_availability_catalog_details.py +++ b/src/oci/capacity_management/models/update_occ_availability_catalog_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/update_occ_capacity_request_details.py b/src/oci/capacity_management/models/update_occ_capacity_request_details.py index 98d45c0bab..51898ee070 100644 --- a/src/oci/capacity_management/models/update_occ_capacity_request_details.py +++ b/src/oci/capacity_management/models/update_occ_capacity_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/update_occ_customer_details.py b/src/oci/capacity_management/models/update_occ_customer_details.py index e36d08684c..23595445bd 100644 --- a/src/oci/capacity_management/models/update_occ_customer_details.py +++ b/src/oci/capacity_management/models/update_occ_customer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/capacity_management/models/update_occ_customer_group_details.py b/src/oci/capacity_management/models/update_occ_customer_group_details.py index 6af87b1aa7..35a608ccf5 100644 --- a/src/oci/capacity_management/models/update_occ_customer_group_details.py +++ b/src/oci/capacity_management/models/update_occ_customer_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231107 diff --git a/src/oci/certificates/__init__.py b/src/oci/certificates/__init__.py index 2e3a86b88d..649c497431 100644 --- a/src/oci/certificates/__init__.py +++ b/src/oci/certificates/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/certificates_client.py b/src/oci/certificates/certificates_client.py index 97fc9251b1..30d207ebdb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/certificates_client_composite_operations.py b/src/oci/certificates/certificates_client_composite_operations.py index 1b8f3b72ed..e487c3cf85 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/models/__init__.py b/src/oci/certificates/models/__init__.py index 4a8fcf8fd4..abf4a64106 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/models/ca_bundle.py b/src/oci/certificates/models/ca_bundle.py index 5d8414072e..d426dfca94 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/models/certificate_authority_bundle.py b/src/oci/certificates/models/certificate_authority_bundle.py index b759d9d29b..47f5d254ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 04df931c05..452c259f2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 a885ea6aef..21fb3b770f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/models/certificate_bundle.py b/src/oci/certificates/models/certificate_bundle.py index 367c44afc0..38ab2cefcb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/models/certificate_bundle_public_only.py b/src/oci/certificates/models/certificate_bundle_public_only.py index 55877a9c0c..a4977da577 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/models/certificate_bundle_version_collection.py b/src/oci/certificates/models/certificate_bundle_version_collection.py index 33eb8ddca1..bf4215fab4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/models/certificate_bundle_version_summary.py b/src/oci/certificates/models/certificate_bundle_version_summary.py index c14d6d7f11..435bab5ef1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 b21adff741..f2abd85783 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/models/revocation_status.py b/src/oci/certificates/models/revocation_status.py index 8e8e0b9c41..d26e1cca5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates/models/validity.py b/src/oci/certificates/models/validity.py index db7fb2fea3..09e2f18131 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/__init__.py b/src/oci/certificates_management/__init__.py index 37c032e395..104fe0e906 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/certificates_management_client.py b/src/oci/certificates_management/certificates_management_client.py index 8796f47ea2..cd65c7c39e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 07e8e41cd4..077beaf192 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/__init__.py b/src/oci/certificates_management/models/__init__.py index 8b51f7faf4..fa978642c2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/association.py b/src/oci/certificates_management/models/association.py index 902b108d26..f87091017b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/association_collection.py b/src/oci/certificates_management/models/association_collection.py index fed3058647..866cc4eba4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/association_summary.py b/src/oci/certificates_management/models/association_summary.py index d02683cc11..117728eb71 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/ca_bundle.py b/src/oci/certificates_management/models/ca_bundle.py index d2cf9a65ef..f79a67f3ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/ca_bundle_collection.py b/src/oci/certificates_management/models/ca_bundle_collection.py index f1dcdf267f..889f9c742f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/ca_bundle_summary.py b/src/oci/certificates_management/models/ca_bundle_summary.py index c345ecf700..90d4d14635 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate.py b/src/oci/certificates_management/models/certificate.py index e3f21e0871..337d01cfdc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_authority.py b/src/oci/certificates_management/models/certificate_authority.py index c4cac4d551..9481d4057a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_authority_collection.py b/src/oci/certificates_management/models/certificate_authority_collection.py index caa1bce578..98a1471831 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 0baf7f2b4b..0aafb10462 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_authority_rule.py b/src/oci/certificates_management/models/certificate_authority_rule.py index 58c5a44cee..2b995ead60 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_authority_summary.py b/src/oci/certificates_management/models/certificate_authority_summary.py index 4f39fbda4b..91dabdcedf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_authority_version.py b/src/oci/certificates_management/models/certificate_authority_version.py index 62b7736d2c..8c1d3423b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 b565245651..76096d9a73 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 b9230b3311..365f37303d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_collection.py b/src/oci/certificates_management/models/certificate_collection.py index 4b39f06b49..3e3aabfc43 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_renewal_rule.py b/src/oci/certificates_management/models/certificate_renewal_rule.py index 7407c0c4f6..4dbe9c3cce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 130fb4b2b8..50c96e16a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_rule.py b/src/oci/certificates_management/models/certificate_rule.py index 29198dd169..63d747ba27 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_subject.py b/src/oci/certificates_management/models/certificate_subject.py index 14c4ba4bb0..f7416c0ad9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 86bd3a80e4..25e2271641 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_summary.py b/src/oci/certificates_management/models/certificate_summary.py index 375885a79c..c45d21fd38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_version.py b/src/oci/certificates_management/models/certificate_version.py index 08b8eb6f44..10e7820837 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_version_collection.py b/src/oci/certificates_management/models/certificate_version_collection.py index 8d480475f0..32e3ddd090 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/certificate_version_summary.py b/src/oci/certificates_management/models/certificate_version_summary.py index bfad891d91..efde93ae58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 30ea6c24cf..432a8954c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 fcf60a115d..fffb4f5669 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 f8379a2d53..66bbf6db3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 2007a6dc7c..f91c4a7d92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 813cc08b9a..b8101d7aff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 5249d89d3e..fc133a5a20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 7776fde953..5795b40556 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 755e5c8cd1..c9e9221eaa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/create_certificate_details.py b/src/oci/certificates_management/models/create_certificate_details.py index 7316e4ba78..c57a8e32cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 ca9dc699e1..d00f4b33c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 903deb5f93..d1a795a71d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 aa148436e0..97064bc7db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 81c6c71bda..2f55fe74f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 157ed68852..aceb8d7c32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/revocation_status.py b/src/oci/certificates_management/models/revocation_status.py index 22f413be6f..d25ac58a3e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 44cb3bfd81..50ac19e15b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 ebed208c41..56bd5d5b21 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 56e8aead80..988d13a497 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 ff6b54892f..9b3d073117 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 7f3cd06162..90acb5e2bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 dd8eb3b75d..e95627e1dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 046ba403b2..68dea8d59e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 6f19da273a..96f5068d57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 359eb28a8b..904e2a62bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 0aac3f6715..9ae881e0c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 763f38bf78..c29a0f1fc4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/update_certificate_details.py b/src/oci/certificates_management/models/update_certificate_details.py index 89e75c492a..489710ec95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 1f32d1ec55..f7e12f02d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 41ce7221f8..e11a3c977b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 e7c9e4742d..82ebc328cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 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 9ac3b9e21b..0e70726b0b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/certificates_management/models/validity.py b/src/oci/certificates_management/models/validity.py index 4b8b24c277..35e468356d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210224 diff --git a/src/oci/cims/__init__.py b/src/oci/cims/__init__.py index 274ae6d051..e3fe8bf02c 100644 --- a/src/oci/cims/__init__.py +++ b/src/oci/cims/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/incident_client.py b/src/oci/cims/incident_client.py index fac47e762d..065f5f6524 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/incident_client_composite_operations.py b/src/oci/cims/incident_client_composite_operations.py index c3dc19a649..234adf7032 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/__init__.py b/src/oci/cims/models/__init__.py index 76193d0190..951ad72d38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/account_item.py b/src/oci/cims/models/account_item.py index d00b1db4ee..6a14b9ad8c 100644 --- a/src/oci/cims/models/account_item.py +++ b/src/oci/cims/models/account_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/activity_item.py b/src/oci/cims/models/activity_item.py index deecde73d0..e11c7a62ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/category.py b/src/oci/cims/models/category.py index c0658bc6cb..87330cf350 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/classifier.py b/src/oci/cims/models/classifier.py index 6bc1e60926..9d86bfcd6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/cmos_user_group_info.py b/src/oci/cims/models/cmos_user_group_info.py index 14f0b0bed4..c1a504635f 100644 --- a/src/oci/cims/models/cmos_user_group_info.py +++ b/src/oci/cims/models/cmos_user_group_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/contact.py b/src/oci/cims/models/contact.py index b95bfd8c43..4f295a162e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/contact_list.py b/src/oci/cims/models/contact_list.py index 3b73d9c097..c789147a51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/contextual_data.py b/src/oci/cims/models/contextual_data.py index a5c61fce5d..50862de242 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_account_item_details.py b/src/oci/cims/models/create_account_item_details.py index 35bf8b0bea..a71ac2e034 100644 --- a/src/oci/cims/models/create_account_item_details.py +++ b/src/oci/cims/models/create_account_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_category_details.py b/src/oci/cims/models/create_category_details.py index 1eb77179b5..d3fc84b24e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_incident.py b/src/oci/cims/models/create_incident.py index 1cffd250d8..be2d844678 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_issue_type_details.py b/src/oci/cims/models/create_issue_type_details.py index 529e15c9ed..9709742425 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_item_details.py b/src/oci/cims/models/create_item_details.py index 2fc003aed5..0daa928db7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_limit_item_details.py b/src/oci/cims/models/create_limit_item_details.py index c03c8fd7a5..83bc6f7076 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_resource_details.py b/src/oci/cims/models/create_resource_details.py index aee8217e22..61be0cb0a7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_sub_category_details.py b/src/oci/cims/models/create_sub_category_details.py index 6fcef39ec9..84fc9de66d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 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 106cc8f53d..d4aca8f696 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_ticket_details.py b/src/oci/cims/models/create_ticket_details.py index f8b724af89..65d7e01343 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/create_user_details.py b/src/oci/cims/models/create_user_details.py index 2fc52c2299..81522fa2e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/incident.py b/src/oci/cims/models/incident.py index 456acc5026..05516738c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/incident_resource_type.py b/src/oci/cims/models/incident_resource_type.py index 10ca889059..63f943b911 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/incident_summary.py b/src/oci/cims/models/incident_summary.py index 182cae7104..a1ebe554a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/incident_type.py b/src/oci/cims/models/incident_type.py index 25d26d586d..98610f0c4c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/issue_type.py b/src/oci/cims/models/issue_type.py index 136455ede8..38b2371642 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/item.py b/src/oci/cims/models/item.py index 1289c49f4a..0a0d8a35df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/limit_item.py b/src/oci/cims/models/limit_item.py index c27fb6f9cc..ed9f4b5ca5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/resource.py b/src/oci/cims/models/resource.py index d9a826d5a4..4261193ba0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/service_category.py b/src/oci/cims/models/service_category.py index 50f2e1f42a..01bb4a1d82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/services.py b/src/oci/cims/models/services.py index 60f19a97e6..77fff0df36 100644 --- a/src/oci/cims/models/services.py +++ b/src/oci/cims/models/services.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/status.py b/src/oci/cims/models/status.py index 275781d383..f72619f03e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/sub_categories.py b/src/oci/cims/models/sub_categories.py index 3adad5f8e1..85d7c4bc25 100644 --- a/src/oci/cims/models/sub_categories.py +++ b/src/oci/cims/models/sub_categories.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/sub_category.py b/src/oci/cims/models/sub_category.py index 4734dce58e..90d909431f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/sub_components.py b/src/oci/cims/models/sub_components.py index dd60123e63..ae5598d099 100644 --- a/src/oci/cims/models/sub_components.py +++ b/src/oci/cims/models/sub_components.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/subscription_info.py b/src/oci/cims/models/subscription_info.py index bf56a28c83..86c41b6290 100644 --- a/src/oci/cims/models/subscription_info.py +++ b/src/oci/cims/models/subscription_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/tech_support_item.py b/src/oci/cims/models/tech_support_item.py index eb8617cc27..0e4b73edd4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/tenancy_information.py b/src/oci/cims/models/tenancy_information.py index 683fe10fe5..ca06c98dc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/ticket.py b/src/oci/cims/models/ticket.py index c089ddf94a..2b5da87887 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/update_activity_item_details.py b/src/oci/cims/models/update_activity_item_details.py index a80b6d73cb..8c0338dc8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/update_incident.py b/src/oci/cims/models/update_incident.py index c7cf31dbeb..d29bba1982 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/update_item_details.py b/src/oci/cims/models/update_item_details.py index ff3da92b9d..5e485d4b48 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/update_resource_details.py b/src/oci/cims/models/update_resource_details.py index bbd314d6d5..9810188312 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/update_ticket_details.py b/src/oci/cims/models/update_ticket_details.py index dd916a0007..cdeca13f36 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/user.py b/src/oci/cims/models/user.py index 698d864da2..666b1537af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/cims/models/validation_response.py b/src/oci/cims/models/validation_response.py index e96d328879..06c31a5f21 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181231 diff --git a/src/oci/circuit_breaker/__init__.py b/src/oci/circuit_breaker/__init__.py index 7878babeb9..f9a4c69838 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 fe02ccccd8..2f3e24e5dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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_bridge/__init__.py b/src/oci/cloud_bridge/__init__.py index e790b51860..7e860acec4 100644 --- a/src/oci/cloud_bridge/__init__.py +++ b/src/oci/cloud_bridge/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/common_client.py b/src/oci/cloud_bridge/common_client.py index 5667871305..3f77887c7f 100644 --- a/src/oci/cloud_bridge/common_client.py +++ b/src/oci/cloud_bridge/common_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/common_client_composite_operations.py b/src/oci/cloud_bridge/common_client_composite_operations.py index 014c4b622d..ef304f094b 100644 --- a/src/oci/cloud_bridge/common_client_composite_operations.py +++ b/src/oci/cloud_bridge/common_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/discovery_client.py b/src/oci/cloud_bridge/discovery_client.py index a8d2f975ec..720343be5a 100644 --- a/src/oci/cloud_bridge/discovery_client.py +++ b/src/oci/cloud_bridge/discovery_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/discovery_client_composite_operations.py b/src/oci/cloud_bridge/discovery_client_composite_operations.py index dcb3386dd6..39570fe48c 100644 --- a/src/oci/cloud_bridge/discovery_client_composite_operations.py +++ b/src/oci/cloud_bridge/discovery_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/inventory_client.py b/src/oci/cloud_bridge/inventory_client.py index f841baff5f..d42a788a66 100644 --- a/src/oci/cloud_bridge/inventory_client.py +++ b/src/oci/cloud_bridge/inventory_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/inventory_client_composite_operations.py b/src/oci/cloud_bridge/inventory_client_composite_operations.py index c122c6426e..13f384a2f2 100644 --- a/src/oci/cloud_bridge/inventory_client_composite_operations.py +++ b/src/oci/cloud_bridge/inventory_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/__init__.py b/src/oci/cloud_bridge/models/__init__.py index 298d9aef93..614b396c2b 100644 --- a/src/oci/cloud_bridge/models/__init__.py +++ b/src/oci/cloud_bridge/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/add_agent_dependency_details.py b/src/oci/cloud_bridge/models/add_agent_dependency_details.py index f919e77c68..815ab4a434 100644 --- a/src/oci/cloud_bridge/models/add_agent_dependency_details.py +++ b/src/oci/cloud_bridge/models/add_agent_dependency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/agent.py b/src/oci/cloud_bridge/models/agent.py index 46fbff5c1d..3e4ca019b2 100644 --- a/src/oci/cloud_bridge/models/agent.py +++ b/src/oci/cloud_bridge/models/agent.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/agent_collection.py b/src/oci/cloud_bridge/models/agent_collection.py index f86e9e03d2..c9f7ed04cc 100644 --- a/src/oci/cloud_bridge/models/agent_collection.py +++ b/src/oci/cloud_bridge/models/agent_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/agent_dependency.py b/src/oci/cloud_bridge/models/agent_dependency.py index b7249315ec..09126f93ae 100644 --- a/src/oci/cloud_bridge/models/agent_dependency.py +++ b/src/oci/cloud_bridge/models/agent_dependency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/agent_dependency_collection.py b/src/oci/cloud_bridge/models/agent_dependency_collection.py index 8e7022b04a..3813891bc6 100644 --- a/src/oci/cloud_bridge/models/agent_dependency_collection.py +++ b/src/oci/cloud_bridge/models/agent_dependency_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/agent_dependency_summary.py b/src/oci/cloud_bridge/models/agent_dependency_summary.py index d51462898d..639540f723 100644 --- a/src/oci/cloud_bridge/models/agent_dependency_summary.py +++ b/src/oci/cloud_bridge/models/agent_dependency_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/agent_summary.py b/src/oci/cloud_bridge/models/agent_summary.py index acc1af949d..fb5183a086 100644 --- a/src/oci/cloud_bridge/models/agent_summary.py +++ b/src/oci/cloud_bridge/models/agent_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/appliance_image_collection.py b/src/oci/cloud_bridge/models/appliance_image_collection.py index f994f6a070..df68b27523 100644 --- a/src/oci/cloud_bridge/models/appliance_image_collection.py +++ b/src/oci/cloud_bridge/models/appliance_image_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/appliance_image_summary.py b/src/oci/cloud_bridge/models/appliance_image_summary.py index 9fc2065f19..40667e4f43 100644 --- a/src/oci/cloud_bridge/models/appliance_image_summary.py +++ b/src/oci/cloud_bridge/models/appliance_image_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset.py b/src/oci/cloud_bridge/models/asset.py index fff53bd506..20e8e04469 100644 --- a/src/oci/cloud_bridge/models/asset.py +++ b/src/oci/cloud_bridge/models/asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_aggregation.py b/src/oci/cloud_bridge/models/asset_aggregation.py index 07d08de822..e68334084e 100644 --- a/src/oci/cloud_bridge/models/asset_aggregation.py +++ b/src/oci/cloud_bridge/models/asset_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_aggregation_collection.py b/src/oci/cloud_bridge/models/asset_aggregation_collection.py index 6a442886f1..1cb02d92c2 100644 --- a/src/oci/cloud_bridge/models/asset_aggregation_collection.py +++ b/src/oci/cloud_bridge/models/asset_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_collection.py b/src/oci/cloud_bridge/models/asset_collection.py index 5308aae514..a4a9ff448c 100644 --- a/src/oci/cloud_bridge/models/asset_collection.py +++ b/src/oci/cloud_bridge/models/asset_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_source.py b/src/oci/cloud_bridge/models/asset_source.py index f22851084f..1d9c148708 100644 --- a/src/oci/cloud_bridge/models/asset_source.py +++ b/src/oci/cloud_bridge/models/asset_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_source_collection.py b/src/oci/cloud_bridge/models/asset_source_collection.py index 3420d9a3de..bb24c7e631 100644 --- a/src/oci/cloud_bridge/models/asset_source_collection.py +++ b/src/oci/cloud_bridge/models/asset_source_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_source_connection.py b/src/oci/cloud_bridge/models/asset_source_connection.py index 91bd892f98..dad73f4c6f 100644 --- a/src/oci/cloud_bridge/models/asset_source_connection.py +++ b/src/oci/cloud_bridge/models/asset_source_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_source_connection_collection.py b/src/oci/cloud_bridge/models/asset_source_connection_collection.py index fd1b31bd5a..96accf11da 100644 --- a/src/oci/cloud_bridge/models/asset_source_connection_collection.py +++ b/src/oci/cloud_bridge/models/asset_source_connection_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_source_credentials.py b/src/oci/cloud_bridge/models/asset_source_credentials.py index 0977af0707..c82a61fb07 100644 --- a/src/oci/cloud_bridge/models/asset_source_credentials.py +++ b/src/oci/cloud_bridge/models/asset_source_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_source_summary.py b/src/oci/cloud_bridge/models/asset_source_summary.py index 73e38d43bc..4f7f56c462 100644 --- a/src/oci/cloud_bridge/models/asset_source_summary.py +++ b/src/oci/cloud_bridge/models/asset_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/asset_summary.py b/src/oci/cloud_bridge/models/asset_summary.py index 2e3d70d045..95f106e9eb 100644 --- a/src/oci/cloud_bridge/models/asset_summary.py +++ b/src/oci/cloud_bridge/models/asset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/aws_asset_source.py b/src/oci/cloud_bridge/models/aws_asset_source.py index 71548540e0..b329f84f04 100644 --- a/src/oci/cloud_bridge/models/aws_asset_source.py +++ b/src/oci/cloud_bridge/models/aws_asset_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/aws_asset_source_summary.py b/src/oci/cloud_bridge/models/aws_asset_source_summary.py index d8ca412b8c..be2d66143e 100644 --- a/src/oci/cloud_bridge/models/aws_asset_source_summary.py +++ b/src/oci/cloud_bridge/models/aws_asset_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/aws_ebs_asset.py b/src/oci/cloud_bridge/models/aws_ebs_asset.py index 12b7d127c8..639f910a6d 100644 --- a/src/oci/cloud_bridge/models/aws_ebs_asset.py +++ b/src/oci/cloud_bridge/models/aws_ebs_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/aws_ebs_asset_details.py b/src/oci/cloud_bridge/models/aws_ebs_asset_details.py index ec4b647e1c..98ccfd4b35 100644 --- a/src/oci/cloud_bridge/models/aws_ebs_asset_details.py +++ b/src/oci/cloud_bridge/models/aws_ebs_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/aws_ebs_properties.py b/src/oci/cloud_bridge/models/aws_ebs_properties.py index 7a31e8d448..dacb7ec9d3 100644 --- a/src/oci/cloud_bridge/models/aws_ebs_properties.py +++ b/src/oci/cloud_bridge/models/aws_ebs_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/aws_ec2_asset.py b/src/oci/cloud_bridge/models/aws_ec2_asset.py index afa551d7e9..b834234a41 100644 --- a/src/oci/cloud_bridge/models/aws_ec2_asset.py +++ b/src/oci/cloud_bridge/models/aws_ec2_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/aws_ec2_asset_details.py b/src/oci/cloud_bridge/models/aws_ec2_asset_details.py index 02d66af1ac..a458c70157 100644 --- a/src/oci/cloud_bridge/models/aws_ec2_asset_details.py +++ b/src/oci/cloud_bridge/models/aws_ec2_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/aws_ec2_properties.py b/src/oci/cloud_bridge/models/aws_ec2_properties.py index 999fae9ff7..21151f3ea5 100644 --- a/src/oci/cloud_bridge/models/aws_ec2_properties.py +++ b/src/oci/cloud_bridge/models/aws_ec2_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/change_agent_compartment_details.py b/src/oci/cloud_bridge/models/change_agent_compartment_details.py index 3d58def730..1f842dfac6 100644 --- a/src/oci/cloud_bridge/models/change_agent_compartment_details.py +++ b/src/oci/cloud_bridge/models/change_agent_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/change_agent_dependency_compartment_details.py b/src/oci/cloud_bridge/models/change_agent_dependency_compartment_details.py index 0482c2ec8e..536dea78d3 100644 --- a/src/oci/cloud_bridge/models/change_agent_dependency_compartment_details.py +++ b/src/oci/cloud_bridge/models/change_agent_dependency_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/change_asset_compartment_details.py b/src/oci/cloud_bridge/models/change_asset_compartment_details.py index 2b1c0297a1..aa56455f7c 100644 --- a/src/oci/cloud_bridge/models/change_asset_compartment_details.py +++ b/src/oci/cloud_bridge/models/change_asset_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/change_asset_source_compartment_details.py b/src/oci/cloud_bridge/models/change_asset_source_compartment_details.py index fecdb8ae86..da2cf2075f 100644 --- a/src/oci/cloud_bridge/models/change_asset_source_compartment_details.py +++ b/src/oci/cloud_bridge/models/change_asset_source_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/change_asset_tags_details.py b/src/oci/cloud_bridge/models/change_asset_tags_details.py index cd1acb4f25..2c73a8f63d 100644 --- a/src/oci/cloud_bridge/models/change_asset_tags_details.py +++ b/src/oci/cloud_bridge/models/change_asset_tags_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/change_discovery_schedule_compartment_details.py b/src/oci/cloud_bridge/models/change_discovery_schedule_compartment_details.py index 59cb77e8bc..e5aa8b2de8 100644 --- a/src/oci/cloud_bridge/models/change_discovery_schedule_compartment_details.py +++ b/src/oci/cloud_bridge/models/change_discovery_schedule_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/change_environment_compartment_details.py b/src/oci/cloud_bridge/models/change_environment_compartment_details.py index bc87372591..7941a70c97 100644 --- a/src/oci/cloud_bridge/models/change_environment_compartment_details.py +++ b/src/oci/cloud_bridge/models/change_environment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/compute_properties.py b/src/oci/cloud_bridge/models/compute_properties.py index 89cb498d95..009756adb8 100644 --- a/src/oci/cloud_bridge/models/compute_properties.py +++ b/src/oci/cloud_bridge/models/compute_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_agent_dependency_details.py b/src/oci/cloud_bridge/models/create_agent_dependency_details.py index 44de032221..1b26944860 100644 --- a/src/oci/cloud_bridge/models/create_agent_dependency_details.py +++ b/src/oci/cloud_bridge/models/create_agent_dependency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_agent_details.py b/src/oci/cloud_bridge/models/create_agent_details.py index ae349efb2d..c6569f842f 100644 --- a/src/oci/cloud_bridge/models/create_agent_details.py +++ b/src/oci/cloud_bridge/models/create_agent_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_asset_details.py b/src/oci/cloud_bridge/models/create_asset_details.py index 70cd76e6c2..f68baa8c85 100644 --- a/src/oci/cloud_bridge/models/create_asset_details.py +++ b/src/oci/cloud_bridge/models/create_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_asset_source_details.py b/src/oci/cloud_bridge/models/create_asset_source_details.py index d9fa681ea7..efb2ea1e75 100644 --- a/src/oci/cloud_bridge/models/create_asset_source_details.py +++ b/src/oci/cloud_bridge/models/create_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_aws_asset_source_details.py b/src/oci/cloud_bridge/models/create_aws_asset_source_details.py index 2031ecc010..f62830b2c5 100644 --- a/src/oci/cloud_bridge/models/create_aws_asset_source_details.py +++ b/src/oci/cloud_bridge/models/create_aws_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_aws_ebs_asset_details.py b/src/oci/cloud_bridge/models/create_aws_ebs_asset_details.py index 27a69ba6f8..aa888a1ad6 100644 --- a/src/oci/cloud_bridge/models/create_aws_ebs_asset_details.py +++ b/src/oci/cloud_bridge/models/create_aws_ebs_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_aws_ec2_asset_details.py b/src/oci/cloud_bridge/models/create_aws_ec2_asset_details.py index 434d500c0d..596764e96b 100644 --- a/src/oci/cloud_bridge/models/create_aws_ec2_asset_details.py +++ b/src/oci/cloud_bridge/models/create_aws_ec2_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_discovery_schedule_details.py b/src/oci/cloud_bridge/models/create_discovery_schedule_details.py index ed7664ca40..dae35d3920 100644 --- a/src/oci/cloud_bridge/models/create_discovery_schedule_details.py +++ b/src/oci/cloud_bridge/models/create_discovery_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_environment_details.py b/src/oci/cloud_bridge/models/create_environment_details.py index becc5f21ec..323ca71685 100644 --- a/src/oci/cloud_bridge/models/create_environment_details.py +++ b/src/oci/cloud_bridge/models/create_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_inventory_details.py b/src/oci/cloud_bridge/models/create_inventory_details.py index dc44da489c..43b52d320d 100644 --- a/src/oci/cloud_bridge/models/create_inventory_details.py +++ b/src/oci/cloud_bridge/models/create_inventory_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_vm_ware_asset_source_details.py b/src/oci/cloud_bridge/models/create_vm_ware_asset_source_details.py index 4f35eb5b81..acfecb9d0f 100644 --- a/src/oci/cloud_bridge/models/create_vm_ware_asset_source_details.py +++ b/src/oci/cloud_bridge/models/create_vm_ware_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/create_vmware_vm_asset_details.py b/src/oci/cloud_bridge/models/create_vmware_vm_asset_details.py index 2468038605..554d67b4fd 100644 --- a/src/oci/cloud_bridge/models/create_vmware_vm_asset_details.py +++ b/src/oci/cloud_bridge/models/create_vmware_vm_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/customer_tag.py b/src/oci/cloud_bridge/models/customer_tag.py index a7a522fcac..db135af3fb 100644 --- a/src/oci/cloud_bridge/models/customer_tag.py +++ b/src/oci/cloud_bridge/models/customer_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/discovery_schedule.py b/src/oci/cloud_bridge/models/discovery_schedule.py index 08fb9c3ade..82852ef640 100644 --- a/src/oci/cloud_bridge/models/discovery_schedule.py +++ b/src/oci/cloud_bridge/models/discovery_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/discovery_schedule_collection.py b/src/oci/cloud_bridge/models/discovery_schedule_collection.py index 20a652de45..efcde4ce9e 100644 --- a/src/oci/cloud_bridge/models/discovery_schedule_collection.py +++ b/src/oci/cloud_bridge/models/discovery_schedule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/discovery_schedule_summary.py b/src/oci/cloud_bridge/models/discovery_schedule_summary.py index 6c10c5cc8c..c40a4c45e5 100644 --- a/src/oci/cloud_bridge/models/discovery_schedule_summary.py +++ b/src/oci/cloud_bridge/models/discovery_schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/disk.py b/src/oci/cloud_bridge/models/disk.py index c54795ca3a..cf6bc1875b 100644 --- a/src/oci/cloud_bridge/models/disk.py +++ b/src/oci/cloud_bridge/models/disk.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/environment.py b/src/oci/cloud_bridge/models/environment.py index 21d01e3e5e..7220144f6e 100644 --- a/src/oci/cloud_bridge/models/environment.py +++ b/src/oci/cloud_bridge/models/environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/environment_collection.py b/src/oci/cloud_bridge/models/environment_collection.py index 37f629cb84..e0ef1dcad7 100644 --- a/src/oci/cloud_bridge/models/environment_collection.py +++ b/src/oci/cloud_bridge/models/environment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/environment_summary.py b/src/oci/cloud_bridge/models/environment_summary.py index 3fcd0dfb9a..23b79b35f9 100644 --- a/src/oci/cloud_bridge/models/environment_summary.py +++ b/src/oci/cloud_bridge/models/environment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/gpu_device.py b/src/oci/cloud_bridge/models/gpu_device.py index 9d7575fb9c..80121135cc 100644 --- a/src/oci/cloud_bridge/models/gpu_device.py +++ b/src/oci/cloud_bridge/models/gpu_device.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/group_identifier.py b/src/oci/cloud_bridge/models/group_identifier.py index fde14f3c3b..5b8e5543cf 100644 --- a/src/oci/cloud_bridge/models/group_identifier.py +++ b/src/oci/cloud_bridge/models/group_identifier.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/historical_metric.py b/src/oci/cloud_bridge/models/historical_metric.py index 704b5cc1c0..742be3b55f 100644 --- a/src/oci/cloud_bridge/models/historical_metric.py +++ b/src/oci/cloud_bridge/models/historical_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/historical_metric_collection.py b/src/oci/cloud_bridge/models/historical_metric_collection.py index fe1cd3359e..53eaf08267 100644 --- a/src/oci/cloud_bridge/models/historical_metric_collection.py +++ b/src/oci/cloud_bridge/models/historical_metric_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/historical_metric_summary.py b/src/oci/cloud_bridge/models/historical_metric_summary.py index 3a95235edd..630df637c3 100644 --- a/src/oci/cloud_bridge/models/historical_metric_summary.py +++ b/src/oci/cloud_bridge/models/historical_metric_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/import_inventory_details.py b/src/oci/cloud_bridge/models/import_inventory_details.py index 84250a55ae..0968bed69d 100644 --- a/src/oci/cloud_bridge/models/import_inventory_details.py +++ b/src/oci/cloud_bridge/models/import_inventory_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/import_inventory_via_assets_details.py b/src/oci/cloud_bridge/models/import_inventory_via_assets_details.py index 13c44bbdb8..d420058d6d 100644 --- a/src/oci/cloud_bridge/models/import_inventory_via_assets_details.py +++ b/src/oci/cloud_bridge/models/import_inventory_via_assets_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/instance_network_interface.py b/src/oci/cloud_bridge/models/instance_network_interface.py index 71496cedb4..ff6a8dc0ca 100644 --- a/src/oci/cloud_bridge/models/instance_network_interface.py +++ b/src/oci/cloud_bridge/models/instance_network_interface.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/instance_network_interface_association.py b/src/oci/cloud_bridge/models/instance_network_interface_association.py index e350a7b760..98b724a4e7 100644 --- a/src/oci/cloud_bridge/models/instance_network_interface_association.py +++ b/src/oci/cloud_bridge/models/instance_network_interface_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/instance_network_interface_attachment.py b/src/oci/cloud_bridge/models/instance_network_interface_attachment.py index e57bd03052..b525bc735c 100644 --- a/src/oci/cloud_bridge/models/instance_network_interface_attachment.py +++ b/src/oci/cloud_bridge/models/instance_network_interface_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/instance_private_ip_address.py b/src/oci/cloud_bridge/models/instance_private_ip_address.py index c31d79e6fc..feb7afa84e 100644 --- a/src/oci/cloud_bridge/models/instance_private_ip_address.py +++ b/src/oci/cloud_bridge/models/instance_private_ip_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/instance_state.py b/src/oci/cloud_bridge/models/instance_state.py index c68da07ca7..a0b1641b5c 100644 --- a/src/oci/cloud_bridge/models/instance_state.py +++ b/src/oci/cloud_bridge/models/instance_state.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/inventory.py b/src/oci/cloud_bridge/models/inventory.py index b69e110944..18584df0d7 100644 --- a/src/oci/cloud_bridge/models/inventory.py +++ b/src/oci/cloud_bridge/models/inventory.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/inventory_collection.py b/src/oci/cloud_bridge/models/inventory_collection.py index c6356d2bb7..4164b8f184 100644 --- a/src/oci/cloud_bridge/models/inventory_collection.py +++ b/src/oci/cloud_bridge/models/inventory_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/inventory_summary.py b/src/oci/cloud_bridge/models/inventory_summary.py index 3a1edde95f..1fbd375b80 100644 --- a/src/oci/cloud_bridge/models/inventory_summary.py +++ b/src/oci/cloud_bridge/models/inventory_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/monthly_cost_summary.py b/src/oci/cloud_bridge/models/monthly_cost_summary.py index 3c82d15c68..50cd515db1 100644 --- a/src/oci/cloud_bridge/models/monthly_cost_summary.py +++ b/src/oci/cloud_bridge/models/monthly_cost_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/nic.py b/src/oci/cloud_bridge/models/nic.py index 1ef221d9a2..5d6b8ae71d 100644 --- a/src/oci/cloud_bridge/models/nic.py +++ b/src/oci/cloud_bridge/models/nic.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/nvdimm.py b/src/oci/cloud_bridge/models/nvdimm.py index dad6d5237c..0d18f892d6 100644 --- a/src/oci/cloud_bridge/models/nvdimm.py +++ b/src/oci/cloud_bridge/models/nvdimm.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/nvdimm_controller.py b/src/oci/cloud_bridge/models/nvdimm_controller.py index 3ba82a4c01..cb5b1a9942 100644 --- a/src/oci/cloud_bridge/models/nvdimm_controller.py +++ b/src/oci/cloud_bridge/models/nvdimm_controller.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/placement.py b/src/oci/cloud_bridge/models/placement.py index 7c06983828..1d27105a02 100644 --- a/src/oci/cloud_bridge/models/placement.py +++ b/src/oci/cloud_bridge/models/placement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/plugin.py b/src/oci/cloud_bridge/models/plugin.py index 62b0aee3fe..61df9ccba2 100644 --- a/src/oci/cloud_bridge/models/plugin.py +++ b/src/oci/cloud_bridge/models/plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/plugin_summary.py b/src/oci/cloud_bridge/models/plugin_summary.py index 3754d412d6..fdb3b206ca 100644 --- a/src/oci/cloud_bridge/models/plugin_summary.py +++ b/src/oci/cloud_bridge/models/plugin_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/remove_agent_dependency_details.py b/src/oci/cloud_bridge/models/remove_agent_dependency_details.py index c639dad3fd..5bc077de7b 100644 --- a/src/oci/cloud_bridge/models/remove_agent_dependency_details.py +++ b/src/oci/cloud_bridge/models/remove_agent_dependency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/scsi_controller.py b/src/oci/cloud_bridge/models/scsi_controller.py index 4a9a6986b9..623677d72c 100644 --- a/src/oci/cloud_bridge/models/scsi_controller.py +++ b/src/oci/cloud_bridge/models/scsi_controller.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/submit_historical_metrics_details.py b/src/oci/cloud_bridge/models/submit_historical_metrics_details.py index fb9fcb3e20..b709622328 100644 --- a/src/oci/cloud_bridge/models/submit_historical_metrics_details.py +++ b/src/oci/cloud_bridge/models/submit_historical_metrics_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/supported_cloud_region_collection.py b/src/oci/cloud_bridge/models/supported_cloud_region_collection.py index ec2a556f4c..f82249d6d1 100644 --- a/src/oci/cloud_bridge/models/supported_cloud_region_collection.py +++ b/src/oci/cloud_bridge/models/supported_cloud_region_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/supported_cloud_region_summary.py b/src/oci/cloud_bridge/models/supported_cloud_region_summary.py index b12dc17975..4361726d3f 100644 --- a/src/oci/cloud_bridge/models/supported_cloud_region_summary.py +++ b/src/oci/cloud_bridge/models/supported_cloud_region_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/tag.py b/src/oci/cloud_bridge/models/tag.py index eb55ffa171..26c5b59638 100644 --- a/src/oci/cloud_bridge/models/tag.py +++ b/src/oci/cloud_bridge/models/tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_agent_dependency_details.py b/src/oci/cloud_bridge/models/update_agent_dependency_details.py index 42d61ce51d..8c50493054 100644 --- a/src/oci/cloud_bridge/models/update_agent_dependency_details.py +++ b/src/oci/cloud_bridge/models/update_agent_dependency_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_agent_details.py b/src/oci/cloud_bridge/models/update_agent_details.py index 1e244212d6..892c062a8e 100644 --- a/src/oci/cloud_bridge/models/update_agent_details.py +++ b/src/oci/cloud_bridge/models/update_agent_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_asset_details.py b/src/oci/cloud_bridge/models/update_asset_details.py index d7afb77bc7..7b5504f79f 100644 --- a/src/oci/cloud_bridge/models/update_asset_details.py +++ b/src/oci/cloud_bridge/models/update_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_asset_source_details.py b/src/oci/cloud_bridge/models/update_asset_source_details.py index 477e21d0dd..f98cbc12c0 100644 --- a/src/oci/cloud_bridge/models/update_asset_source_details.py +++ b/src/oci/cloud_bridge/models/update_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_aws_asset_source_details.py b/src/oci/cloud_bridge/models/update_aws_asset_source_details.py index 7a8f389ca3..9f6a6690c1 100644 --- a/src/oci/cloud_bridge/models/update_aws_asset_source_details.py +++ b/src/oci/cloud_bridge/models/update_aws_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_aws_ebs_asset_details.py b/src/oci/cloud_bridge/models/update_aws_ebs_asset_details.py index b891d5d684..f49223446c 100644 --- a/src/oci/cloud_bridge/models/update_aws_ebs_asset_details.py +++ b/src/oci/cloud_bridge/models/update_aws_ebs_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_aws_ec2_asset_details.py b/src/oci/cloud_bridge/models/update_aws_ec2_asset_details.py index 71a5b4356c..597012dc05 100644 --- a/src/oci/cloud_bridge/models/update_aws_ec2_asset_details.py +++ b/src/oci/cloud_bridge/models/update_aws_ec2_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_discovery_schedule_details.py b/src/oci/cloud_bridge/models/update_discovery_schedule_details.py index 202767ae18..44e401ada8 100644 --- a/src/oci/cloud_bridge/models/update_discovery_schedule_details.py +++ b/src/oci/cloud_bridge/models/update_discovery_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_environment_details.py b/src/oci/cloud_bridge/models/update_environment_details.py index 44f7ab5efa..0991ea23d8 100644 --- a/src/oci/cloud_bridge/models/update_environment_details.py +++ b/src/oci/cloud_bridge/models/update_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_inventory_details.py b/src/oci/cloud_bridge/models/update_inventory_details.py index cc1975b1f3..6c3ad05543 100644 --- a/src/oci/cloud_bridge/models/update_inventory_details.py +++ b/src/oci/cloud_bridge/models/update_inventory_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_plugin_details.py b/src/oci/cloud_bridge/models/update_plugin_details.py index 1c6649f663..48a2e87023 100644 --- a/src/oci/cloud_bridge/models/update_plugin_details.py +++ b/src/oci/cloud_bridge/models/update_plugin_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_vm_asset_details.py b/src/oci/cloud_bridge/models/update_vm_asset_details.py index 387e8208d8..7a99d07d51 100644 --- a/src/oci/cloud_bridge/models/update_vm_asset_details.py +++ b/src/oci/cloud_bridge/models/update_vm_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_vm_ware_asset_source_details.py b/src/oci/cloud_bridge/models/update_vm_ware_asset_source_details.py index b9ed238c93..b802cd5f75 100644 --- a/src/oci/cloud_bridge/models/update_vm_ware_asset_source_details.py +++ b/src/oci/cloud_bridge/models/update_vm_ware_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/update_vmware_vm_asset_details.py b/src/oci/cloud_bridge/models/update_vmware_vm_asset_details.py index 9f2134c266..260a62d2b1 100644 --- a/src/oci/cloud_bridge/models/update_vmware_vm_asset_details.py +++ b/src/oci/cloud_bridge/models/update_vmware_vm_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/vm_asset.py b/src/oci/cloud_bridge/models/vm_asset.py index e5e69e613f..7548b850e4 100644 --- a/src/oci/cloud_bridge/models/vm_asset.py +++ b/src/oci/cloud_bridge/models/vm_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/vm_properties.py b/src/oci/cloud_bridge/models/vm_properties.py index 7bb74cfce3..8d0e4ba00f 100644 --- a/src/oci/cloud_bridge/models/vm_properties.py +++ b/src/oci/cloud_bridge/models/vm_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/vm_ware_asset_source.py b/src/oci/cloud_bridge/models/vm_ware_asset_source.py index 3aa201f90b..a90cbfd4b2 100644 --- a/src/oci/cloud_bridge/models/vm_ware_asset_source.py +++ b/src/oci/cloud_bridge/models/vm_ware_asset_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/vm_ware_asset_source_summary.py b/src/oci/cloud_bridge/models/vm_ware_asset_source_summary.py index 1e43dadec2..c2969b76b4 100644 --- a/src/oci/cloud_bridge/models/vm_ware_asset_source_summary.py +++ b/src/oci/cloud_bridge/models/vm_ware_asset_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/vmware_v_center_properties.py b/src/oci/cloud_bridge/models/vmware_v_center_properties.py index 42ea2df98d..8f00a6b191 100644 --- a/src/oci/cloud_bridge/models/vmware_v_center_properties.py +++ b/src/oci/cloud_bridge/models/vmware_v_center_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/vmware_vm_asset.py b/src/oci/cloud_bridge/models/vmware_vm_asset.py index 3be129352f..cd3e180374 100644 --- a/src/oci/cloud_bridge/models/vmware_vm_asset.py +++ b/src/oci/cloud_bridge/models/vmware_vm_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/vmware_vm_properties.py b/src/oci/cloud_bridge/models/vmware_vm_properties.py index 9f53a3da01..5a4c3c6e7b 100644 --- a/src/oci/cloud_bridge/models/vmware_vm_properties.py +++ b/src/oci/cloud_bridge/models/vmware_vm_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/volume_attachment.py b/src/oci/cloud_bridge/models/volume_attachment.py index 5d8404ee9f..fe49c74c69 100644 --- a/src/oci/cloud_bridge/models/volume_attachment.py +++ b/src/oci/cloud_bridge/models/volume_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/work_request.py b/src/oci/cloud_bridge/models/work_request.py index 1df98131bf..f876b533cd 100644 --- a/src/oci/cloud_bridge/models/work_request.py +++ b/src/oci/cloud_bridge/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/work_request_error.py b/src/oci/cloud_bridge/models/work_request_error.py index 934cfc7793..409baa1f92 100644 --- a/src/oci/cloud_bridge/models/work_request_error.py +++ b/src/oci/cloud_bridge/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/work_request_error_collection.py b/src/oci/cloud_bridge/models/work_request_error_collection.py index e16350df89..879784a773 100644 --- a/src/oci/cloud_bridge/models/work_request_error_collection.py +++ b/src/oci/cloud_bridge/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/work_request_log_entry.py b/src/oci/cloud_bridge/models/work_request_log_entry.py index 7fa120863c..ffa7965bf4 100644 --- a/src/oci/cloud_bridge/models/work_request_log_entry.py +++ b/src/oci/cloud_bridge/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/work_request_log_entry_collection.py b/src/oci/cloud_bridge/models/work_request_log_entry_collection.py index 13edad3187..09bf6fab3a 100644 --- a/src/oci/cloud_bridge/models/work_request_log_entry_collection.py +++ b/src/oci/cloud_bridge/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/work_request_resource.py b/src/oci/cloud_bridge/models/work_request_resource.py index 1d11cf4e6d..012898f25b 100644 --- a/src/oci/cloud_bridge/models/work_request_resource.py +++ b/src/oci/cloud_bridge/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/work_request_summary.py b/src/oci/cloud_bridge/models/work_request_summary.py index 75ac76cd34..f89acbacd9 100644 --- a/src/oci/cloud_bridge/models/work_request_summary.py +++ b/src/oci/cloud_bridge/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/models/work_request_summary_collection.py b/src/oci/cloud_bridge/models/work_request_summary_collection.py index cb52c9d94c..c0cb491fa3 100644 --- a/src/oci/cloud_bridge/models/work_request_summary_collection.py +++ b/src/oci/cloud_bridge/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/ocb_agent_svc_client.py b/src/oci/cloud_bridge/ocb_agent_svc_client.py index 0a66ae56fa..53b025465d 100644 --- a/src/oci/cloud_bridge/ocb_agent_svc_client.py +++ b/src/oci/cloud_bridge/ocb_agent_svc_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_bridge/ocb_agent_svc_client_composite_operations.py b/src/oci/cloud_bridge/ocb_agent_svc_client_composite_operations.py index b36fe925ee..b995846dab 100644 --- a/src/oci/cloud_bridge/ocb_agent_svc_client_composite_operations.py +++ b/src/oci/cloud_bridge/ocb_agent_svc_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220509 diff --git a/src/oci/cloud_guard/__init__.py b/src/oci/cloud_guard/__init__.py index 3c93cd4f21..aa446c4700 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/cloud_guard_client.py b/src/oci/cloud_guard/cloud_guard_client.py index c38546aa1c..06daee7084 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 013c45a7e5..e608eccb1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/__init__.py b/src/oci/cloud_guard/models/__init__.py index 06ad9ce149..79d27fffec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/absolute_time_start_policy.py b/src/oci/cloud_guard/models/absolute_time_start_policy.py index 78c046bae4..62d9f69c63 100644 --- a/src/oci/cloud_guard/models/absolute_time_start_policy.py +++ b/src/oci/cloud_guard/models/absolute_time_start_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/activity_problem_aggregation.py b/src/oci/cloud_guard/models/activity_problem_aggregation.py index d9d06c0e76..5cc0747ae7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 4e6353bfe3..a26b1d54b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/add_compartment_details.py b/src/oci/cloud_guard/models/add_compartment_details.py index 98acf01e3e..6b10b008fa 100644 --- a/src/oci/cloud_guard/models/add_compartment_details.py +++ b/src/oci/cloud_guard/models/add_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/adhoc_query.py b/src/oci/cloud_guard/models/adhoc_query.py index cdca2b64cd..05a29ef70c 100644 --- a/src/oci/cloud_guard/models/adhoc_query.py +++ b/src/oci/cloud_guard/models/adhoc_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/adhoc_query_collection.py b/src/oci/cloud_guard/models/adhoc_query_collection.py index 730925c097..bbad005dd6 100644 --- a/src/oci/cloud_guard/models/adhoc_query_collection.py +++ b/src/oci/cloud_guard/models/adhoc_query_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/adhoc_query_details.py b/src/oci/cloud_guard/models/adhoc_query_details.py index e44b9c2bad..eeb53b4b12 100644 --- a/src/oci/cloud_guard/models/adhoc_query_details.py +++ b/src/oci/cloud_guard/models/adhoc_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/adhoc_query_regional_details.py b/src/oci/cloud_guard/models/adhoc_query_regional_details.py index a9fe98376d..e38caf58f9 100644 --- a/src/oci/cloud_guard/models/adhoc_query_regional_details.py +++ b/src/oci/cloud_guard/models/adhoc_query_regional_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/adhoc_query_resource.py b/src/oci/cloud_guard/models/adhoc_query_resource.py index 4edc0d4cbb..46ef8bb32c 100644 --- a/src/oci/cloud_guard/models/adhoc_query_resource.py +++ b/src/oci/cloud_guard/models/adhoc_query_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/adhoc_query_result_collection.py b/src/oci/cloud_guard/models/adhoc_query_result_collection.py index 60e32511e9..e13a9045ff 100644 --- a/src/oci/cloud_guard/models/adhoc_query_result_collection.py +++ b/src/oci/cloud_guard/models/adhoc_query_result_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/adhoc_query_result_summary.py b/src/oci/cloud_guard/models/adhoc_query_result_summary.py index 6362238129..fc89e84425 100644 --- a/src/oci/cloud_guard/models/adhoc_query_result_summary.py +++ b/src/oci/cloud_guard/models/adhoc_query_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/adhoc_query_summary.py b/src/oci/cloud_guard/models/adhoc_query_summary.py index 367016f632..850bd863d5 100644 --- a/src/oci/cloud_guard/models/adhoc_query_summary.py +++ b/src/oci/cloud_guard/models/adhoc_query_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/all_targets_selected.py b/src/oci/cloud_guard/models/all_targets_selected.py index a54053bad6..acd3ebf03f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 a87936abaf..7c7eea6daa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 e41251408a..cfa3501154 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/candidate_responder_rule.py b/src/oci/cloud_guard/models/candidate_responder_rule.py index a648369434..03695ef559 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/change_data_source_compartment_details.py b/src/oci/cloud_guard/models/change_data_source_compartment_details.py index dd2070b403..2900945682 100644 --- a/src/oci/cloud_guard/models/change_data_source_compartment_details.py +++ b/src/oci/cloud_guard/models/change_data_source_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 d7f9435661..5a2895e9c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 d1b6813f8b..9df8d3ebd9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 cd31e46b6c..4036703d66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/change_saved_query_compartment_details.py b/src/oci/cloud_guard/models/change_saved_query_compartment_details.py index 064acd6600..ace6fb7be8 100644 --- a/src/oci/cloud_guard/models/change_saved_query_compartment_details.py +++ b/src/oci/cloud_guard/models/change_saved_query_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/change_security_policy_compartment_details.py b/src/oci/cloud_guard/models/change_security_policy_compartment_details.py index beccfea86a..1b8afe2e94 100644 --- a/src/oci/cloud_guard/models/change_security_policy_compartment_details.py +++ b/src/oci/cloud_guard/models/change_security_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/change_security_recipe_compartment_details.py b/src/oci/cloud_guard/models/change_security_recipe_compartment_details.py index 7c374ccf1a..2489f3ab9c 100644 --- a/src/oci/cloud_guard/models/change_security_recipe_compartment_details.py +++ b/src/oci/cloud_guard/models/change_security_recipe_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/change_security_zone_compartment_details.py b/src/oci/cloud_guard/models/change_security_zone_compartment_details.py index d8421ffa21..b807fb764a 100644 --- a/src/oci/cloud_guard/models/change_security_zone_compartment_details.py +++ b/src/oci/cloud_guard/models/change_security_zone_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/composite_condition.py b/src/oci/cloud_guard/models/composite_condition.py index a14f10ec60..fcdd886e1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/condition.py b/src/oci/cloud_guard/models/condition.py index aa58a8d8aa..02d5b87a54 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/condition_group.py b/src/oci/cloud_guard/models/condition_group.py index bc351c110a..dfc56f51a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/condition_metadata_type.py b/src/oci/cloud_guard/models/condition_metadata_type.py index 1e199c64a4..f97d127a37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 264542d8dd..bbf34f7604 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 2e7f6580cf..e84e738fcd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/condition_operator.py b/src/oci/cloud_guard/models/condition_operator.py index 4ecb697677..0a6c49ec58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/config_value.py b/src/oci/cloud_guard/models/config_value.py index 24cd25a070..347685ddfa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/configuration.py b/src/oci/cloud_guard/models/configuration.py index 3be4a1d411..43e3ef3003 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/continuous_query_start_policy.py b/src/oci/cloud_guard/models/continuous_query_start_policy.py index efafc62b19..c7354f93a1 100644 --- a/src/oci/cloud_guard/models/continuous_query_start_policy.py +++ b/src/oci/cloud_guard/models/continuous_query_start_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_adhoc_query_details.py b/src/oci/cloud_guard/models/create_adhoc_query_details.py index 4696348a82..b816b35437 100644 --- a/src/oci/cloud_guard/models/create_adhoc_query_details.py +++ b/src/oci/cloud_guard/models/create_adhoc_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 66147a25e5..cb89fbcd51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_data_source_details.py b/src/oci/cloud_guard/models/create_data_source_details.py index 012895ab3a..6d169a672b 100644 --- a/src/oci/cloud_guard/models/create_data_source_details.py +++ b/src/oci/cloud_guard/models/create_data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 b37ede4196..30f0d5ee0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_detector_recipe_detector_rule_details.py b/src/oci/cloud_guard/models/create_detector_recipe_detector_rule_details.py index 4149f7d714..4176493b6c 100644 --- a/src/oci/cloud_guard/models/create_detector_recipe_detector_rule_details.py +++ b/src/oci/cloud_guard/models/create_detector_recipe_detector_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_detector_rule_details.py b/src/oci/cloud_guard/models/create_detector_rule_details.py index ed9444371e..4f9f3b029f 100644 --- a/src/oci/cloud_guard/models/create_detector_rule_details.py +++ b/src/oci/cloud_guard/models/create_detector_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 be4d95df4a..1465d976e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 d3ea2c8b8b..4841ff0c7b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_saved_query_details.py b/src/oci/cloud_guard/models/create_saved_query_details.py index cf8fc6a7dd..8b8c6bb238 100644 --- a/src/oci/cloud_guard/models/create_saved_query_details.py +++ b/src/oci/cloud_guard/models/create_saved_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_security_policy_details.py b/src/oci/cloud_guard/models/create_security_policy_details.py index e1a7ddc242..dba8bddc5c 100644 --- a/src/oci/cloud_guard/models/create_security_policy_details.py +++ b/src/oci/cloud_guard/models/create_security_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_security_recipe_details.py b/src/oci/cloud_guard/models/create_security_recipe_details.py index 71cb77e4f6..9aa20694f3 100644 --- a/src/oci/cloud_guard/models/create_security_recipe_details.py +++ b/src/oci/cloud_guard/models/create_security_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_security_zone_details.py b/src/oci/cloud_guard/models/create_security_zone_details.py index aca845181b..4ed186a0ae 100644 --- a/src/oci/cloud_guard/models/create_security_zone_details.py +++ b/src/oci/cloud_guard/models/create_security_zone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_target_details.py b/src/oci/cloud_guard/models/create_target_details.py index 7429af616b..d36d8e0221 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 e7401e7c0a..cba54fb838 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 708afd0c19..1f42c79788 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/create_wlp_agent_details.py b/src/oci/cloud_guard/models/create_wlp_agent_details.py index 05ce073c5d..b8e2d232d6 100644 --- a/src/oci/cloud_guard/models/create_wlp_agent_details.py +++ b/src/oci/cloud_guard/models/create_wlp_agent_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_mask_rule.py b/src/oci/cloud_guard/models/data_mask_rule.py index e1a5991b91..c397e80ce6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 e70397125b..ae21a2a7de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 cbb3b13be1..5a3554cf96 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_source.py b/src/oci/cloud_guard/models/data_source.py index 6c8a995213..108d47bc75 100644 --- a/src/oci/cloud_guard/models/data_source.py +++ b/src/oci/cloud_guard/models/data_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_source_collection.py b/src/oci/cloud_guard/models/data_source_collection.py index 3bde62fd9f..9eec09d2d1 100644 --- a/src/oci/cloud_guard/models/data_source_collection.py +++ b/src/oci/cloud_guard/models/data_source_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_source_details.py b/src/oci/cloud_guard/models/data_source_details.py index 96710c9282..a520a6c9ff 100644 --- a/src/oci/cloud_guard/models/data_source_details.py +++ b/src/oci/cloud_guard/models/data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_source_event_collection.py b/src/oci/cloud_guard/models/data_source_event_collection.py index 378fe000f3..f768ec16e2 100644 --- a/src/oci/cloud_guard/models/data_source_event_collection.py +++ b/src/oci/cloud_guard/models/data_source_event_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_source_event_info.py b/src/oci/cloud_guard/models/data_source_event_info.py index a55dd688e3..dcd740866e 100644 --- a/src/oci/cloud_guard/models/data_source_event_info.py +++ b/src/oci/cloud_guard/models/data_source_event_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_source_event_summary.py b/src/oci/cloud_guard/models/data_source_event_summary.py index a68c9f0cbd..658daf4bde 100644 --- a/src/oci/cloud_guard/models/data_source_event_summary.py +++ b/src/oci/cloud_guard/models/data_source_event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_source_mapping_info.py b/src/oci/cloud_guard/models/data_source_mapping_info.py index 09eaf0c97c..cd91a930dd 100644 --- a/src/oci/cloud_guard/models/data_source_mapping_info.py +++ b/src/oci/cloud_guard/models/data_source_mapping_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_source_summary.py b/src/oci/cloud_guard/models/data_source_summary.py index b48cc3bfce..c3844ac33d 100644 --- a/src/oci/cloud_guard/models/data_source_summary.py +++ b/src/oci/cloud_guard/models/data_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/data_source_summary_details.py b/src/oci/cloud_guard/models/data_source_summary_details.py index 8212b9f858..66699e2eef 100644 --- a/src/oci/cloud_guard/models/data_source_summary_details.py +++ b/src/oci/cloud_guard/models/data_source_summary_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector.py b/src/oci/cloud_guard/models/detector.py index 7287237bd5..a853ba6614 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_collection.py b/src/oci/cloud_guard/models/detector_collection.py index 0cfb751d54..d940e614df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_configuration.py b/src/oci/cloud_guard/models/detector_configuration.py index b39f17fbeb..952c78645d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_details.py b/src/oci/cloud_guard/models/detector_details.py index d22bbcd91b..beade89a2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_recipe.py b/src/oci/cloud_guard/models/detector_recipe.py index 01a8de69e7..a44c6f60a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_recipe_collection.py b/src/oci/cloud_guard/models/detector_recipe_collection.py index ecb5eebd1c..47fd701e34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 3be5c4da72..d9b75c85f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 2473b1478d..c173558f99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 932026c558..05342b9411 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_recipe_summary.py b/src/oci/cloud_guard/models/detector_recipe_summary.py index bfd789b3a9..8ab71bf371 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_rule.py b/src/oci/cloud_guard/models/detector_rule.py index 18c7e52660..fe6ea830db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_rule_collection.py b/src/oci/cloud_guard/models/detector_rule_collection.py index 86740ba6e5..8549d67e97 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_rule_summary.py b/src/oci/cloud_guard/models/detector_rule_summary.py index 89d8e293af..1129696a95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/detector_summary.py b/src/oci/cloud_guard/models/detector_summary.py index 304b02c8f8..fbabbadeab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/entities_mapping.py b/src/oci/cloud_guard/models/entities_mapping.py index b1455d812e..0ac4bb9921 100644 --- a/src/oci/cloud_guard/models/entities_mapping.py +++ b/src/oci/cloud_guard/models/entities_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/entity_details.py b/src/oci/cloud_guard/models/entity_details.py index 77728f0896..f888382ec5 100644 --- a/src/oci/cloud_guard/models/entity_details.py +++ b/src/oci/cloud_guard/models/entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 4614285aaa..7bb1662cf3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/geographical_location.py b/src/oci/cloud_guard/models/geographical_location.py index f11d419bc2..401b1bdf6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/impacted_resource_collection.py b/src/oci/cloud_guard/models/impacted_resource_collection.py index db83a37d87..a7258147c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/impacted_resource_summary.py b/src/oci/cloud_guard/models/impacted_resource_summary.py index 795480c24c..eee31961e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/insight_type_logging_query_details.py b/src/oci/cloud_guard/models/insight_type_logging_query_details.py index 9e0bb7b0cb..f90ef4a629 100644 --- a/src/oci/cloud_guard/models/insight_type_logging_query_details.py +++ b/src/oci/cloud_guard/models/insight_type_logging_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/instance_security_service_configuration.py b/src/oci/cloud_guard/models/instance_security_service_configuration.py index a5291dbd99..040a4e7e29 100644 --- a/src/oci/cloud_guard/models/instance_security_service_configuration.py +++ b/src/oci/cloud_guard/models/instance_security_service_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/logging_event_info.py b/src/oci/cloud_guard/models/logging_event_info.py index b2c505bd7e..2a6c295003 100644 --- a/src/oci/cloud_guard/models/logging_event_info.py +++ b/src/oci/cloud_guard/models/logging_event_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/logging_query_data_source_details.py b/src/oci/cloud_guard/models/logging_query_data_source_details.py index a908b4c5a2..3478f1c55a 100644 --- a/src/oci/cloud_guard/models/logging_query_data_source_details.py +++ b/src/oci/cloud_guard/models/logging_query_data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/logging_query_data_source_summary_details.py b/src/oci/cloud_guard/models/logging_query_data_source_summary_details.py index 7151c4b42c..537900ddfb 100644 --- a/src/oci/cloud_guard/models/logging_query_data_source_summary_details.py +++ b/src/oci/cloud_guard/models/logging_query_data_source_summary_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/logging_query_details.py b/src/oci/cloud_guard/models/logging_query_details.py index b07e5a31ed..36d58ab5b4 100644 --- a/src/oci/cloud_guard/models/logging_query_details.py +++ b/src/oci/cloud_guard/models/logging_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/managed_list.py b/src/oci/cloud_guard/models/managed_list.py index 560b571db4..0e725f018c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/managed_list_collection.py b/src/oci/cloud_guard/models/managed_list_collection.py index 3794a92532..f227608f5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/managed_list_summary.py b/src/oci/cloud_guard/models/managed_list_summary.py index 2df6fe2692..dee2819a8b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 ecd843fb74..e59a6754df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 b848bbce1e..3e80aa3f69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/no_delay_start_policy.py b/src/oci/cloud_guard/models/no_delay_start_policy.py index fc642f2b87..b7e8459145 100644 --- a/src/oci/cloud_guard/models/no_delay_start_policy.py +++ b/src/oci/cloud_guard/models/no_delay_start_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/operator_summary.py b/src/oci/cloud_guard/models/operator_summary.py index d60501066d..cfec68140e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/package_detail.py b/src/oci/cloud_guard/models/package_detail.py index 3ba88c09ce..73c69821ba 100644 --- a/src/oci/cloud_guard/models/package_detail.py +++ b/src/oci/cloud_guard/models/package_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/policy_collection.py b/src/oci/cloud_guard/models/policy_collection.py index 3f7f893d60..bc13446948 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/policy_summary.py b/src/oci/cloud_guard/models/policy_summary.py index e1797b0b84..33f95ad61d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/political_location.py b/src/oci/cloud_guard/models/political_location.py index dd18460576..4cfa0d1ecb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem.py b/src/oci/cloud_guard/models/problem.py index 9c2815bb3b..dcb41f182e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_aggregation.py b/src/oci/cloud_guard/models/problem_aggregation.py index 8b5d7adcf7..da2efeef2f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_aggregation_collection.py b/src/oci/cloud_guard/models/problem_aggregation_collection.py index de29761397..7bca95328f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_collection.py b/src/oci/cloud_guard/models/problem_collection.py index 2f975d102a..010fbd5fb5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_endpoint_collection.py b/src/oci/cloud_guard/models/problem_endpoint_collection.py index 299977008e..e8b422d6e6 100644 --- a/src/oci/cloud_guard/models/problem_endpoint_collection.py +++ b/src/oci/cloud_guard/models/problem_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_endpoint_summary.py b/src/oci/cloud_guard/models/problem_endpoint_summary.py index f4e7324944..14d9099c1a 100644 --- a/src/oci/cloud_guard/models/problem_endpoint_summary.py +++ b/src/oci/cloud_guard/models/problem_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_entity_collection.py b/src/oci/cloud_guard/models/problem_entity_collection.py index c9f26deca0..b229ceacd5 100644 --- a/src/oci/cloud_guard/models/problem_entity_collection.py +++ b/src/oci/cloud_guard/models/problem_entity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_entity_summary.py b/src/oci/cloud_guard/models/problem_entity_summary.py index cfed2b1368..05e4baf50b 100644 --- a/src/oci/cloud_guard/models/problem_entity_summary.py +++ b/src/oci/cloud_guard/models/problem_entity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_history_collection.py b/src/oci/cloud_guard/models/problem_history_collection.py index ea14fa0a81..74caa97cd8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_history_summary.py b/src/oci/cloud_guard/models/problem_history_summary.py index 0480ddad08..2c7bb2cee4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_summary.py b/src/oci/cloud_guard/models/problem_summary.py index edfb212bba..362ca2f82c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/problem_trend_aggregation.py b/src/oci/cloud_guard/models/problem_trend_aggregation.py index b6eb86253e..91681d3148 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 8768413b15..e595a9b094 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/property_tuple.py b/src/oci/cloud_guard/models/property_tuple.py index 2a36fc2e43..128511eeae 100644 --- a/src/oci/cloud_guard/models/property_tuple.py +++ b/src/oci/cloud_guard/models/property_tuple.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/recommendation_summary.py b/src/oci/cloud_guard/models/recommendation_summary.py index c474ca451a..d4e079eb4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/recommendation_summary_collection.py b/src/oci/cloud_guard/models/recommendation_summary_collection.py index 501c462c1c..d0bd99db28 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/region_status_detail.py b/src/oci/cloud_guard/models/region_status_detail.py index b86faf7d03..0e9b9b84d8 100644 --- a/src/oci/cloud_guard/models/region_status_detail.py +++ b/src/oci/cloud_guard/models/region_status_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/remove_compartment_details.py b/src/oci/cloud_guard/models/remove_compartment_details.py index cf96c31aa9..0a79289478 100644 --- a/src/oci/cloud_guard/models/remove_compartment_details.py +++ b/src/oci/cloud_guard/models/remove_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/request_summarized_trend_resource_risk_scores_details.py b/src/oci/cloud_guard/models/request_summarized_trend_resource_risk_scores_details.py index 6a7949bab4..e56e11f846 100644 --- a/src/oci/cloud_guard/models/request_summarized_trend_resource_risk_scores_details.py +++ b/src/oci/cloud_guard/models/request_summarized_trend_resource_risk_scores_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource.py b/src/oci/cloud_guard/models/resource.py index 3c543d9740..4addbe9d96 100644 --- a/src/oci/cloud_guard/models/resource.py +++ b/src/oci/cloud_guard/models/resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_additional_details.py b/src/oci/cloud_guard/models/resource_additional_details.py index e147f77b6e..748d99e2c5 100644 --- a/src/oci/cloud_guard/models/resource_additional_details.py +++ b/src/oci/cloud_guard/models/resource_additional_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_collection.py b/src/oci/cloud_guard/models/resource_collection.py index 3bb097db81..f0b03bbe12 100644 --- a/src/oci/cloud_guard/models/resource_collection.py +++ b/src/oci/cloud_guard/models/resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_lock.py b/src/oci/cloud_guard/models/resource_lock.py index e326466585..58f1060608 100644 --- a/src/oci/cloud_guard/models/resource_lock.py +++ b/src/oci/cloud_guard/models/resource_lock.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_port_collection.py b/src/oci/cloud_guard/models/resource_port_collection.py index f0afdf2642..0487677d3a 100644 --- a/src/oci/cloud_guard/models/resource_port_collection.py +++ b/src/oci/cloud_guard/models/resource_port_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_port_summary.py b/src/oci/cloud_guard/models/resource_port_summary.py index d3ebb19136..c55071f278 100644 --- a/src/oci/cloud_guard/models/resource_port_summary.py +++ b/src/oci/cloud_guard/models/resource_port_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_profile.py b/src/oci/cloud_guard/models/resource_profile.py index 0a0b8fd532..bb3b2f39e9 100644 --- a/src/oci/cloud_guard/models/resource_profile.py +++ b/src/oci/cloud_guard/models/resource_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_profile_collection.py b/src/oci/cloud_guard/models/resource_profile_collection.py index 838a01e97f..ddac26ee0d 100644 --- a/src/oci/cloud_guard/models/resource_profile_collection.py +++ b/src/oci/cloud_guard/models/resource_profile_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_profile_endpoint_collection.py b/src/oci/cloud_guard/models/resource_profile_endpoint_collection.py index bcf674ac77..ba490278d5 100644 --- a/src/oci/cloud_guard/models/resource_profile_endpoint_collection.py +++ b/src/oci/cloud_guard/models/resource_profile_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_profile_endpoint_summary.py b/src/oci/cloud_guard/models/resource_profile_endpoint_summary.py index efb6e6a290..f15ed35185 100644 --- a/src/oci/cloud_guard/models/resource_profile_endpoint_summary.py +++ b/src/oci/cloud_guard/models/resource_profile_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_profile_impacted_resource_collection.py b/src/oci/cloud_guard/models/resource_profile_impacted_resource_collection.py index 7ef60d5525..0d56ee56c8 100644 --- a/src/oci/cloud_guard/models/resource_profile_impacted_resource_collection.py +++ b/src/oci/cloud_guard/models/resource_profile_impacted_resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_profile_impacted_resource_summary.py b/src/oci/cloud_guard/models/resource_profile_impacted_resource_summary.py index 858e90fff1..0e805fe002 100644 --- a/src/oci/cloud_guard/models/resource_profile_impacted_resource_summary.py +++ b/src/oci/cloud_guard/models/resource_profile_impacted_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_profile_risk_score_aggregation_summary.py b/src/oci/cloud_guard/models/resource_profile_risk_score_aggregation_summary.py index e9dc199c7a..0aad5ebb14 100644 --- a/src/oci/cloud_guard/models/resource_profile_risk_score_aggregation_summary.py +++ b/src/oci/cloud_guard/models/resource_profile_risk_score_aggregation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_profile_risk_score_aggregation_summary_collection.py b/src/oci/cloud_guard/models/resource_profile_risk_score_aggregation_summary_collection.py index 4f28cf46fe..f589de38cd 100644 --- a/src/oci/cloud_guard/models/resource_profile_risk_score_aggregation_summary_collection.py +++ b/src/oci/cloud_guard/models/resource_profile_risk_score_aggregation_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_profile_summary.py b/src/oci/cloud_guard/models/resource_profile_summary.py index 80fc1b8382..caaeebb63e 100644 --- a/src/oci/cloud_guard/models/resource_profile_summary.py +++ b/src/oci/cloud_guard/models/resource_profile_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_risk_score_aggregation.py b/src/oci/cloud_guard/models/resource_risk_score_aggregation.py index 3ba6b1b96f..f4c27882cf 100644 --- a/src/oci/cloud_guard/models/resource_risk_score_aggregation.py +++ b/src/oci/cloud_guard/models/resource_risk_score_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_risk_score_aggregation_collection.py b/src/oci/cloud_guard/models/resource_risk_score_aggregation_collection.py index 082bf7ca18..5c6596655c 100644 --- a/src/oci/cloud_guard/models/resource_risk_score_aggregation_collection.py +++ b/src/oci/cloud_guard/models/resource_risk_score_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_summary.py b/src/oci/cloud_guard/models/resource_summary.py index dcfe18bd6f..09a11e85ca 100644 --- a/src/oci/cloud_guard/models/resource_summary.py +++ b/src/oci/cloud_guard/models/resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_type_collection.py b/src/oci/cloud_guard/models/resource_type_collection.py index b4ff1ed81a..c44d0676d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_type_summary.py b/src/oci/cloud_guard/models/resource_type_summary.py index b51a041c67..e4eae70bec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_vulnerability.py b/src/oci/cloud_guard/models/resource_vulnerability.py index b506b1c0a4..78ffd19b31 100644 --- a/src/oci/cloud_guard/models/resource_vulnerability.py +++ b/src/oci/cloud_guard/models/resource_vulnerability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_vulnerability_collection.py b/src/oci/cloud_guard/models/resource_vulnerability_collection.py index 82ef48c922..891fab6527 100644 --- a/src/oci/cloud_guard/models/resource_vulnerability_collection.py +++ b/src/oci/cloud_guard/models/resource_vulnerability_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/resource_vulnerability_summary.py b/src/oci/cloud_guard/models/resource_vulnerability_summary.py index 826f6ce721..2711d28529 100644 --- a/src/oci/cloud_guard/models/resource_vulnerability_summary.py +++ b/src/oci/cloud_guard/models/resource_vulnerability_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_activity_collection.py b/src/oci/cloud_guard/models/responder_activity_collection.py index 5297da9a3d..2153800b82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_activity_summary.py b/src/oci/cloud_guard/models/responder_activity_summary.py index 5f67d00082..d4fc7416a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_configuration.py b/src/oci/cloud_guard/models/responder_configuration.py index 7609a90a4e..435bb86d2e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_execution.py b/src/oci/cloud_guard/models/responder_execution.py index 248ffb669f..d157b3957d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_execution_aggregation.py b/src/oci/cloud_guard/models/responder_execution_aggregation.py index c612c6bf46..7a7f9d59e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 c628bb6468..ae2e9e9cec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_execution_collection.py b/src/oci/cloud_guard/models/responder_execution_collection.py index 9eb3b04596..fd1ac110c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_execution_summary.py b/src/oci/cloud_guard/models/responder_execution_summary.py index 219983f02c..48b5aa0a45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 67214d299f..7e96f61e2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 1646132469..87d91301eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_recipe.py b/src/oci/cloud_guard/models/responder_recipe.py index 2b4e14e583..4e4a7e043c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_recipe_collection.py b/src/oci/cloud_guard/models/responder_recipe_collection.py index 98818bfc96..aa130a998d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 66e4a34d7d..2248ccee84 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 184f70b73d..778f89a7a7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 6c2656d7fe..3612a955d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_recipe_summary.py b/src/oci/cloud_guard/models/responder_recipe_summary.py index 1a79f9325a..214c489024 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_rule.py b/src/oci/cloud_guard/models/responder_rule.py index 819e1a29e3..7eca17ae38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_rule_collection.py b/src/oci/cloud_guard/models/responder_rule_collection.py index bbe0a20d8e..ca9de92399 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_rule_details.py b/src/oci/cloud_guard/models/responder_rule_details.py index f7c3b69069..cf080ba05e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 380a0d7bca..a7922c2ffa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/responder_rule_summary.py b/src/oci/cloud_guard/models/responder_rule_summary.py index 18e56692d0..4e91ce97ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/risk_score_aggregation.py b/src/oci/cloud_guard/models/risk_score_aggregation.py index 2af0f6b257..a6ffa1c92d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 dd74bc727e..312b14ea9b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/rule_summary.py b/src/oci/cloud_guard/models/rule_summary.py index 8aec5a507b..c7c38687d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/saved_query.py b/src/oci/cloud_guard/models/saved_query.py index 2d0bc7c48f..b31991856f 100644 --- a/src/oci/cloud_guard/models/saved_query.py +++ b/src/oci/cloud_guard/models/saved_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/saved_query_collection.py b/src/oci/cloud_guard/models/saved_query_collection.py index 5f475ac41d..4f6150a59b 100644 --- a/src/oci/cloud_guard/models/saved_query_collection.py +++ b/src/oci/cloud_guard/models/saved_query_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/saved_query_summary.py b/src/oci/cloud_guard/models/saved_query_summary.py index f18b392800..a333a2d0b8 100644 --- a/src/oci/cloud_guard/models/saved_query_summary.py +++ b/src/oci/cloud_guard/models/saved_query_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/scheduled_query_data_source_obj_details.py b/src/oci/cloud_guard/models/scheduled_query_data_source_obj_details.py index 8c2ea91116..c61c4dfd6b 100644 --- a/src/oci/cloud_guard/models/scheduled_query_data_source_obj_details.py +++ b/src/oci/cloud_guard/models/scheduled_query_data_source_obj_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/scheduled_query_data_source_summary_obj_details.py b/src/oci/cloud_guard/models/scheduled_query_data_source_summary_obj_details.py index 199ca002d9..8f5fa845e8 100644 --- a/src/oci/cloud_guard/models/scheduled_query_data_source_summary_obj_details.py +++ b/src/oci/cloud_guard/models/scheduled_query_data_source_summary_obj_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/scheduled_query_scope_detail.py b/src/oci/cloud_guard/models/scheduled_query_scope_detail.py index bc5a700083..4677285eff 100644 --- a/src/oci/cloud_guard/models/scheduled_query_scope_detail.py +++ b/src/oci/cloud_guard/models/scheduled_query_scope_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_policy.py b/src/oci/cloud_guard/models/security_policy.py index 8d1397235a..4ca9d1fe3a 100644 --- a/src/oci/cloud_guard/models/security_policy.py +++ b/src/oci/cloud_guard/models/security_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_policy_collection.py b/src/oci/cloud_guard/models/security_policy_collection.py index 26a284bbab..693543c1d4 100644 --- a/src/oci/cloud_guard/models/security_policy_collection.py +++ b/src/oci/cloud_guard/models/security_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_policy_summary.py b/src/oci/cloud_guard/models/security_policy_summary.py index c74f490b31..00dab2c7f1 100644 --- a/src/oci/cloud_guard/models/security_policy_summary.py +++ b/src/oci/cloud_guard/models/security_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_recipe.py b/src/oci/cloud_guard/models/security_recipe.py index 13aee259f9..33b308a2cf 100644 --- a/src/oci/cloud_guard/models/security_recipe.py +++ b/src/oci/cloud_guard/models/security_recipe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_recipe_collection.py b/src/oci/cloud_guard/models/security_recipe_collection.py index 08b49c668d..836263efee 100644 --- a/src/oci/cloud_guard/models/security_recipe_collection.py +++ b/src/oci/cloud_guard/models/security_recipe_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_recipe_summary.py b/src/oci/cloud_guard/models/security_recipe_summary.py index 1bdc3d823d..89becc93cd 100644 --- a/src/oci/cloud_guard/models/security_recipe_summary.py +++ b/src/oci/cloud_guard/models/security_recipe_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_score_aggregation.py b/src/oci/cloud_guard/models/security_score_aggregation.py index e34c86c27b..7d15f337b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 f93c9c4b99..9769d50d2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 78252fe458..b39fd1d381 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 e496d3bdfe..940135cfe3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_zone.py b/src/oci/cloud_guard/models/security_zone.py index 37eced5c4c..0db7164ef8 100644 --- a/src/oci/cloud_guard/models/security_zone.py +++ b/src/oci/cloud_guard/models/security_zone.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_zone_collection.py b/src/oci/cloud_guard/models/security_zone_collection.py index 92457ccd95..1600d2974c 100644 --- a/src/oci/cloud_guard/models/security_zone_collection.py +++ b/src/oci/cloud_guard/models/security_zone_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_zone_summary.py b/src/oci/cloud_guard/models/security_zone_summary.py index 94ab14bd4a..d8727a3b40 100644 --- a/src/oci/cloud_guard/models/security_zone_summary.py +++ b/src/oci/cloud_guard/models/security_zone_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/security_zone_target_details.py b/src/oci/cloud_guard/models/security_zone_target_details.py index 2b25d542be..1a7e321c40 100644 --- a/src/oci/cloud_guard/models/security_zone_target_details.py +++ b/src/oci/cloud_guard/models/security_zone_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/service_configuration.py b/src/oci/cloud_guard/models/service_configuration.py index 9d9cc5d1be..cb86696261 100644 --- a/src/oci/cloud_guard/models/service_configuration.py +++ b/src/oci/cloud_guard/models/service_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/service_type_summary.py b/src/oci/cloud_guard/models/service_type_summary.py index 74b5170bed..85b0899092 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/sighting.py b/src/oci/cloud_guard/models/sighting.py index e92069a046..bff672c023 100644 --- a/src/oci/cloud_guard/models/sighting.py +++ b/src/oci/cloud_guard/models/sighting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/sighting_collection.py b/src/oci/cloud_guard/models/sighting_collection.py index cccbdc2bf2..9a68455856 100644 --- a/src/oci/cloud_guard/models/sighting_collection.py +++ b/src/oci/cloud_guard/models/sighting_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/sighting_endpoint_collection.py b/src/oci/cloud_guard/models/sighting_endpoint_collection.py index b0bdae9008..4e99887cbd 100644 --- a/src/oci/cloud_guard/models/sighting_endpoint_collection.py +++ b/src/oci/cloud_guard/models/sighting_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/sighting_endpoint_summary.py b/src/oci/cloud_guard/models/sighting_endpoint_summary.py index 84895b3485..219eeefd9e 100644 --- a/src/oci/cloud_guard/models/sighting_endpoint_summary.py +++ b/src/oci/cloud_guard/models/sighting_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/sighting_impacted_resource_collection.py b/src/oci/cloud_guard/models/sighting_impacted_resource_collection.py index 628c8ca225..27702fe207 100644 --- a/src/oci/cloud_guard/models/sighting_impacted_resource_collection.py +++ b/src/oci/cloud_guard/models/sighting_impacted_resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/sighting_impacted_resource_summary.py b/src/oci/cloud_guard/models/sighting_impacted_resource_summary.py index 4a9794da76..3ed5868cef 100644 --- a/src/oci/cloud_guard/models/sighting_impacted_resource_summary.py +++ b/src/oci/cloud_guard/models/sighting_impacted_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/sighting_summary.py b/src/oci/cloud_guard/models/sighting_summary.py index 74d8777806..ff529ace4f 100644 --- a/src/oci/cloud_guard/models/sighting_summary.py +++ b/src/oci/cloud_guard/models/sighting_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/sighting_type.py b/src/oci/cloud_guard/models/sighting_type.py index 5de500a741..371909d346 100644 --- a/src/oci/cloud_guard/models/sighting_type.py +++ b/src/oci/cloud_guard/models/sighting_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/simple_condition.py b/src/oci/cloud_guard/models/simple_condition.py index 304e5b9ad7..f58808d201 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 02f1ca1b3a..8d57797abf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/tactic_collection.py b/src/oci/cloud_guard/models/tactic_collection.py index 58aea04dd5..d333585e2b 100644 --- a/src/oci/cloud_guard/models/tactic_collection.py +++ b/src/oci/cloud_guard/models/tactic_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/tactic_summary.py b/src/oci/cloud_guard/models/tactic_summary.py index a0503d6e1f..a5f80bff85 100644 --- a/src/oci/cloud_guard/models/tactic_summary.py +++ b/src/oci/cloud_guard/models/tactic_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/target.py b/src/oci/cloud_guard/models/target.py index 6b66074bf9..498340fc49 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/target_collection.py b/src/oci/cloud_guard/models/target_collection.py index 127be762b5..72f3d43493 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/target_details.py b/src/oci/cloud_guard/models/target_details.py index 998f329f3d..c08aecca21 100644 --- a/src/oci/cloud_guard/models/target_details.py +++ b/src/oci/cloud_guard/models/target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/target_detector_details.py b/src/oci/cloud_guard/models/target_detector_details.py index ce1e04a086..e67181b0ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/target_detector_recipe.py b/src/oci/cloud_guard/models/target_detector_recipe.py index fc5d7ecd89..6f4f6d1e28 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 75f384a504..f2234eea7f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 d8b67688c6..0e186137be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 c1b1328cea..eafc6d1dc4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 2e3c304618..465418aac9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 69fe345ab4..4159adf458 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/target_ids_selected.py b/src/oci/cloud_guard/models/target_ids_selected.py index 74d9860696..25e56d0c77 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 413e3b347b..eb0a38cd5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/target_responder_recipe.py b/src/oci/cloud_guard/models/target_responder_recipe.py index 4359a68abe..0d358856cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 3775e56a6c..63c55117e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 4756e0b439..627eedb0b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 3df83fd0f8..90693e741a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 2adaf0fe9d..c8fc29474b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 af14be74a1..c8f2e39f8f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/target_selected.py b/src/oci/cloud_guard/models/target_selected.py index ae1370b6b6..5ca7329a5a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/target_summary.py b/src/oci/cloud_guard/models/target_summary.py index 034f929562..d6970de3c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/technique_collection.py b/src/oci/cloud_guard/models/technique_collection.py index fcc90c16c5..026e341c81 100644 --- a/src/oci/cloud_guard/models/technique_collection.py +++ b/src/oci/cloud_guard/models/technique_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/technique_summary.py b/src/oci/cloud_guard/models/technique_summary.py index ad1bf4e59b..2df374517e 100644 --- a/src/oci/cloud_guard/models/technique_summary.py +++ b/src/oci/cloud_guard/models/technique_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/trigger_responder_details.py b/src/oci/cloud_guard/models/trigger_responder_details.py index ebb52ae55e..b30faf823f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 d937cb4aa6..b7e1421135 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/update_configuration_details.py b/src/oci/cloud_guard/models/update_configuration_details.py index e47d5ebee8..7aa905b313 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 fc2f80aea7..593149fe43 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/update_data_source_details.py b/src/oci/cloud_guard/models/update_data_source_details.py index 7db0c377c2..94d0706373 100644 --- a/src/oci/cloud_guard/models/update_data_source_details.py +++ b/src/oci/cloud_guard/models/update_data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 7a7b01006d..fe43eaa4c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 595f54db5f..b1cb6d3a0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 0a803d4388..305cae3903 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 57f6ab0ab9..bdada52d6f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 5cc0f0e4e0..098637d595 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 9d50136e60..f3dfbaf656 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 aaf42d2dc6..f6adafdd8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 604f80d43a..c749db5fbc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 3ed5bf6192..dd4427c2c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 d989978b2e..64d5f6ddde 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/update_saved_query_details.py b/src/oci/cloud_guard/models/update_saved_query_details.py index 793a8fe3c3..b70b9da76e 100644 --- a/src/oci/cloud_guard/models/update_saved_query_details.py +++ b/src/oci/cloud_guard/models/update_saved_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/update_security_policy_details.py b/src/oci/cloud_guard/models/update_security_policy_details.py index 74ecad66a3..69a6769558 100644 --- a/src/oci/cloud_guard/models/update_security_policy_details.py +++ b/src/oci/cloud_guard/models/update_security_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/update_security_recipe_details.py b/src/oci/cloud_guard/models/update_security_recipe_details.py index 814c7e5e55..b8af4899ca 100644 --- a/src/oci/cloud_guard/models/update_security_recipe_details.py +++ b/src/oci/cloud_guard/models/update_security_recipe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/update_security_zone_details.py b/src/oci/cloud_guard/models/update_security_zone_details.py index e412491a11..66e73075b4 100644 --- a/src/oci/cloud_guard/models/update_security_zone_details.py +++ b/src/oci/cloud_guard/models/update_security_zone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/update_target_details.py b/src/oci/cloud_guard/models/update_target_details.py index 80df1f1050..781b1201b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 e777c98fc9..1864625918 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 64dba84a1a..07b347accb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 9f7c14ea3b..26b80d97ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 5f3d5701e6..e53748694b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 04b7d42399..e2962d704b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 68421ea64d..8b63a054cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 963034150f..b2a53631e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 b0ea3d8441..0e21030a18 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 27814b9d32..6363084c6c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 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 29894ed26a..fbae143870 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/update_wlp_agent_details.py b/src/oci/cloud_guard/models/update_wlp_agent_details.py index 5c777c2be6..56390a237e 100644 --- a/src/oci/cloud_guard/models/update_wlp_agent_details.py +++ b/src/oci/cloud_guard/models/update_wlp_agent_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/wlp_agent.py b/src/oci/cloud_guard/models/wlp_agent.py index 8486a807ec..d2aba6543d 100644 --- a/src/oci/cloud_guard/models/wlp_agent.py +++ b/src/oci/cloud_guard/models/wlp_agent.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/wlp_agent_collection.py b/src/oci/cloud_guard/models/wlp_agent_collection.py index d9cbad010e..13b1d65983 100644 --- a/src/oci/cloud_guard/models/wlp_agent_collection.py +++ b/src/oci/cloud_guard/models/wlp_agent_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/wlp_agent_summary.py b/src/oci/cloud_guard/models/wlp_agent_summary.py index 0ca5f660d5..ec0f77ad48 100644 --- a/src/oci/cloud_guard/models/wlp_agent_summary.py +++ b/src/oci/cloud_guard/models/wlp_agent_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/work_request.py b/src/oci/cloud_guard/models/work_request.py index eca796fb3d..21c0729380 100644 --- a/src/oci/cloud_guard/models/work_request.py +++ b/src/oci/cloud_guard/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/work_request_error.py b/src/oci/cloud_guard/models/work_request_error.py index 8132f0507c..4018236331 100644 --- a/src/oci/cloud_guard/models/work_request_error.py +++ b/src/oci/cloud_guard/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/work_request_error_collection.py b/src/oci/cloud_guard/models/work_request_error_collection.py index e5236e1fe0..0ab827d989 100644 --- a/src/oci/cloud_guard/models/work_request_error_collection.py +++ b/src/oci/cloud_guard/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/work_request_log_entry.py b/src/oci/cloud_guard/models/work_request_log_entry.py index ac6cd03e83..c7861af943 100644 --- a/src/oci/cloud_guard/models/work_request_log_entry.py +++ b/src/oci/cloud_guard/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/work_request_log_entry_collection.py b/src/oci/cloud_guard/models/work_request_log_entry_collection.py index d85e509a6a..1e730850e3 100644 --- a/src/oci/cloud_guard/models/work_request_log_entry_collection.py +++ b/src/oci/cloud_guard/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/work_request_resource.py b/src/oci/cloud_guard/models/work_request_resource.py index a7acd84c5c..d2c6665990 100644 --- a/src/oci/cloud_guard/models/work_request_resource.py +++ b/src/oci/cloud_guard/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/work_request_summary.py b/src/oci/cloud_guard/models/work_request_summary.py index d7fb521796..e3fbd18c53 100644 --- a/src/oci/cloud_guard/models/work_request_summary.py +++ b/src/oci/cloud_guard/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_guard/models/work_request_summary_collection.py b/src/oci/cloud_guard/models/work_request_summary_collection.py index bd642e740e..e381b08bc2 100644 --- a/src/oci/cloud_guard/models/work_request_summary_collection.py +++ b/src/oci/cloud_guard/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200131 diff --git a/src/oci/cloud_migrations/__init__.py b/src/oci/cloud_migrations/__init__.py index 1670e7aa7d..70b48042d3 100644 --- a/src/oci/cloud_migrations/__init__.py +++ b/src/oci/cloud_migrations/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/migration_client.py b/src/oci/cloud_migrations/migration_client.py index dd17184796..36f6f8f0d7 100644 --- a/src/oci/cloud_migrations/migration_client.py +++ b/src/oci/cloud_migrations/migration_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/migration_client_composite_operations.py b/src/oci/cloud_migrations/migration_client_composite_operations.py index 9e82cb52d4..f245c57ae6 100644 --- a/src/oci/cloud_migrations/migration_client_composite_operations.py +++ b/src/oci/cloud_migrations/migration_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/__init__.py b/src/oci/cloud_migrations/models/__init__.py index b3e5baf6f0..26f339be7e 100644 --- a/src/oci/cloud_migrations/models/__init__.py +++ b/src/oci/cloud_migrations/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/as_is_resource_assessment_strategy.py b/src/oci/cloud_migrations/models/as_is_resource_assessment_strategy.py index d48f797d2f..927714115f 100644 --- a/src/oci/cloud_migrations/models/as_is_resource_assessment_strategy.py +++ b/src/oci/cloud_migrations/models/as_is_resource_assessment_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/asset_source.py b/src/oci/cloud_migrations/models/asset_source.py index 5d15c51aff..62b79a4d86 100644 --- a/src/oci/cloud_migrations/models/asset_source.py +++ b/src/oci/cloud_migrations/models/asset_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/asset_source_collection.py b/src/oci/cloud_migrations/models/asset_source_collection.py index f9d6df635d..92d5425751 100644 --- a/src/oci/cloud_migrations/models/asset_source_collection.py +++ b/src/oci/cloud_migrations/models/asset_source_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/asset_source_connection.py b/src/oci/cloud_migrations/models/asset_source_connection.py index 3d57de2a38..35662654a0 100644 --- a/src/oci/cloud_migrations/models/asset_source_connection.py +++ b/src/oci/cloud_migrations/models/asset_source_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/asset_source_connection_collection.py b/src/oci/cloud_migrations/models/asset_source_connection_collection.py index 3b05c44c6b..ade60bd921 100644 --- a/src/oci/cloud_migrations/models/asset_source_connection_collection.py +++ b/src/oci/cloud_migrations/models/asset_source_connection_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/asset_source_credentials.py b/src/oci/cloud_migrations/models/asset_source_credentials.py index 7d87481f6f..24856ee923 100644 --- a/src/oci/cloud_migrations/models/asset_source_credentials.py +++ b/src/oci/cloud_migrations/models/asset_source_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/asset_source_summary.py b/src/oci/cloud_migrations/models/asset_source_summary.py index 25b2e96bb0..a10822de1f 100644 --- a/src/oci/cloud_migrations/models/asset_source_summary.py +++ b/src/oci/cloud_migrations/models/asset_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/available_shape_summary.py b/src/oci/cloud_migrations/models/available_shape_summary.py index a1109d550f..0aa56152d7 100644 --- a/src/oci/cloud_migrations/models/available_shape_summary.py +++ b/src/oci/cloud_migrations/models/available_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/available_shapes_collection.py b/src/oci/cloud_migrations/models/available_shapes_collection.py index 344f8a05c3..210a82d1ef 100644 --- a/src/oci/cloud_migrations/models/available_shapes_collection.py +++ b/src/oci/cloud_migrations/models/available_shapes_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/average_resource_assessment_strategy.py b/src/oci/cloud_migrations/models/average_resource_assessment_strategy.py index 08fbfab423..beb455bade 100644 --- a/src/oci/cloud_migrations/models/average_resource_assessment_strategy.py +++ b/src/oci/cloud_migrations/models/average_resource_assessment_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/change_asset_source_compartment_details.py b/src/oci/cloud_migrations/models/change_asset_source_compartment_details.py index 20a5849def..8494a64c54 100644 --- a/src/oci/cloud_migrations/models/change_asset_source_compartment_details.py +++ b/src/oci/cloud_migrations/models/change_asset_source_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/change_discovery_schedule_compartment_details.py b/src/oci/cloud_migrations/models/change_discovery_schedule_compartment_details.py index 8f2e81e338..eea0ae1975 100644 --- a/src/oci/cloud_migrations/models/change_discovery_schedule_compartment_details.py +++ b/src/oci/cloud_migrations/models/change_discovery_schedule_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/change_migration_compartment_details.py b/src/oci/cloud_migrations/models/change_migration_compartment_details.py index f33904eab6..aec2ad6216 100644 --- a/src/oci/cloud_migrations/models/change_migration_compartment_details.py +++ b/src/oci/cloud_migrations/models/change_migration_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/change_migration_plan_compartment_details.py b/src/oci/cloud_migrations/models/change_migration_plan_compartment_details.py index a1d72a65d9..5ff008525c 100644 --- a/src/oci/cloud_migrations/models/change_migration_plan_compartment_details.py +++ b/src/oci/cloud_migrations/models/change_migration_plan_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/change_replication_schedule_compartment_details.py b/src/oci/cloud_migrations/models/change_replication_schedule_compartment_details.py index dcd04a3ce9..a74e8fc4f7 100644 --- a/src/oci/cloud_migrations/models/change_replication_schedule_compartment_details.py +++ b/src/oci/cloud_migrations/models/change_replication_schedule_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/compatibility_message.py b/src/oci/cloud_migrations/models/compatibility_message.py index 58a4df32e3..270e5cdf7e 100644 --- a/src/oci/cloud_migrations/models/compatibility_message.py +++ b/src/oci/cloud_migrations/models/compatibility_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/compute_cost_estimation.py b/src/oci/cloud_migrations/models/compute_cost_estimation.py index 6103448542..85c167d309 100644 --- a/src/oci/cloud_migrations/models/compute_cost_estimation.py +++ b/src/oci/cloud_migrations/models/compute_cost_estimation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/cost_estimation.py b/src/oci/cloud_migrations/models/cost_estimation.py index 47675a0b70..0b97a12e4f 100644 --- a/src/oci/cloud_migrations/models/cost_estimation.py +++ b/src/oci/cloud_migrations/models/cost_estimation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_asset_source_details.py b/src/oci/cloud_migrations/models/create_asset_source_details.py index 99d9093be1..6bf7e1a7ed 100644 --- a/src/oci/cloud_migrations/models/create_asset_source_details.py +++ b/src/oci/cloud_migrations/models/create_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_discovery_schedule_details.py b/src/oci/cloud_migrations/models/create_discovery_schedule_details.py index e87b9ab58c..9230507047 100644 --- a/src/oci/cloud_migrations/models/create_discovery_schedule_details.py +++ b/src/oci/cloud_migrations/models/create_discovery_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_migration_asset_details.py b/src/oci/cloud_migrations/models/create_migration_asset_details.py index a2f12d5e46..c102533f44 100644 --- a/src/oci/cloud_migrations/models/create_migration_asset_details.py +++ b/src/oci/cloud_migrations/models/create_migration_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_migration_details.py b/src/oci/cloud_migrations/models/create_migration_details.py index 7db4485183..0755ae9d9e 100644 --- a/src/oci/cloud_migrations/models/create_migration_details.py +++ b/src/oci/cloud_migrations/models/create_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_migration_plan_details.py b/src/oci/cloud_migrations/models/create_migration_plan_details.py index 3984dd4380..9a1398e599 100644 --- a/src/oci/cloud_migrations/models/create_migration_plan_details.py +++ b/src/oci/cloud_migrations/models/create_migration_plan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_replication_schedule_details.py b/src/oci/cloud_migrations/models/create_replication_schedule_details.py index 9fa51ad157..ab8a0e6700 100644 --- a/src/oci/cloud_migrations/models/create_replication_schedule_details.py +++ b/src/oci/cloud_migrations/models/create_replication_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_target_asset_details.py b/src/oci/cloud_migrations/models/create_target_asset_details.py index c4e80b5649..3fefc46b02 100644 --- a/src/oci/cloud_migrations/models/create_target_asset_details.py +++ b/src/oci/cloud_migrations/models/create_target_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_vm_target_asset_details.py b/src/oci/cloud_migrations/models/create_vm_target_asset_details.py index 587c5efd43..e4ac2ed1b9 100644 --- a/src/oci/cloud_migrations/models/create_vm_target_asset_details.py +++ b/src/oci/cloud_migrations/models/create_vm_target_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_vm_ware_asset_source_details.py b/src/oci/cloud_migrations/models/create_vm_ware_asset_source_details.py index 0823ae060b..0f77f60e79 100644 --- a/src/oci/cloud_migrations/models/create_vm_ware_asset_source_details.py +++ b/src/oci/cloud_migrations/models/create_vm_ware_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/create_vnic_details.py b/src/oci/cloud_migrations/models/create_vnic_details.py index 59ca786d05..185f963974 100644 --- a/src/oci/cloud_migrations/models/create_vnic_details.py +++ b/src/oci/cloud_migrations/models/create_vnic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/discovery_schedule.py b/src/oci/cloud_migrations/models/discovery_schedule.py index 862e30f6bc..eca1116f1c 100644 --- a/src/oci/cloud_migrations/models/discovery_schedule.py +++ b/src/oci/cloud_migrations/models/discovery_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/discovery_schedule_collection.py b/src/oci/cloud_migrations/models/discovery_schedule_collection.py index a9f0ac6f3d..644222cb55 100644 --- a/src/oci/cloud_migrations/models/discovery_schedule_collection.py +++ b/src/oci/cloud_migrations/models/discovery_schedule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/discovery_schedule_summary.py b/src/oci/cloud_migrations/models/discovery_schedule_summary.py index e10fa96c31..e059491453 100644 --- a/src/oci/cloud_migrations/models/discovery_schedule_summary.py +++ b/src/oci/cloud_migrations/models/discovery_schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/hydrated_volume.py b/src/oci/cloud_migrations/models/hydrated_volume.py index 97ac80f939..0a1bc6a988 100644 --- a/src/oci/cloud_migrations/models/hydrated_volume.py +++ b/src/oci/cloud_migrations/models/hydrated_volume.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/instance_agent_plugin_config_details.py b/src/oci/cloud_migrations/models/instance_agent_plugin_config_details.py index 996083a4a9..ca1bf2816a 100644 --- a/src/oci/cloud_migrations/models/instance_agent_plugin_config_details.py +++ b/src/oci/cloud_migrations/models/instance_agent_plugin_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/instance_options.py b/src/oci/cloud_migrations/models/instance_options.py index 9501effdab..489b72daaa 100644 --- a/src/oci/cloud_migrations/models/instance_options.py +++ b/src/oci/cloud_migrations/models/instance_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/instance_source_details.py b/src/oci/cloud_migrations/models/instance_source_details.py index c539630012..da5a034525 100644 --- a/src/oci/cloud_migrations/models/instance_source_details.py +++ b/src/oci/cloud_migrations/models/instance_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/instance_source_via_boot_volume_details.py b/src/oci/cloud_migrations/models/instance_source_via_boot_volume_details.py index 7d817310e1..660a51fb5c 100644 --- a/src/oci/cloud_migrations/models/instance_source_via_boot_volume_details.py +++ b/src/oci/cloud_migrations/models/instance_source_via_boot_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/instance_source_via_image_details.py b/src/oci/cloud_migrations/models/instance_source_via_image_details.py index 15c4e52cc0..89fb982e67 100644 --- a/src/oci/cloud_migrations/models/instance_source_via_image_details.py +++ b/src/oci/cloud_migrations/models/instance_source_via_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/launch_instance_agent_config_details.py b/src/oci/cloud_migrations/models/launch_instance_agent_config_details.py index ad06935b2d..bdf3f5f231 100644 --- a/src/oci/cloud_migrations/models/launch_instance_agent_config_details.py +++ b/src/oci/cloud_migrations/models/launch_instance_agent_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/launch_instance_details.py b/src/oci/cloud_migrations/models/launch_instance_details.py index 803b0cdbbe..a64a3f8834 100644 --- a/src/oci/cloud_migrations/models/launch_instance_details.py +++ b/src/oci/cloud_migrations/models/launch_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/launch_instance_shape_config_details.py b/src/oci/cloud_migrations/models/launch_instance_shape_config_details.py index cdbe565457..4e0de614f3 100644 --- a/src/oci/cloud_migrations/models/launch_instance_shape_config_details.py +++ b/src/oci/cloud_migrations/models/launch_instance_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration.py b/src/oci/cloud_migrations/models/migration.py index 31769cb771..8e9167f535 100644 --- a/src/oci/cloud_migrations/models/migration.py +++ b/src/oci/cloud_migrations/models/migration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration_asset.py b/src/oci/cloud_migrations/models/migration_asset.py index d2a7d3d84b..efb32e68fd 100644 --- a/src/oci/cloud_migrations/models/migration_asset.py +++ b/src/oci/cloud_migrations/models/migration_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration_asset_collection.py b/src/oci/cloud_migrations/models/migration_asset_collection.py index 99cba3b7ff..9624424b3c 100644 --- a/src/oci/cloud_migrations/models/migration_asset_collection.py +++ b/src/oci/cloud_migrations/models/migration_asset_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration_asset_summary.py b/src/oci/cloud_migrations/models/migration_asset_summary.py index c8a4fe86cc..f6214136b0 100644 --- a/src/oci/cloud_migrations/models/migration_asset_summary.py +++ b/src/oci/cloud_migrations/models/migration_asset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration_collection.py b/src/oci/cloud_migrations/models/migration_collection.py index 380dafef1c..6fd7038f03 100644 --- a/src/oci/cloud_migrations/models/migration_collection.py +++ b/src/oci/cloud_migrations/models/migration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration_plan.py b/src/oci/cloud_migrations/models/migration_plan.py index a004538131..c125fa7e14 100644 --- a/src/oci/cloud_migrations/models/migration_plan.py +++ b/src/oci/cloud_migrations/models/migration_plan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration_plan_collection.py b/src/oci/cloud_migrations/models/migration_plan_collection.py index 30c2716c8b..3c855d58e5 100644 --- a/src/oci/cloud_migrations/models/migration_plan_collection.py +++ b/src/oci/cloud_migrations/models/migration_plan_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration_plan_stats.py b/src/oci/cloud_migrations/models/migration_plan_stats.py index 02573d142f..13a7b30193 100644 --- a/src/oci/cloud_migrations/models/migration_plan_stats.py +++ b/src/oci/cloud_migrations/models/migration_plan_stats.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration_plan_summary.py b/src/oci/cloud_migrations/models/migration_plan_summary.py index 3a1d0ec4cb..45835227cd 100644 --- a/src/oci/cloud_migrations/models/migration_plan_summary.py +++ b/src/oci/cloud_migrations/models/migration_plan_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/migration_summary.py b/src/oci/cloud_migrations/models/migration_summary.py index 6b1f57a3a2..d5bd513dd6 100644 --- a/src/oci/cloud_migrations/models/migration_summary.py +++ b/src/oci/cloud_migrations/models/migration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/os_image_estimation.py b/src/oci/cloud_migrations/models/os_image_estimation.py index b63dc5b7f4..30ab885873 100644 --- a/src/oci/cloud_migrations/models/os_image_estimation.py +++ b/src/oci/cloud_migrations/models/os_image_estimation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/peak_resource_assessment_strategy.py b/src/oci/cloud_migrations/models/peak_resource_assessment_strategy.py index 84b88c2517..92707a9af7 100644 --- a/src/oci/cloud_migrations/models/peak_resource_assessment_strategy.py +++ b/src/oci/cloud_migrations/models/peak_resource_assessment_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/percentile_resource_assessment_strategy.py b/src/oci/cloud_migrations/models/percentile_resource_assessment_strategy.py index 993ede9fbf..cef143dfe6 100644 --- a/src/oci/cloud_migrations/models/percentile_resource_assessment_strategy.py +++ b/src/oci/cloud_migrations/models/percentile_resource_assessment_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/preemptible_instance_config_details.py b/src/oci/cloud_migrations/models/preemptible_instance_config_details.py index be575f0b7e..a1a4916ef5 100644 --- a/src/oci/cloud_migrations/models/preemptible_instance_config_details.py +++ b/src/oci/cloud_migrations/models/preemptible_instance_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/preemption_action.py b/src/oci/cloud_migrations/models/preemption_action.py index e45237b39c..b2498de37f 100644 --- a/src/oci/cloud_migrations/models/preemption_action.py +++ b/src/oci/cloud_migrations/models/preemption_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/replication_progress.py b/src/oci/cloud_migrations/models/replication_progress.py index 3128208ca2..9a3aaa75b6 100644 --- a/src/oci/cloud_migrations/models/replication_progress.py +++ b/src/oci/cloud_migrations/models/replication_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/replication_schedule.py b/src/oci/cloud_migrations/models/replication_schedule.py index 5f00ad703c..98a5ac75c4 100644 --- a/src/oci/cloud_migrations/models/replication_schedule.py +++ b/src/oci/cloud_migrations/models/replication_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/replication_schedule_collection.py b/src/oci/cloud_migrations/models/replication_schedule_collection.py index 7d299e3133..1d1ead7203 100644 --- a/src/oci/cloud_migrations/models/replication_schedule_collection.py +++ b/src/oci/cloud_migrations/models/replication_schedule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/replication_schedule_summary.py b/src/oci/cloud_migrations/models/replication_schedule_summary.py index d2d0e117e6..7a9917dcc4 100644 --- a/src/oci/cloud_migrations/models/replication_schedule_summary.py +++ b/src/oci/cloud_migrations/models/replication_schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/resource_assessment_strategy.py b/src/oci/cloud_migrations/models/resource_assessment_strategy.py index ea55001a1f..c680702738 100644 --- a/src/oci/cloud_migrations/models/resource_assessment_strategy.py +++ b/src/oci/cloud_migrations/models/resource_assessment_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/storage_cost_estimation.py b/src/oci/cloud_migrations/models/storage_cost_estimation.py index 1053e0ec00..39a7f509b2 100644 --- a/src/oci/cloud_migrations/models/storage_cost_estimation.py +++ b/src/oci/cloud_migrations/models/storage_cost_estimation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/target_asset.py b/src/oci/cloud_migrations/models/target_asset.py index 0c778c2b90..bd40afba92 100644 --- a/src/oci/cloud_migrations/models/target_asset.py +++ b/src/oci/cloud_migrations/models/target_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/target_asset_collection.py b/src/oci/cloud_migrations/models/target_asset_collection.py index a5f5eebc30..87e39029ce 100644 --- a/src/oci/cloud_migrations/models/target_asset_collection.py +++ b/src/oci/cloud_migrations/models/target_asset_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/target_asset_summary.py b/src/oci/cloud_migrations/models/target_asset_summary.py index 58f9324ca2..a9774c92ec 100644 --- a/src/oci/cloud_migrations/models/target_asset_summary.py +++ b/src/oci/cloud_migrations/models/target_asset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/target_environment.py b/src/oci/cloud_migrations/models/target_environment.py index bbec49ddb4..763e3e102c 100644 --- a/src/oci/cloud_migrations/models/target_environment.py +++ b/src/oci/cloud_migrations/models/target_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/terminate_preemption_action.py b/src/oci/cloud_migrations/models/terminate_preemption_action.py index 253776823b..40893a2326 100644 --- a/src/oci/cloud_migrations/models/terminate_preemption_action.py +++ b/src/oci/cloud_migrations/models/terminate_preemption_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/update_asset_source_details.py b/src/oci/cloud_migrations/models/update_asset_source_details.py index 1cf4290c46..312a560c2a 100644 --- a/src/oci/cloud_migrations/models/update_asset_source_details.py +++ b/src/oci/cloud_migrations/models/update_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/update_discovery_schedule_details.py b/src/oci/cloud_migrations/models/update_discovery_schedule_details.py index 027112d8fd..377d28fac8 100644 --- a/src/oci/cloud_migrations/models/update_discovery_schedule_details.py +++ b/src/oci/cloud_migrations/models/update_discovery_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/update_migration_asset_details.py b/src/oci/cloud_migrations/models/update_migration_asset_details.py index 17804f19dd..15c729a227 100644 --- a/src/oci/cloud_migrations/models/update_migration_asset_details.py +++ b/src/oci/cloud_migrations/models/update_migration_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/update_migration_details.py b/src/oci/cloud_migrations/models/update_migration_details.py index e5fcbe8340..c46ecb6219 100644 --- a/src/oci/cloud_migrations/models/update_migration_details.py +++ b/src/oci/cloud_migrations/models/update_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/update_migration_plan_details.py b/src/oci/cloud_migrations/models/update_migration_plan_details.py index 9322897e09..13bc4e0942 100644 --- a/src/oci/cloud_migrations/models/update_migration_plan_details.py +++ b/src/oci/cloud_migrations/models/update_migration_plan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/update_replication_schedule_details.py b/src/oci/cloud_migrations/models/update_replication_schedule_details.py index bfb1c6b4fa..f72fb3b2d1 100644 --- a/src/oci/cloud_migrations/models/update_replication_schedule_details.py +++ b/src/oci/cloud_migrations/models/update_replication_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/update_target_asset_details.py b/src/oci/cloud_migrations/models/update_target_asset_details.py index 9f19e2416f..de5db19768 100644 --- a/src/oci/cloud_migrations/models/update_target_asset_details.py +++ b/src/oci/cloud_migrations/models/update_target_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/update_vm_target_asset_details.py b/src/oci/cloud_migrations/models/update_vm_target_asset_details.py index a8bdae65f0..851d294f3b 100644 --- a/src/oci/cloud_migrations/models/update_vm_target_asset_details.py +++ b/src/oci/cloud_migrations/models/update_vm_target_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/update_vm_ware_asset_source_details.py b/src/oci/cloud_migrations/models/update_vm_ware_asset_source_details.py index 81ee468e8e..2c553b777b 100644 --- a/src/oci/cloud_migrations/models/update_vm_ware_asset_source_details.py +++ b/src/oci/cloud_migrations/models/update_vm_ware_asset_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/vm_target_asset.py b/src/oci/cloud_migrations/models/vm_target_asset.py index ee5c93f67f..2335127ffa 100644 --- a/src/oci/cloud_migrations/models/vm_target_asset.py +++ b/src/oci/cloud_migrations/models/vm_target_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/vm_target_asset_summary.py b/src/oci/cloud_migrations/models/vm_target_asset_summary.py index 316176f268..f3bef0bfc7 100644 --- a/src/oci/cloud_migrations/models/vm_target_asset_summary.py +++ b/src/oci/cloud_migrations/models/vm_target_asset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/vm_target_environment.py b/src/oci/cloud_migrations/models/vm_target_environment.py index 973c9a27c7..664ba1515b 100644 --- a/src/oci/cloud_migrations/models/vm_target_environment.py +++ b/src/oci/cloud_migrations/models/vm_target_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/vm_ware_asset_source.py b/src/oci/cloud_migrations/models/vm_ware_asset_source.py index 3994532aab..458ff6a53b 100644 --- a/src/oci/cloud_migrations/models/vm_ware_asset_source.py +++ b/src/oci/cloud_migrations/models/vm_ware_asset_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/vm_ware_asset_source_summary.py b/src/oci/cloud_migrations/models/vm_ware_asset_source_summary.py index affc53249b..cd83b10f7d 100644 --- a/src/oci/cloud_migrations/models/vm_ware_asset_source_summary.py +++ b/src/oci/cloud_migrations/models/vm_ware_asset_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/volume_cost_estimation.py b/src/oci/cloud_migrations/models/volume_cost_estimation.py index 6928e48f36..c23220d8d4 100644 --- a/src/oci/cloud_migrations/models/volume_cost_estimation.py +++ b/src/oci/cloud_migrations/models/volume_cost_estimation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/work_request.py b/src/oci/cloud_migrations/models/work_request.py index abbeb2bdb1..3c25ef05d5 100644 --- a/src/oci/cloud_migrations/models/work_request.py +++ b/src/oci/cloud_migrations/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/work_request_error.py b/src/oci/cloud_migrations/models/work_request_error.py index 91e57acd04..a822978292 100644 --- a/src/oci/cloud_migrations/models/work_request_error.py +++ b/src/oci/cloud_migrations/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/work_request_error_collection.py b/src/oci/cloud_migrations/models/work_request_error_collection.py index c849cec501..37ee616cdd 100644 --- a/src/oci/cloud_migrations/models/work_request_error_collection.py +++ b/src/oci/cloud_migrations/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/work_request_log_entry.py b/src/oci/cloud_migrations/models/work_request_log_entry.py index 8d2f6ee66f..78acf63664 100644 --- a/src/oci/cloud_migrations/models/work_request_log_entry.py +++ b/src/oci/cloud_migrations/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/work_request_log_entry_collection.py b/src/oci/cloud_migrations/models/work_request_log_entry_collection.py index 133a068613..4541b0db33 100644 --- a/src/oci/cloud_migrations/models/work_request_log_entry_collection.py +++ b/src/oci/cloud_migrations/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/work_request_resource.py b/src/oci/cloud_migrations/models/work_request_resource.py index f6748dd349..82044812c1 100644 --- a/src/oci/cloud_migrations/models/work_request_resource.py +++ b/src/oci/cloud_migrations/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/work_request_summary.py b/src/oci/cloud_migrations/models/work_request_summary.py index dad2ceeb8b..62d2691d52 100644 --- a/src/oci/cloud_migrations/models/work_request_summary.py +++ b/src/oci/cloud_migrations/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cloud_migrations/models/work_request_summary_collection.py b/src/oci/cloud_migrations/models/work_request_summary_collection.py index e0f27f85b4..59cc1c7769 100644 --- a/src/oci/cloud_migrations/models/work_request_summary_collection.py +++ b/src/oci/cloud_migrations/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220919 diff --git a/src/oci/cluster_placement_groups/__init__.py b/src/oci/cluster_placement_groups/__init__.py index a9b8c28014..2b6f242892 100644 --- a/src/oci/cluster_placement_groups/__init__.py +++ b/src/oci/cluster_placement_groups/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/cluster_placement_groups_cp_client.py b/src/oci/cluster_placement_groups/cluster_placement_groups_cp_client.py index 2c04e35523..12da9b7a5d 100644 --- a/src/oci/cluster_placement_groups/cluster_placement_groups_cp_client.py +++ b/src/oci/cluster_placement_groups/cluster_placement_groups_cp_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/cluster_placement_groups_cp_client_composite_operations.py b/src/oci/cluster_placement_groups/cluster_placement_groups_cp_client_composite_operations.py index 8902635022..1c10504189 100644 --- a/src/oci/cluster_placement_groups/cluster_placement_groups_cp_client_composite_operations.py +++ b/src/oci/cluster_placement_groups/cluster_placement_groups_cp_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/__init__.py b/src/oci/cluster_placement_groups/models/__init__.py index eec207d86e..ae886b7c46 100644 --- a/src/oci/cluster_placement_groups/models/__init__.py +++ b/src/oci/cluster_placement_groups/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/capabilities_collection.py b/src/oci/cluster_placement_groups/models/capabilities_collection.py index 47747865b9..882c7aeff9 100644 --- a/src/oci/cluster_placement_groups/models/capabilities_collection.py +++ b/src/oci/cluster_placement_groups/models/capabilities_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/capability_details.py b/src/oci/cluster_placement_groups/models/capability_details.py index b64dfaaa7e..7630071771 100644 --- a/src/oci/cluster_placement_groups/models/capability_details.py +++ b/src/oci/cluster_placement_groups/models/capability_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/change_cluster_placement_group_compartment_details.py b/src/oci/cluster_placement_groups/models/change_cluster_placement_group_compartment_details.py index a705c23928..b96d2db129 100644 --- a/src/oci/cluster_placement_groups/models/change_cluster_placement_group_compartment_details.py +++ b/src/oci/cluster_placement_groups/models/change_cluster_placement_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/cluster_placement_group.py b/src/oci/cluster_placement_groups/models/cluster_placement_group.py index e5fbc1e6a3..e5caf88a91 100644 --- a/src/oci/cluster_placement_groups/models/cluster_placement_group.py +++ b/src/oci/cluster_placement_groups/models/cluster_placement_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/cluster_placement_group_collection.py b/src/oci/cluster_placement_groups/models/cluster_placement_group_collection.py index 6da39b67e1..585443e93f 100644 --- a/src/oci/cluster_placement_groups/models/cluster_placement_group_collection.py +++ b/src/oci/cluster_placement_groups/models/cluster_placement_group_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/cluster_placement_group_summary.py b/src/oci/cluster_placement_groups/models/cluster_placement_group_summary.py index 8d3d6e92c6..7bed0685ca 100644 --- a/src/oci/cluster_placement_groups/models/cluster_placement_group_summary.py +++ b/src/oci/cluster_placement_groups/models/cluster_placement_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/create_cluster_placement_group_details.py b/src/oci/cluster_placement_groups/models/create_cluster_placement_group_details.py index 6027c88f28..014c3b3f44 100644 --- a/src/oci/cluster_placement_groups/models/create_cluster_placement_group_details.py +++ b/src/oci/cluster_placement_groups/models/create_cluster_placement_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/placement_instruction_details.py b/src/oci/cluster_placement_groups/models/placement_instruction_details.py index 9c2b878c2e..595c45124b 100644 --- a/src/oci/cluster_placement_groups/models/placement_instruction_details.py +++ b/src/oci/cluster_placement_groups/models/placement_instruction_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/update_cluster_placement_group_details.py b/src/oci/cluster_placement_groups/models/update_cluster_placement_group_details.py index 15d8371cf8..b80a1cad9a 100644 --- a/src/oci/cluster_placement_groups/models/update_cluster_placement_group_details.py +++ b/src/oci/cluster_placement_groups/models/update_cluster_placement_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/work_request.py b/src/oci/cluster_placement_groups/models/work_request.py index 090dc49ba5..faf803b4ce 100644 --- a/src/oci/cluster_placement_groups/models/work_request.py +++ b/src/oci/cluster_placement_groups/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/work_request_error.py b/src/oci/cluster_placement_groups/models/work_request_error.py index c54827e7a7..f19e94f2fb 100644 --- a/src/oci/cluster_placement_groups/models/work_request_error.py +++ b/src/oci/cluster_placement_groups/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/work_request_error_collection.py b/src/oci/cluster_placement_groups/models/work_request_error_collection.py index 1ccf06960c..f51259f3c0 100644 --- a/src/oci/cluster_placement_groups/models/work_request_error_collection.py +++ b/src/oci/cluster_placement_groups/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/work_request_log_entry.py b/src/oci/cluster_placement_groups/models/work_request_log_entry.py index 0c2026b086..1f811a4287 100644 --- a/src/oci/cluster_placement_groups/models/work_request_log_entry.py +++ b/src/oci/cluster_placement_groups/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/work_request_log_entry_collection.py b/src/oci/cluster_placement_groups/models/work_request_log_entry_collection.py index 7c85518cfb..dba2ee7c32 100644 --- a/src/oci/cluster_placement_groups/models/work_request_log_entry_collection.py +++ b/src/oci/cluster_placement_groups/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/work_request_resource.py b/src/oci/cluster_placement_groups/models/work_request_resource.py index 1788ddaeef..3c7ef774f8 100644 --- a/src/oci/cluster_placement_groups/models/work_request_resource.py +++ b/src/oci/cluster_placement_groups/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/work_request_summary.py b/src/oci/cluster_placement_groups/models/work_request_summary.py index d1c046635f..8c15a68a0d 100644 --- a/src/oci/cluster_placement_groups/models/work_request_summary.py +++ b/src/oci/cluster_placement_groups/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/cluster_placement_groups/models/work_request_summary_collection.py b/src/oci/cluster_placement_groups/models/work_request_summary_collection.py index 7c7ed197d8..0b42c5dd1f 100644 --- a/src/oci/cluster_placement_groups/models/work_request_summary_collection.py +++ b/src/oci/cluster_placement_groups/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/compute_cloud_at_customer/__init__.py b/src/oci/compute_cloud_at_customer/__init__.py index 246902e1b1..614aab126f 100644 --- a/src/oci/compute_cloud_at_customer/__init__.py +++ b/src/oci/compute_cloud_at_customer/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py b/src/oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py index dd8ecb15a7..33819823b9 100644 --- a/src/oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py +++ b/src/oci/compute_cloud_at_customer/compute_cloud_at_customer_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/compute_cloud_at_customer_client_composite_operations.py b/src/oci/compute_cloud_at_customer/compute_cloud_at_customer_client_composite_operations.py index 2edbbe2914..623ee72091 100644 --- a/src/oci/compute_cloud_at_customer/compute_cloud_at_customer_client_composite_operations.py +++ b/src/oci/compute_cloud_at_customer/compute_cloud_at_customer_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/__init__.py b/src/oci/compute_cloud_at_customer/models/__init__.py index b22b0df145..4fb5f998c7 100644 --- a/src/oci/compute_cloud_at_customer/models/__init__.py +++ b/src/oci/compute_cloud_at_customer/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure.py b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure.py index be9c467d9e..9136d3d8ea 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_collection.py b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_collection.py index e9b5367bfe..87dbd92bce 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_collection.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_inventory.py b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_inventory.py index 0fb38c1b0e..9a8dde49af 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_inventory.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_inventory.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_management_node.py b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_management_node.py index 125bd623ea..6f03fb5272 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_management_node.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_management_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_network_configuration.py b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_network_configuration.py index 5ad30e2ab6..8b9e21babe 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_network_configuration.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_network_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.py b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.py index 2407237eed..9ee727724f 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_dynamic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_static_details.py b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_static_details.py index 35f59a1989..28f47bb1dc 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_static_details.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_routing_static_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_summary.py b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_summary.py index 95bb2e6f59..f2016fbd6a 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_summary.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_infrastructure_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_schedule_event.py b/src/oci/compute_cloud_at_customer/models/ccc_schedule_event.py index 3f28f8495e..33c74fcf6a 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_schedule_event.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_schedule_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_upgrade_information.py b/src/oci/compute_cloud_at_customer/models/ccc_upgrade_information.py index c1dac484f9..1fc7e98e8d 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_upgrade_information.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_upgrade_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule.py b/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule.py index e091537597..b4ad33258e 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule_collection.py b/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule_collection.py index c945e12a41..15aa14e90a 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule_collection.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule_summary.py b/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule_summary.py index 676bf01f61..cf8d3c5224 100644 --- a/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule_summary.py +++ b/src/oci/compute_cloud_at_customer/models/ccc_upgrade_schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/change_ccc_infrastructure_compartment_details.py b/src/oci/compute_cloud_at_customer/models/change_ccc_infrastructure_compartment_details.py index fff2e050db..5a937faf43 100644 --- a/src/oci/compute_cloud_at_customer/models/change_ccc_infrastructure_compartment_details.py +++ b/src/oci/compute_cloud_at_customer/models/change_ccc_infrastructure_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/change_ccc_upgrade_schedule_compartment_details.py b/src/oci/compute_cloud_at_customer/models/change_ccc_upgrade_schedule_compartment_details.py index fd59051149..9118c351a1 100644 --- a/src/oci/compute_cloud_at_customer/models/change_ccc_upgrade_schedule_compartment_details.py +++ b/src/oci/compute_cloud_at_customer/models/change_ccc_upgrade_schedule_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/create_ccc_infrastructure_details.py b/src/oci/compute_cloud_at_customer/models/create_ccc_infrastructure_details.py index 05c905c8b8..1a3978f39d 100644 --- a/src/oci/compute_cloud_at_customer/models/create_ccc_infrastructure_details.py +++ b/src/oci/compute_cloud_at_customer/models/create_ccc_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/create_ccc_schedule_event.py b/src/oci/compute_cloud_at_customer/models/create_ccc_schedule_event.py index be8e7d0c76..e9969d1b59 100644 --- a/src/oci/compute_cloud_at_customer/models/create_ccc_schedule_event.py +++ b/src/oci/compute_cloud_at_customer/models/create_ccc_schedule_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/create_ccc_upgrade_schedule_details.py b/src/oci/compute_cloud_at_customer/models/create_ccc_upgrade_schedule_details.py index 66a882ea16..3618bfb9d2 100644 --- a/src/oci/compute_cloud_at_customer/models/create_ccc_upgrade_schedule_details.py +++ b/src/oci/compute_cloud_at_customer/models/create_ccc_upgrade_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/peer_information.py b/src/oci/compute_cloud_at_customer/models/peer_information.py index 2feec85542..64b483eda1 100644 --- a/src/oci/compute_cloud_at_customer/models/peer_information.py +++ b/src/oci/compute_cloud_at_customer/models/peer_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/update_ccc_infrastructure_details.py b/src/oci/compute_cloud_at_customer/models/update_ccc_infrastructure_details.py index 4b30a05b50..14883a28b6 100644 --- a/src/oci/compute_cloud_at_customer/models/update_ccc_infrastructure_details.py +++ b/src/oci/compute_cloud_at_customer/models/update_ccc_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/update_ccc_schedule_event.py b/src/oci/compute_cloud_at_customer/models/update_ccc_schedule_event.py index de3a098e6d..188356a796 100644 --- a/src/oci/compute_cloud_at_customer/models/update_ccc_schedule_event.py +++ b/src/oci/compute_cloud_at_customer/models/update_ccc_schedule_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_cloud_at_customer/models/update_ccc_upgrade_schedule_details.py b/src/oci/compute_cloud_at_customer/models/update_ccc_upgrade_schedule_details.py index 50ac834e0c..20cb6e5a69 100644 --- a/src/oci/compute_cloud_at_customer/models/update_ccc_upgrade_schedule_details.py +++ b/src/oci/compute_cloud_at_customer/models/update_ccc_upgrade_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20221208 diff --git a/src/oci/compute_instance_agent/__init__.py b/src/oci/compute_instance_agent/__init__.py index 873dc38bb0..aeabe98cda 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 55bf6a5c43..fe04ad8fa2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 d2c9578fc2..170ed3741f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 diff --git a/src/oci/compute_instance_agent/models/__init__.py b/src/oci/compute_instance_agent/models/__init__.py index e80053b5e2..dde7321c97 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 2ab6ae263c..91bd188a9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 3cf92e31f3..9f936bc4a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 c3d6b3ca7a..675631ebe7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 d6daf62d8e..bd5b9b2829 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 e6f6b65033..6af0c959e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 ceb5147bb2..b14ae8c32d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 0a2a4960e1..943b07aaa4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 7f2e614563..b73ee69634 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 0aab38f6d2..111cbc7d70 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 be558f04b5..f91cc88b93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 7756c4486b..eed0285318 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 fb5c66b638..52af75335f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 ae9435df0b..0fd7c483ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 7f7c358850..698818f0d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 9cb2585f44..8be798aa45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 36a3ab99ac..af38b27677 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 b18b605292..9abc89eb17 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 6336eda919..4cbe40bfd5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 53e39520ac..459e43d427 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 af5db1216b..7af8920025 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 c7a544a581..0734bf9352 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 9e5f126548..7f0608b961 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 diff --git a/src/oci/compute_instance_agent/models/plugin.py b/src/oci/compute_instance_agent/models/plugin.py index 447b503767..fc26e55d32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 diff --git a/src/oci/compute_instance_agent/plugin_client.py b/src/oci/compute_instance_agent/plugin_client.py index 43fa85d3c5..2ce24daeb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 87139cfcf0..ad63f53990 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 diff --git a/src/oci/compute_instance_agent/pluginconfig_client.py b/src/oci/compute_instance_agent/pluginconfig_client.py index e87701d8ae..b6e83e1ad5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 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 6a5519a943..56033bfbef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180530 diff --git a/src/oci/config.py b/src/oci/config.py index bbeac34cb1..f7b30a2834 100644 --- a/src/oci/config.py +++ b/src/oci/config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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 d60838b5ce..0b4d16c46f 100644 --- a/src/oci/constants.py +++ b/src/oci/constants.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 392b5e0894..a6a412ddb2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/container_engine_client.py b/src/oci/container_engine/container_engine_client.py index 482148bb52..6862b5051e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 f206532a25..22d5e98231 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/__init__.py b/src/oci/container_engine/models/__init__.py index 6cc0fe9f9d..d6fe1e1d15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/add_on_options.py b/src/oci/container_engine/models/add_on_options.py index 875d7699e1..c9bfe4f221 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/addon.py b/src/oci/container_engine/models/addon.py index cbfac6e49e..f12bd2c1d0 100644 --- a/src/oci/container_engine/models/addon.py +++ b/src/oci/container_engine/models/addon.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/addon_configuration.py b/src/oci/container_engine/models/addon_configuration.py index cc03e7134b..a0d1c5728c 100644 --- a/src/oci/container_engine/models/addon_configuration.py +++ b/src/oci/container_engine/models/addon_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/addon_error.py b/src/oci/container_engine/models/addon_error.py index 90b9ddd242..27e28a5b36 100644 --- a/src/oci/container_engine/models/addon_error.py +++ b/src/oci/container_engine/models/addon_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/addon_option_summary.py b/src/oci/container_engine/models/addon_option_summary.py index ac9a6fe8e0..ca685d1422 100644 --- a/src/oci/container_engine/models/addon_option_summary.py +++ b/src/oci/container_engine/models/addon_option_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/addon_summary.py b/src/oci/container_engine/models/addon_summary.py index f2c1819bb2..5d80df20c3 100644 --- a/src/oci/container_engine/models/addon_summary.py +++ b/src/oci/container_engine/models/addon_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/addon_version_configuration.py b/src/oci/container_engine/models/addon_version_configuration.py index 1b7e26a5dd..74b92766c1 100644 --- a/src/oci/container_engine/models/addon_version_configuration.py +++ b/src/oci/container_engine/models/addon_version_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/addon_versions.py b/src/oci/container_engine/models/addon_versions.py index e346c855a5..5e5dcfcba5 100644 --- a/src/oci/container_engine/models/addon_versions.py +++ b/src/oci/container_engine/models/addon_versions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/admission_controller_options.py b/src/oci/container_engine/models/admission_controller_options.py index f62c2781fa..38f7feb503 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/cluster.py b/src/oci/container_engine/models/cluster.py index f1d0121976..2bedda498e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/cluster_create_options.py b/src/oci/container_engine/models/cluster_create_options.py index 50eccb26fa..298f3ccf86 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/cluster_endpoint_config.py b/src/oci/container_engine/models/cluster_endpoint_config.py index 6a6898bfbb..49e61be87d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/cluster_endpoints.py b/src/oci/container_engine/models/cluster_endpoints.py index 938d22f9df..467010a08c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/cluster_metadata.py b/src/oci/container_engine/models/cluster_metadata.py index b6a08c7699..4ee1cbb1ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 79af37d3ee..186da05343 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 a0a75949f4..2c87359835 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/cluster_options.py b/src/oci/container_engine/models/cluster_options.py index e41dafc77b..3a3a9a3665 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/cluster_pod_network_option_details.py b/src/oci/container_engine/models/cluster_pod_network_option_details.py index a8862c15c9..d23ed030e5 100644 --- a/src/oci/container_engine/models/cluster_pod_network_option_details.py +++ b/src/oci/container_engine/models/cluster_pod_network_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/cluster_summary.py b/src/oci/container_engine/models/cluster_summary.py index e5b392c018..b5dba59d27 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/create_cluster_details.py b/src/oci/container_engine/models/create_cluster_details.py index 69b970d0ed..e8e9015ed6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 12cdd43ece..85506b56e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 51e85dedb4..e7b6ec9ae2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 3cd8a08f6b..6a930f8aee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 c736c58d68..8303a502ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 5919734e1f..b01eb6a253 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 6e3edb5b2e..f24a3a33e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/create_virtual_node_pool_details.py b/src/oci/container_engine/models/create_virtual_node_pool_details.py index 5f416d8385..9f81b82c61 100644 --- a/src/oci/container_engine/models/create_virtual_node_pool_details.py +++ b/src/oci/container_engine/models/create_virtual_node_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/create_workload_mapping_details.py b/src/oci/container_engine/models/create_workload_mapping_details.py index 6b280a43cd..928663815d 100644 --- a/src/oci/container_engine/models/create_workload_mapping_details.py +++ b/src/oci/container_engine/models/create_workload_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/credential_rotation_status.py b/src/oci/container_engine/models/credential_rotation_status.py index d472b3011c..3de7a022ac 100644 --- a/src/oci/container_engine/models/credential_rotation_status.py +++ b/src/oci/container_engine/models/credential_rotation_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/flannel_overlay_cluster_pod_network_option_details.py b/src/oci/container_engine/models/flannel_overlay_cluster_pod_network_option_details.py index e467bc8bd3..1bc5e4acac 100644 --- a/src/oci/container_engine/models/flannel_overlay_cluster_pod_network_option_details.py +++ b/src/oci/container_engine/models/flannel_overlay_cluster_pod_network_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/flannel_overlay_node_pool_pod_network_option_details.py b/src/oci/container_engine/models/flannel_overlay_node_pool_pod_network_option_details.py index a5192912db..f1bd432906 100644 --- a/src/oci/container_engine/models/flannel_overlay_node_pool_pod_network_option_details.py +++ b/src/oci/container_engine/models/flannel_overlay_node_pool_pod_network_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/image_policy_config.py b/src/oci/container_engine/models/image_policy_config.py index 0b0648245c..5322798785 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/initial_virtual_node_label.py b/src/oci/container_engine/models/initial_virtual_node_label.py index e13af577ce..0df324ce09 100644 --- a/src/oci/container_engine/models/initial_virtual_node_label.py +++ b/src/oci/container_engine/models/initial_virtual_node_label.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/install_addon_details.py b/src/oci/container_engine/models/install_addon_details.py index 12812fa15d..8eb26fc27e 100644 --- a/src/oci/container_engine/models/install_addon_details.py +++ b/src/oci/container_engine/models/install_addon_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/key_details.py b/src/oci/container_engine/models/key_details.py index 6c22d0f338..aa968b6c39 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/key_value.py b/src/oci/container_engine/models/key_value.py index 7dee008da0..f8393e53e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/kubernetes_network_config.py b/src/oci/container_engine/models/kubernetes_network_config.py index 383a9736f9..7f4cfa4a19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/kubernetes_versions_filters.py b/src/oci/container_engine/models/kubernetes_versions_filters.py index 1ee3ff5906..337c7d21c9 100644 --- a/src/oci/container_engine/models/kubernetes_versions_filters.py +++ b/src/oci/container_engine/models/kubernetes_versions_filters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node.py b/src/oci/container_engine/models/node.py index 6cc92b7151..faa585879f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_error.py b/src/oci/container_engine/models/node_error.py index 56d8b2a412..c4560a4f9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_eviction_node_pool_settings.py b/src/oci/container_engine/models/node_eviction_node_pool_settings.py index b4a1a50962..e1d885a24e 100644 --- a/src/oci/container_engine/models/node_eviction_node_pool_settings.py +++ b/src/oci/container_engine/models/node_eviction_node_pool_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_pool.py b/src/oci/container_engine/models/node_pool.py index 375d466ae6..dca9e92795 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_pool_cycling_details.py b/src/oci/container_engine/models/node_pool_cycling_details.py index 3ec5a47d8f..09f203562b 100644 --- a/src/oci/container_engine/models/node_pool_cycling_details.py +++ b/src/oci/container_engine/models/node_pool_cycling_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 ea6b951efe..ba9c49491c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_pool_options.py b/src/oci/container_engine/models/node_pool_options.py index 9cac450987..59579de91d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 3536c43d73..d30a5c2413 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_pool_pod_network_option_details.py b/src/oci/container_engine/models/node_pool_pod_network_option_details.py index 46bc3fabec..8d60170c7c 100644 --- a/src/oci/container_engine/models/node_pool_pod_network_option_details.py +++ b/src/oci/container_engine/models/node_pool_pod_network_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_pool_summary.py b/src/oci/container_engine/models/node_pool_summary.py index 966c1e907e..d773d1cedd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_shape_config.py b/src/oci/container_engine/models/node_shape_config.py index a9989ffcaf..bda7206e83 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_source_details.py b/src/oci/container_engine/models/node_source_details.py index f3fb84ebb7..780891d64a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/node_source_option.py b/src/oci/container_engine/models/node_source_option.py index a2316e3671..f7b768b81e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 1bd9e03880..0166f2032f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 40d480723e..78c1cf61cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/oci_vcn_ip_native_cluster_pod_network_option_details.py b/src/oci/container_engine/models/oci_vcn_ip_native_cluster_pod_network_option_details.py index ec0e7b3aca..23a05ce706 100644 --- a/src/oci/container_engine/models/oci_vcn_ip_native_cluster_pod_network_option_details.py +++ b/src/oci/container_engine/models/oci_vcn_ip_native_cluster_pod_network_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/oci_vcn_ip_native_node_pool_pod_network_option_details.py b/src/oci/container_engine/models/oci_vcn_ip_native_node_pool_pod_network_option_details.py index 75b39d843a..5111b98888 100644 --- a/src/oci/container_engine/models/oci_vcn_ip_native_node_pool_pod_network_option_details.py +++ b/src/oci/container_engine/models/oci_vcn_ip_native_node_pool_pod_network_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/open_id_connect_discovery.py b/src/oci/container_engine/models/open_id_connect_discovery.py index 04cdb075e4..5bffcee866 100644 --- a/src/oci/container_engine/models/open_id_connect_discovery.py +++ b/src/oci/container_engine/models/open_id_connect_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/open_id_connect_token_authentication_config.py b/src/oci/container_engine/models/open_id_connect_token_authentication_config.py index 511ac35279..416d016255 100644 --- a/src/oci/container_engine/models/open_id_connect_token_authentication_config.py +++ b/src/oci/container_engine/models/open_id_connect_token_authentication_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/persistent_volume_config_details.py b/src/oci/container_engine/models/persistent_volume_config_details.py index fab94fb6f6..8aa077ff10 100644 --- a/src/oci/container_engine/models/persistent_volume_config_details.py +++ b/src/oci/container_engine/models/persistent_volume_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/placement_configuration.py b/src/oci/container_engine/models/placement_configuration.py index 75d62dc056..3ed1d7529b 100644 --- a/src/oci/container_engine/models/placement_configuration.py +++ b/src/oci/container_engine/models/placement_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/pod_configuration.py b/src/oci/container_engine/models/pod_configuration.py index e0b10b266a..56b0c70145 100644 --- a/src/oci/container_engine/models/pod_configuration.py +++ b/src/oci/container_engine/models/pod_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/pod_shape.py b/src/oci/container_engine/models/pod_shape.py index 477ab00de9..6a66ba0a45 100644 --- a/src/oci/container_engine/models/pod_shape.py +++ b/src/oci/container_engine/models/pod_shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/pod_shape_summary.py b/src/oci/container_engine/models/pod_shape_summary.py index 71c864628f..a0b931d462 100644 --- a/src/oci/container_engine/models/pod_shape_summary.py +++ b/src/oci/container_engine/models/pod_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/preemptible_node_config_details.py b/src/oci/container_engine/models/preemptible_node_config_details.py index 6262ea5dec..e6b9baac55 100644 --- a/src/oci/container_engine/models/preemptible_node_config_details.py +++ b/src/oci/container_engine/models/preemptible_node_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/preemption_action.py b/src/oci/container_engine/models/preemption_action.py index 2712dcb5ae..2fa2254aaa 100644 --- a/src/oci/container_engine/models/preemption_action.py +++ b/src/oci/container_engine/models/preemption_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/service_lb_config_details.py b/src/oci/container_engine/models/service_lb_config_details.py index 71d55c9de0..c82b306c11 100644 --- a/src/oci/container_engine/models/service_lb_config_details.py +++ b/src/oci/container_engine/models/service_lb_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/shape_memory_options.py b/src/oci/container_engine/models/shape_memory_options.py index d039f9f060..acc115eda0 100644 --- a/src/oci/container_engine/models/shape_memory_options.py +++ b/src/oci/container_engine/models/shape_memory_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/shape_network_bandwidth_options.py b/src/oci/container_engine/models/shape_network_bandwidth_options.py index b8fc3d71aa..f91864fec1 100644 --- a/src/oci/container_engine/models/shape_network_bandwidth_options.py +++ b/src/oci/container_engine/models/shape_network_bandwidth_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/shape_ocpu_options.py b/src/oci/container_engine/models/shape_ocpu_options.py index c7705a7952..f7fa557f43 100644 --- a/src/oci/container_engine/models/shape_ocpu_options.py +++ b/src/oci/container_engine/models/shape_ocpu_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/start_credential_rotation_details.py b/src/oci/container_engine/models/start_credential_rotation_details.py index d53fec2c24..c36830511e 100644 --- a/src/oci/container_engine/models/start_credential_rotation_details.py +++ b/src/oci/container_engine/models/start_credential_rotation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/taint.py b/src/oci/container_engine/models/taint.py index a55c61c763..98038488f8 100644 --- a/src/oci/container_engine/models/taint.py +++ b/src/oci/container_engine/models/taint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/terminate_preemption_action.py b/src/oci/container_engine/models/terminate_preemption_action.py index b6345a4717..b1f0d062dd 100644 --- a/src/oci/container_engine/models/terminate_preemption_action.py +++ b/src/oci/container_engine/models/terminate_preemption_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/update_addon_details.py b/src/oci/container_engine/models/update_addon_details.py index 57ee6bdadd..7fc527f382 100644 --- a/src/oci/container_engine/models/update_addon_details.py +++ b/src/oci/container_engine/models/update_addon_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/update_cluster_details.py b/src/oci/container_engine/models/update_cluster_details.py index a887894216..2aa341b1bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 21ea403301..5aff056691 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 0a1e11f88b..9f20e9493c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 15d1fc2c56..0e2cba65cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 e401a5792c..7436e645dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 9afddb680f..3dfda40873 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 763cc60c05..6b510ce363 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/update_virtual_node_pool_details.py b/src/oci/container_engine/models/update_virtual_node_pool_details.py index 38187697fe..72501723df 100644 --- a/src/oci/container_engine/models/update_virtual_node_pool_details.py +++ b/src/oci/container_engine/models/update_virtual_node_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/update_workload_mapping_details.py b/src/oci/container_engine/models/update_workload_mapping_details.py index 88cef3c0f9..16bb2188be 100644 --- a/src/oci/container_engine/models/update_workload_mapping_details.py +++ b/src/oci/container_engine/models/update_workload_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/virtual_node.py b/src/oci/container_engine/models/virtual_node.py index 958ca010b8..19be420b09 100644 --- a/src/oci/container_engine/models/virtual_node.py +++ b/src/oci/container_engine/models/virtual_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/virtual_node_pool.py b/src/oci/container_engine/models/virtual_node_pool.py index 4ad4add206..be4dc2236e 100644 --- a/src/oci/container_engine/models/virtual_node_pool.py +++ b/src/oci/container_engine/models/virtual_node_pool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/virtual_node_pool_summary.py b/src/oci/container_engine/models/virtual_node_pool_summary.py index 7186fc06b8..8e824e2141 100644 --- a/src/oci/container_engine/models/virtual_node_pool_summary.py +++ b/src/oci/container_engine/models/virtual_node_pool_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/virtual_node_summary.py b/src/oci/container_engine/models/virtual_node_summary.py index 8325c3112d..5f03d62aed 100644 --- a/src/oci/container_engine/models/virtual_node_summary.py +++ b/src/oci/container_engine/models/virtual_node_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/virtual_node_tags.py b/src/oci/container_engine/models/virtual_node_tags.py index c6766045c0..0134350d81 100644 --- a/src/oci/container_engine/models/virtual_node_tags.py +++ b/src/oci/container_engine/models/virtual_node_tags.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/work_request.py b/src/oci/container_engine/models/work_request.py index 582b26d6c5..d9497b901e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/work_request_error.py b/src/oci/container_engine/models/work_request_error.py index 8595a68764..5e91b2a1c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 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 c59c35435d..744b36ca08 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/work_request_resource.py b/src/oci/container_engine/models/work_request_resource.py index 2792ca4af8..3a106c497b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/work_request_summary.py b/src/oci/container_engine/models/work_request_summary.py index 58a81b03e1..a348670cf7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/workload_mapping.py b/src/oci/container_engine/models/workload_mapping.py index 0e36ce166d..b1c3dd3349 100644 --- a/src/oci/container_engine/models/workload_mapping.py +++ b/src/oci/container_engine/models/workload_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_engine/models/workload_mapping_summary.py b/src/oci/container_engine/models/workload_mapping_summary.py index 4b91ae7469..dbe2e623f4 100644 --- a/src/oci/container_engine/models/workload_mapping_summary.py +++ b/src/oci/container_engine/models/workload_mapping_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180222 diff --git a/src/oci/container_instances/__init__.py b/src/oci/container_instances/__init__.py index 895ff44d73..e54fc11f49 100644 --- a/src/oci/container_instances/__init__.py +++ b/src/oci/container_instances/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/container_instance_client.py b/src/oci/container_instances/container_instance_client.py index 4da8f6c367..f1f8fe7580 100644 --- a/src/oci/container_instances/container_instance_client.py +++ b/src/oci/container_instances/container_instance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/container_instance_client_composite_operations.py b/src/oci/container_instances/container_instance_client_composite_operations.py index 2f5c0c86b6..c2882d75e3 100644 --- a/src/oci/container_instances/container_instance_client_composite_operations.py +++ b/src/oci/container_instances/container_instance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/__init__.py b/src/oci/container_instances/models/__init__.py index 843b290bb8..97fc7d08f8 100644 --- a/src/oci/container_instances/models/__init__.py +++ b/src/oci/container_instances/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/basic_image_pull_secret.py b/src/oci/container_instances/models/basic_image_pull_secret.py index 03d226104c..d4afc756b4 100644 --- a/src/oci/container_instances/models/basic_image_pull_secret.py +++ b/src/oci/container_instances/models/basic_image_pull_secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/change_container_instance_compartment_details.py b/src/oci/container_instances/models/change_container_instance_compartment_details.py index fd74119ed8..b5907ff50d 100644 --- a/src/oci/container_instances/models/change_container_instance_compartment_details.py +++ b/src/oci/container_instances/models/change_container_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container.py b/src/oci/container_instances/models/container.py index 5425bc9024..a9ad39d7b6 100644 --- a/src/oci/container_instances/models/container.py +++ b/src/oci/container_instances/models/container.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_capabilities.py b/src/oci/container_instances/models/container_capabilities.py index 476fea7b3b..1783160818 100644 --- a/src/oci/container_instances/models/container_capabilities.py +++ b/src/oci/container_instances/models/container_capabilities.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_collection.py b/src/oci/container_instances/models/container_collection.py index 52db2bf39c..aca0bf4ad2 100644 --- a/src/oci/container_instances/models/container_collection.py +++ b/src/oci/container_instances/models/container_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_command_health_check.py b/src/oci/container_instances/models/container_command_health_check.py index 3ced78f8c9..b5bda4b20e 100644 --- a/src/oci/container_instances/models/container_command_health_check.py +++ b/src/oci/container_instances/models/container_command_health_check.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_config_file.py b/src/oci/container_instances/models/container_config_file.py index 03e90dbe6d..dd20160926 100644 --- a/src/oci/container_instances/models/container_config_file.py +++ b/src/oci/container_instances/models/container_config_file.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_config_file_volume.py b/src/oci/container_instances/models/container_config_file_volume.py index 9a30ca9630..4c89c6a24a 100644 --- a/src/oci/container_instances/models/container_config_file_volume.py +++ b/src/oci/container_instances/models/container_config_file_volume.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_dns_config.py b/src/oci/container_instances/models/container_dns_config.py index 13f42ae0c5..a1566856f2 100644 --- a/src/oci/container_instances/models/container_dns_config.py +++ b/src/oci/container_instances/models/container_dns_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_empty_dir_volume.py b/src/oci/container_instances/models/container_empty_dir_volume.py index edad9fe9ed..1018cbd48b 100644 --- a/src/oci/container_instances/models/container_empty_dir_volume.py +++ b/src/oci/container_instances/models/container_empty_dir_volume.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_health_check.py b/src/oci/container_instances/models/container_health_check.py index ef30e6385a..5a5a570c0e 100644 --- a/src/oci/container_instances/models/container_health_check.py +++ b/src/oci/container_instances/models/container_health_check.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_http_health_check.py b/src/oci/container_instances/models/container_http_health_check.py index ba54f17bd4..5f857aef34 100644 --- a/src/oci/container_instances/models/container_http_health_check.py +++ b/src/oci/container_instances/models/container_http_health_check.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_instance.py b/src/oci/container_instances/models/container_instance.py index b31ffcffe1..8720fb98b9 100644 --- a/src/oci/container_instances/models/container_instance.py +++ b/src/oci/container_instances/models/container_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_instance_collection.py b/src/oci/container_instances/models/container_instance_collection.py index 286ad8edf5..b9057882c2 100644 --- a/src/oci/container_instances/models/container_instance_collection.py +++ b/src/oci/container_instances/models/container_instance_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_instance_container.py b/src/oci/container_instances/models/container_instance_container.py index b16719419b..b39da19b1e 100644 --- a/src/oci/container_instances/models/container_instance_container.py +++ b/src/oci/container_instances/models/container_instance_container.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_instance_shape_collection.py b/src/oci/container_instances/models/container_instance_shape_collection.py index ec2e4bf07d..0b9d4c2c97 100644 --- a/src/oci/container_instances/models/container_instance_shape_collection.py +++ b/src/oci/container_instances/models/container_instance_shape_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_instance_shape_config.py b/src/oci/container_instances/models/container_instance_shape_config.py index 26fa571aa6..01791b6ea2 100644 --- a/src/oci/container_instances/models/container_instance_shape_config.py +++ b/src/oci/container_instances/models/container_instance_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_instance_shape_summary.py b/src/oci/container_instances/models/container_instance_shape_summary.py index 1e87a0aaad..a6f4437dc1 100644 --- a/src/oci/container_instances/models/container_instance_shape_summary.py +++ b/src/oci/container_instances/models/container_instance_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_instance_summary.py b/src/oci/container_instances/models/container_instance_summary.py index 57b88fed10..95c4c03966 100644 --- a/src/oci/container_instances/models/container_instance_summary.py +++ b/src/oci/container_instances/models/container_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_resource_config.py b/src/oci/container_instances/models/container_resource_config.py index 4c9e0d4f59..9a8210788f 100644 --- a/src/oci/container_instances/models/container_resource_config.py +++ b/src/oci/container_instances/models/container_resource_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_summary.py b/src/oci/container_instances/models/container_summary.py index a32500331d..41f9ed315c 100644 --- a/src/oci/container_instances/models/container_summary.py +++ b/src/oci/container_instances/models/container_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_tcp_health_check.py b/src/oci/container_instances/models/container_tcp_health_check.py index 55246a5961..592d99c22e 100644 --- a/src/oci/container_instances/models/container_tcp_health_check.py +++ b/src/oci/container_instances/models/container_tcp_health_check.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_vnic.py b/src/oci/container_instances/models/container_vnic.py index 5df9ad5c29..5d384cbce5 100644 --- a/src/oci/container_instances/models/container_vnic.py +++ b/src/oci/container_instances/models/container_vnic.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/container_volume.py b/src/oci/container_instances/models/container_volume.py index 9615c235cf..005c82f085 100644 --- a/src/oci/container_instances/models/container_volume.py +++ b/src/oci/container_instances/models/container_volume.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_basic_image_pull_secret_details.py b/src/oci/container_instances/models/create_basic_image_pull_secret_details.py index 32c04e294c..ca75962d78 100644 --- a/src/oci/container_instances/models/create_basic_image_pull_secret_details.py +++ b/src/oci/container_instances/models/create_basic_image_pull_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_command_health_check_details.py b/src/oci/container_instances/models/create_container_command_health_check_details.py index 427fb90c10..9f855672ba 100644 --- a/src/oci/container_instances/models/create_container_command_health_check_details.py +++ b/src/oci/container_instances/models/create_container_command_health_check_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_config_file_volume_details.py b/src/oci/container_instances/models/create_container_config_file_volume_details.py index c49db768a9..27a93957d7 100644 --- a/src/oci/container_instances/models/create_container_config_file_volume_details.py +++ b/src/oci/container_instances/models/create_container_config_file_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_details.py b/src/oci/container_instances/models/create_container_details.py index 703b8299cc..532ff3cfe5 100644 --- a/src/oci/container_instances/models/create_container_details.py +++ b/src/oci/container_instances/models/create_container_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_dns_config_details.py b/src/oci/container_instances/models/create_container_dns_config_details.py index fbc71ed09e..ed3aebcf85 100644 --- a/src/oci/container_instances/models/create_container_dns_config_details.py +++ b/src/oci/container_instances/models/create_container_dns_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_empty_dir_volume_details.py b/src/oci/container_instances/models/create_container_empty_dir_volume_details.py index d25d6d3cfb..cd76cfe68c 100644 --- a/src/oci/container_instances/models/create_container_empty_dir_volume_details.py +++ b/src/oci/container_instances/models/create_container_empty_dir_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_health_check_details.py b/src/oci/container_instances/models/create_container_health_check_details.py index eaebd00003..bb7b6427b3 100644 --- a/src/oci/container_instances/models/create_container_health_check_details.py +++ b/src/oci/container_instances/models/create_container_health_check_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_http_health_check_details.py b/src/oci/container_instances/models/create_container_http_health_check_details.py index 3fc4df25ff..611b8319da 100644 --- a/src/oci/container_instances/models/create_container_http_health_check_details.py +++ b/src/oci/container_instances/models/create_container_http_health_check_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_instance_details.py b/src/oci/container_instances/models/create_container_instance_details.py index 857a311a7d..908d3281a0 100644 --- a/src/oci/container_instances/models/create_container_instance_details.py +++ b/src/oci/container_instances/models/create_container_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_instance_shape_config_details.py b/src/oci/container_instances/models/create_container_instance_shape_config_details.py index c192c768c3..abc7af9611 100644 --- a/src/oci/container_instances/models/create_container_instance_shape_config_details.py +++ b/src/oci/container_instances/models/create_container_instance_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_resource_config_details.py b/src/oci/container_instances/models/create_container_resource_config_details.py index 358c9c6f11..b679cffa27 100644 --- a/src/oci/container_instances/models/create_container_resource_config_details.py +++ b/src/oci/container_instances/models/create_container_resource_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_tcp_health_check_details.py b/src/oci/container_instances/models/create_container_tcp_health_check_details.py index 04f011ee25..183d8bcb49 100644 --- a/src/oci/container_instances/models/create_container_tcp_health_check_details.py +++ b/src/oci/container_instances/models/create_container_tcp_health_check_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_vnic_details.py b/src/oci/container_instances/models/create_container_vnic_details.py index 038819ed1d..a76b613da2 100644 --- a/src/oci/container_instances/models/create_container_vnic_details.py +++ b/src/oci/container_instances/models/create_container_vnic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_container_volume_details.py b/src/oci/container_instances/models/create_container_volume_details.py index 92dab443bd..cdd8d50d85 100644 --- a/src/oci/container_instances/models/create_container_volume_details.py +++ b/src/oci/container_instances/models/create_container_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_image_pull_secret_details.py b/src/oci/container_instances/models/create_image_pull_secret_details.py index 604ba48ae3..38af3e2d60 100644 --- a/src/oci/container_instances/models/create_image_pull_secret_details.py +++ b/src/oci/container_instances/models/create_image_pull_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_linux_security_context_details.py b/src/oci/container_instances/models/create_linux_security_context_details.py index 4b63a940f9..d936ec83a1 100644 --- a/src/oci/container_instances/models/create_linux_security_context_details.py +++ b/src/oci/container_instances/models/create_linux_security_context_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_security_context_details.py b/src/oci/container_instances/models/create_security_context_details.py index 141ffca799..c2f39dc94d 100644 --- a/src/oci/container_instances/models/create_security_context_details.py +++ b/src/oci/container_instances/models/create_security_context_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_vault_image_pull_secret_details.py b/src/oci/container_instances/models/create_vault_image_pull_secret_details.py index b431b7d63e..0c37cf023c 100644 --- a/src/oci/container_instances/models/create_vault_image_pull_secret_details.py +++ b/src/oci/container_instances/models/create_vault_image_pull_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/create_volume_mount_details.py b/src/oci/container_instances/models/create_volume_mount_details.py index dae2bb7aa6..b442fa5c1e 100644 --- a/src/oci/container_instances/models/create_volume_mount_details.py +++ b/src/oci/container_instances/models/create_volume_mount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/health_check_http_header.py b/src/oci/container_instances/models/health_check_http_header.py index cbf0adc4b9..832321cafa 100644 --- a/src/oci/container_instances/models/health_check_http_header.py +++ b/src/oci/container_instances/models/health_check_http_header.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/image_pull_secret.py b/src/oci/container_instances/models/image_pull_secret.py index a02351ff44..22d46b8600 100644 --- a/src/oci/container_instances/models/image_pull_secret.py +++ b/src/oci/container_instances/models/image_pull_secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/linux_security_context.py b/src/oci/container_instances/models/linux_security_context.py index 177d5bb58b..2d1014a48b 100644 --- a/src/oci/container_instances/models/linux_security_context.py +++ b/src/oci/container_instances/models/linux_security_context.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/security_context.py b/src/oci/container_instances/models/security_context.py index 7e031d5f9a..0cbe549e44 100644 --- a/src/oci/container_instances/models/security_context.py +++ b/src/oci/container_instances/models/security_context.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/shape_memory_options.py b/src/oci/container_instances/models/shape_memory_options.py index f76fead7c9..75f8c60c2b 100644 --- a/src/oci/container_instances/models/shape_memory_options.py +++ b/src/oci/container_instances/models/shape_memory_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/shape_networking_bandwidth_options.py b/src/oci/container_instances/models/shape_networking_bandwidth_options.py index b2132e3400..6f23a81fbf 100644 --- a/src/oci/container_instances/models/shape_networking_bandwidth_options.py +++ b/src/oci/container_instances/models/shape_networking_bandwidth_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/shape_ocpu_options.py b/src/oci/container_instances/models/shape_ocpu_options.py index 365d765a43..a45a483274 100644 --- a/src/oci/container_instances/models/shape_ocpu_options.py +++ b/src/oci/container_instances/models/shape_ocpu_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/update_container_details.py b/src/oci/container_instances/models/update_container_details.py index 85c1e5233e..40491dbd5c 100644 --- a/src/oci/container_instances/models/update_container_details.py +++ b/src/oci/container_instances/models/update_container_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/update_container_instance_details.py b/src/oci/container_instances/models/update_container_instance_details.py index e00efa3d7f..9f01ecf7a1 100644 --- a/src/oci/container_instances/models/update_container_instance_details.py +++ b/src/oci/container_instances/models/update_container_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/vault_image_pull_secret.py b/src/oci/container_instances/models/vault_image_pull_secret.py index 45f97210d0..8e21842065 100644 --- a/src/oci/container_instances/models/vault_image_pull_secret.py +++ b/src/oci/container_instances/models/vault_image_pull_secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/volume_mount.py b/src/oci/container_instances/models/volume_mount.py index 7ce4e1a6bd..f9a8f29a9b 100644 --- a/src/oci/container_instances/models/volume_mount.py +++ b/src/oci/container_instances/models/volume_mount.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/work_request.py b/src/oci/container_instances/models/work_request.py index f14e461760..69f65c4568 100644 --- a/src/oci/container_instances/models/work_request.py +++ b/src/oci/container_instances/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/work_request_error.py b/src/oci/container_instances/models/work_request_error.py index b03d58f337..daebb82a1e 100644 --- a/src/oci/container_instances/models/work_request_error.py +++ b/src/oci/container_instances/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/work_request_error_collection.py b/src/oci/container_instances/models/work_request_error_collection.py index 1cc3e5bfd7..cebe0a76a9 100644 --- a/src/oci/container_instances/models/work_request_error_collection.py +++ b/src/oci/container_instances/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/work_request_log_entry.py b/src/oci/container_instances/models/work_request_log_entry.py index bffe2bb49c..5ebf813102 100644 --- a/src/oci/container_instances/models/work_request_log_entry.py +++ b/src/oci/container_instances/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/work_request_log_entry_collection.py b/src/oci/container_instances/models/work_request_log_entry_collection.py index 9d870f5ea5..f185cb343d 100644 --- a/src/oci/container_instances/models/work_request_log_entry_collection.py +++ b/src/oci/container_instances/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/work_request_resource.py b/src/oci/container_instances/models/work_request_resource.py index 2432df3af4..65beaaacce 100644 --- a/src/oci/container_instances/models/work_request_resource.py +++ b/src/oci/container_instances/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/work_request_summary.py b/src/oci/container_instances/models/work_request_summary.py index 65351d2d8c..9a1d584fcc 100644 --- a/src/oci/container_instances/models/work_request_summary.py +++ b/src/oci/container_instances/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/container_instances/models/work_request_summary_collection.py b/src/oci/container_instances/models/work_request_summary_collection.py index c477651713..62e310a753 100644 --- a/src/oci/container_instances/models/work_request_summary_collection.py +++ b/src/oci/container_instances/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210415 diff --git a/src/oci/core/__init__.py b/src/oci/core/__init__.py index 71517e00ca..d1a854d363 100644 --- a/src/oci/core/__init__.py +++ b/src/oci/core/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/blockstorage_client.py b/src/oci/core/blockstorage_client.py index 6669d028f9..3dd89960af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/blockstorage_client_composite_operations.py b/src/oci/core/blockstorage_client_composite_operations.py index efa6e33a24..7257cadf0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/compute_client.py b/src/oci/core/compute_client.py index 7a6b34c678..b5d19d60ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/compute_client_composite_operations.py b/src/oci/core/compute_client_composite_operations.py index a41a0ab019..bdd72b9088 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/compute_management_client.py b/src/oci/core/compute_management_client.py index ad29568164..c1c18cc762 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/compute_management_client_composite_operations.py b/src/oci/core/compute_management_client_composite_operations.py index e8b137a13d..d60b8dda82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/__init__.py b/src/oci/core/models/__init__.py index e839062ee0..5b3122c8ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1f285fcb35..8ae32b2cde 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 32924012af..2da1b6a5ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7edc68df96..275b46960c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 4a8fbf879b..7d8e7696d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 888f0ad464..538e1e9c95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 6366c0503d..8b93ea8f63 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f035ed9a0d..4acb7a2f0b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/add_security_rule_details.py b/src/oci/core/models/add_security_rule_details.py index ffacb38e05..153319e87a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/add_subnet_ipv6_cidr_details.py b/src/oci/core/models/add_subnet_ipv6_cidr_details.py index ff5405c909..0377b1236a 100644 --- a/src/oci/core/models/add_subnet_ipv6_cidr_details.py +++ b/src/oci/core/models/add_subnet_ipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/add_vcn_cidr_details.py b/src/oci/core/models/add_vcn_cidr_details.py index 0509fd1154..d16023578e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/add_vcn_ipv6_cidr_details.py b/src/oci/core/models/add_vcn_ipv6_cidr_details.py index 8f98d3a465..956d5d8066 100644 --- a/src/oci/core/models/add_vcn_ipv6_cidr_details.py +++ b/src/oci/core/models/add_vcn_ipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2713c1b4c2..4d836afec8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 494093d875..ef90557512 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/allowed_phase_one_parameters.py b/src/oci/core/models/allowed_phase_one_parameters.py index 128ff06782..7721680aae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/allowed_phase_two_parameters.py b/src/oci/core/models/allowed_phase_two_parameters.py index f1fcf59909..de17e7eba1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/amd_milan_bm_gpu_launch_instance_platform_config.py b/src/oci/core/models/amd_milan_bm_gpu_launch_instance_platform_config.py index 9c0bac61d8..b7ab7c7165 100644 --- a/src/oci/core/models/amd_milan_bm_gpu_launch_instance_platform_config.py +++ b/src/oci/core/models/amd_milan_bm_gpu_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/amd_milan_bm_gpu_platform_config.py b/src/oci/core/models/amd_milan_bm_gpu_platform_config.py index e8d5b98057..74a488fece 100644 --- a/src/oci/core/models/amd_milan_bm_gpu_platform_config.py +++ b/src/oci/core/models/amd_milan_bm_gpu_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 98c3378867..98813c8421 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 79a46e4caf..54ed55ef2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/amd_rome_bm_gpu_launch_instance_platform_config.py b/src/oci/core/models/amd_rome_bm_gpu_launch_instance_platform_config.py index ac2bdbb22a..be48989c6a 100644 --- a/src/oci/core/models/amd_rome_bm_gpu_launch_instance_platform_config.py +++ b/src/oci/core/models/amd_rome_bm_gpu_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/amd_rome_bm_gpu_platform_config.py b/src/oci/core/models/amd_rome_bm_gpu_platform_config.py index 5da5c301b2..d475332d8b 100644 --- a/src/oci/core/models/amd_rome_bm_gpu_platform_config.py +++ b/src/oci/core/models/amd_rome_bm_gpu_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 af259e7458..0c21672ff5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f45d511328..3d0662a16d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d1ee7a0bc3..155616b6b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/amd_vm_platform_config.py b/src/oci/core/models/amd_vm_platform_config.py index 0d9e9c3185..9a7fd35af8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/amd_vm_update_instance_platform_config.py b/src/oci/core/models/amd_vm_update_instance_platform_config.py index 93055362b5..60bd89e04e 100644 --- a/src/oci/core/models/amd_vm_update_instance_platform_config.py +++ b/src/oci/core/models/amd_vm_update_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/app_catalog_listing.py b/src/oci/core/models/app_catalog_listing.py index 72b2acd567..7f94e6f6a7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f809d658a0..3f60b5c62e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7938523300..246189deae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3c487d2884..8515986eca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/app_catalog_listing_summary.py b/src/oci/core/models/app_catalog_listing_summary.py index eadf9d019e..01117dac66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/app_catalog_subscription.py b/src/oci/core/models/app_catalog_subscription.py index 8319fa46a6..e8af71fbbe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/app_catalog_subscription_summary.py b/src/oci/core/models/app_catalog_subscription_summary.py index 28d87e468a..48d3682fe2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/attach_boot_volume_details.py b/src/oci/core/models/attach_boot_volume_details.py index 50c1e6d804..e478c0f083 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/attach_emulated_volume_details.py b/src/oci/core/models/attach_emulated_volume_details.py index 880e411f72..d9f94d9637 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9a87402ef1..62f26ecaac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 808efccfbe..b9d9d108f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/attach_load_balancer_details.py b/src/oci/core/models/attach_load_balancer_details.py index c1e0f317cb..f4a9105cea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/attach_paravirtualized_volume_details.py b/src/oci/core/models/attach_paravirtualized_volume_details.py index c304b6deba..9152011366 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f54f526c01..380079957e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/attach_vnic_details.py b/src/oci/core/models/attach_vnic_details.py index 808baa4d6b..30ce121bb9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/attach_volume_details.py b/src/oci/core/models/attach_volume_details.py index 16f9b85d90..adec81bf7b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/autotune_policy.py b/src/oci/core/models/autotune_policy.py index ef9f7993a1..840ed69323 100644 --- a/src/oci/core/models/autotune_policy.py +++ b/src/oci/core/models/autotune_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/bgp_session_info.py b/src/oci/core/models/bgp_session_info.py index 0edb60233d..4938d0bb60 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/block_volume_replica.py b/src/oci/core/models/block_volume_replica.py index d94403d4b0..566c5c13ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/block_volume_replica_details.py b/src/oci/core/models/block_volume_replica_details.py index fabe02c372..99260c84b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/block_volume_replica_info.py b/src/oci/core/models/block_volume_replica_info.py index da08b4588a..63769c91fc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a6d65f7aaa..64bf78a3ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/boot_volume.py b/src/oci/core/models/boot_volume.py index 7f8b1ca872..5e5c8f2683 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/boot_volume_attachment.py b/src/oci/core/models/boot_volume_attachment.py index 68089f6cec..ff91a5c52c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/boot_volume_backup.py b/src/oci/core/models/boot_volume_backup.py index a66ecb3aa6..0826077145 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/boot_volume_kms_key.py b/src/oci/core/models/boot_volume_kms_key.py index e6e9c298a0..611f4e94c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/boot_volume_replica.py b/src/oci/core/models/boot_volume_replica.py index 413b1e47cc..297bd004ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/boot_volume_replica_details.py b/src/oci/core/models/boot_volume_replica_details.py index dd55e0bb11..18fb862290 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/boot_volume_replica_info.py b/src/oci/core/models/boot_volume_replica_info.py index 0edec59fe5..989ca36a73 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/boot_volume_source_details.py b/src/oci/core/models/boot_volume_source_details.py index 24f116ba3c..004a02f52f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/boot_volume_source_from_boot_volume_backup_delta_details.py b/src/oci/core/models/boot_volume_source_from_boot_volume_backup_delta_details.py index 71aa186f2c..1921430990 100644 --- a/src/oci/core/models/boot_volume_source_from_boot_volume_backup_delta_details.py +++ b/src/oci/core/models/boot_volume_source_from_boot_volume_backup_delta_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1c37b69656..c269f44dfd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 40bcd657d0..893be41709 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 53222f1280..c2b6284514 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e03db6be0e..58c2dc3de2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ae97f18a64..be01531e89 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/byoip_allocated_range_collection.py b/src/oci/core/models/byoip_allocated_range_collection.py index ac1453ce8d..32217ad9c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/byoip_allocated_range_summary.py b/src/oci/core/models/byoip_allocated_range_summary.py index 56fc6441c0..de05aa8e69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/byoip_range.py b/src/oci/core/models/byoip_range.py index 9bfaa0ee0a..2e25bd94e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/byoip_range_collection.py b/src/oci/core/models/byoip_range_collection.py index 328fd9c49d..7e29b79136 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/byoip_range_summary.py b/src/oci/core/models/byoip_range_summary.py index 7901d0e7b3..18681c4b77 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/byoip_range_vcn_ipv6_allocation_summary.py b/src/oci/core/models/byoip_range_vcn_ipv6_allocation_summary.py index fa1f34fb69..5510d398c0 100644 --- a/src/oci/core/models/byoip_range_vcn_ipv6_allocation_summary.py +++ b/src/oci/core/models/byoip_range_vcn_ipv6_allocation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/byoipv6_cidr_details.py b/src/oci/core/models/byoipv6_cidr_details.py index d423c22b70..4446278719 100644 --- a/src/oci/core/models/byoipv6_cidr_details.py +++ b/src/oci/core/models/byoipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/capacity_report_instance_shape_config.py b/src/oci/core/models/capacity_report_instance_shape_config.py index e14366f27e..e10efd4e63 100644 --- a/src/oci/core/models/capacity_report_instance_shape_config.py +++ b/src/oci/core/models/capacity_report_instance_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/capacity_report_shape_availability.py b/src/oci/core/models/capacity_report_shape_availability.py index 36008300d1..40e1213dd2 100644 --- a/src/oci/core/models/capacity_report_shape_availability.py +++ b/src/oci/core/models/capacity_report_shape_availability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/capacity_reservation_instance_summary.py b/src/oci/core/models/capacity_reservation_instance_summary.py index 99bcff6fa3..24fcad0892 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/capacity_source.py b/src/oci/core/models/capacity_source.py index edd1d4fdc9..b2703cf598 100644 --- a/src/oci/core/models/capacity_source.py +++ b/src/oci/core/models/capacity_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/capture_console_history_details.py b/src/oci/core/models/capture_console_history_details.py index 9193263d92..a2d25f634a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/capture_filter.py b/src/oci/core/models/capture_filter.py index 1448d25011..8984b7ed35 100644 --- a/src/oci/core/models/capture_filter.py +++ b/src/oci/core/models/capture_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b8055a0619..d8d3caefeb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 722edcabde..13d59048f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7fadecad94..999407a5b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_capture_filter_compartment_details.py b/src/oci/core/models/change_capture_filter_compartment_details.py index d3a5d2bee2..adefd6145c 100644 --- a/src/oci/core/models/change_capture_filter_compartment_details.py +++ b/src/oci/core/models/change_capture_filter_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 fbc0393ef3..f5cf99f625 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3411d26bdc..6306bf53c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_compute_capacity_topology_compartment_details.py b/src/oci/core/models/change_compute_capacity_topology_compartment_details.py index d167282550..99a7d33549 100644 --- a/src/oci/core/models/change_compute_capacity_topology_compartment_details.py +++ b/src/oci/core/models/change_compute_capacity_topology_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_compute_cluster_compartment_details.py b/src/oci/core/models/change_compute_cluster_compartment_details.py index 5363113001..c8679a8894 100644 --- a/src/oci/core/models/change_compute_cluster_compartment_details.py +++ b/src/oci/core/models/change_compute_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 6b1b8512c0..f1ccd706e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_cpe_compartment_details.py b/src/oci/core/models/change_cpe_compartment_details.py index cb03eb55be..8dc5290782 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2f183d6bdd..dc09a260c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f9e5444606..71f388e4f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2edc71ec3f..894a3c8210 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2bb7248eb8..a6bbc56e21 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_drg_compartment_details.py b/src/oci/core/models/change_drg_compartment_details.py index 7cc9edbf1e..f40c3bd8f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_image_compartment_details.py b/src/oci/core/models/change_image_compartment_details.py index 64881640db..fddaf76f99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_instance_compartment_details.py b/src/oci/core/models/change_instance_compartment_details.py index c159b1cb8b..a29e7272ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 be57061f66..7e47a01bd5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2ece57059d..27cf5e097a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 13f0c3852c..f0058b6112 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 6be52dfd10..6f38d4488d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2824237619..6e1c89ce1b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b142e06dbd..b465870417 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2b5643c5db..ebac09be9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 480e48183d..e4cc9f6d62 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ae04ecd584..0a802d5638 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 184f3b2c95..9097963520 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 373631036f..bf54207eb8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0516a20cb7..db1b2f91ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 6fbfe9fa1b..4e890c5665 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_subnet_compartment_details.py b/src/oci/core/models/change_subnet_compartment_details.py index 4b57bdddee..2e11778961 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_vcn_compartment_details.py b/src/oci/core/models/change_vcn_compartment_details.py index 593cb15d0a..54f7f77980 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0c9024c988..4aa70e458d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_vlan_compartment_details.py b/src/oci/core/models/change_vlan_compartment_details.py index e0e5351ded..8b595c30fc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b5b1108018..c5cb654653 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_volume_compartment_details.py b/src/oci/core/models/change_volume_compartment_details.py index fc8eab6e72..675d5fa755 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 715c1a5cad..6ffbe53f4f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 93e195b8c9..07a589337d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/change_vtap_compartment_details.py b/src/oci/core/models/change_vtap_compartment_details.py index 627efb9c25..a33e8c70ea 100644 --- a/src/oci/core/models/change_vtap_compartment_details.py +++ b/src/oci/core/models/change_vtap_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cluster_config_details.py b/src/oci/core/models/cluster_config_details.py index 6d048f2383..393f7bca06 100644 --- a/src/oci/core/models/cluster_config_details.py +++ b/src/oci/core/models/cluster_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cluster_configuration_details.py b/src/oci/core/models/cluster_configuration_details.py index 09d422e6dc..d1df4d511c 100644 --- a/src/oci/core/models/cluster_configuration_details.py +++ b/src/oci/core/models/cluster_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cluster_network.py b/src/oci/core/models/cluster_network.py index 5d2f36afb9..a67576c6eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ae48d65b41..869a07907c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cluster_network_summary.py b/src/oci/core/models/cluster_network_summary.py index 0951bbfa5e..024028fb37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compartment_internal.py b/src/oci/core/models/compartment_internal.py index b48c27deee..58428e9371 100644 --- a/src/oci/core/models/compartment_internal.py +++ b/src/oci/core/models/compartment_internal.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_bare_metal_host.py b/src/oci/core/models/compute_bare_metal_host.py index 8bc71eb222..82485d27c9 100644 --- a/src/oci/core/models/compute_bare_metal_host.py +++ b/src/oci/core/models/compute_bare_metal_host.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_bare_metal_host_collection.py b/src/oci/core/models/compute_bare_metal_host_collection.py index 6b04960ae4..45ba8a5ea0 100644 --- a/src/oci/core/models/compute_bare_metal_host_collection.py +++ b/src/oci/core/models/compute_bare_metal_host_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_bare_metal_host_summary.py b/src/oci/core/models/compute_bare_metal_host_summary.py index 17e023b35b..8ad66dcbd0 100644 --- a/src/oci/core/models/compute_bare_metal_host_summary.py +++ b/src/oci/core/models/compute_bare_metal_host_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_capacity_report.py b/src/oci/core/models/compute_capacity_report.py index f3f71378cb..f3df66f3ad 100644 --- a/src/oci/core/models/compute_capacity_report.py +++ b/src/oci/core/models/compute_capacity_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_capacity_reservation.py b/src/oci/core/models/compute_capacity_reservation.py index 3eb542d894..5f86c5ed70 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f79a3efd18..88cc8360c2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_capacity_reservation_summary.py b/src/oci/core/models/compute_capacity_reservation_summary.py index c3b2f1303f..49186ed28e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_capacity_topology.py b/src/oci/core/models/compute_capacity_topology.py index 0b4a7224bb..33a774ffb4 100644 --- a/src/oci/core/models/compute_capacity_topology.py +++ b/src/oci/core/models/compute_capacity_topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_capacity_topology_collection.py b/src/oci/core/models/compute_capacity_topology_collection.py index bf2ed6df55..0454e46f49 100644 --- a/src/oci/core/models/compute_capacity_topology_collection.py +++ b/src/oci/core/models/compute_capacity_topology_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_capacity_topology_summary.py b/src/oci/core/models/compute_capacity_topology_summary.py index cb2309acac..6eb7567ba6 100644 --- a/src/oci/core/models/compute_capacity_topology_summary.py +++ b/src/oci/core/models/compute_capacity_topology_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_cluster.py b/src/oci/core/models/compute_cluster.py index 28bee959a3..f6b2afef57 100644 --- a/src/oci/core/models/compute_cluster.py +++ b/src/oci/core/models/compute_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_cluster_collection.py b/src/oci/core/models/compute_cluster_collection.py index 32cb515d34..ba20078fe0 100644 --- a/src/oci/core/models/compute_cluster_collection.py +++ b/src/oci/core/models/compute_cluster_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_cluster_summary.py b/src/oci/core/models/compute_cluster_summary.py index df625fe4c0..b75aa3b5e7 100644 --- a/src/oci/core/models/compute_cluster_summary.py +++ b/src/oci/core/models/compute_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 56cc51fdac..d031c5e5f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 50255a4038..fcf85a63fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9483cecb28..ddd7761adb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 67f93e068c..085be4d145 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_hpc_island.py b/src/oci/core/models/compute_hpc_island.py index 78e349896f..fe7d492ab8 100644 --- a/src/oci/core/models/compute_hpc_island.py +++ b/src/oci/core/models/compute_hpc_island.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_hpc_island_collection.py b/src/oci/core/models/compute_hpc_island_collection.py index 00ea8dcf5b..38ddb9d74f 100644 --- a/src/oci/core/models/compute_hpc_island_collection.py +++ b/src/oci/core/models/compute_hpc_island_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_hpc_island_summary.py b/src/oci/core/models/compute_hpc_island_summary.py index 957d573219..bff8e4c394 100644 --- a/src/oci/core/models/compute_hpc_island_summary.py +++ b/src/oci/core/models/compute_hpc_island_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_image_capability_schema.py b/src/oci/core/models/compute_image_capability_schema.py index cae0552f72..13fc591e8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7106823995..37a477619c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_instance_details.py b/src/oci/core/models/compute_instance_details.py index aa3b07dddc..5a40375ad8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_instance_options.py b/src/oci/core/models/compute_instance_options.py index a39b4664c7..56615992f8 100644 --- a/src/oci/core/models/compute_instance_options.py +++ b/src/oci/core/models/compute_instance_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_network_block.py b/src/oci/core/models/compute_network_block.py index 8f0f34b8af..52f602a7fb 100644 --- a/src/oci/core/models/compute_network_block.py +++ b/src/oci/core/models/compute_network_block.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_network_block_collection.py b/src/oci/core/models/compute_network_block_collection.py index b1ac444a70..58db729fae 100644 --- a/src/oci/core/models/compute_network_block_collection.py +++ b/src/oci/core/models/compute_network_block_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/compute_network_block_summary.py b/src/oci/core/models/compute_network_block_summary.py index 4dc7f670e9..22caf66dba 100644 --- a/src/oci/core/models/compute_network_block_summary.py +++ b/src/oci/core/models/compute_network_block_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2a7920fd31..214747fe5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 567a783335..c45b18dd0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/console_history.py b/src/oci/core/models/console_history.py index 6bbbed539d..70510dbe2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e1b0b22cb0..719fdf9888 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/copy_volume_backup_details.py b/src/oci/core/models/copy_volume_backup_details.py index e9abb571a0..da35755984 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9c4a10a5ce..51b17ba6e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cpe.py b/src/oci/core/models/cpe.py index dfbf7e0190..16f7ed5d20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cpe_device_config_answer.py b/src/oci/core/models/cpe_device_config_answer.py index 97b01df835..d0d3d82b82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cpe_device_config_question.py b/src/oci/core/models/cpe_device_config_question.py index 4580bf94f4..5d69f98ade 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cpe_device_info.py b/src/oci/core/models/cpe_device_info.py index f810b36713..d8a11f5d30 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cpe_device_shape_detail.py b/src/oci/core/models/cpe_device_shape_detail.py index 134b7d1312..cacb9be306 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cpe_device_shape_summary.py b/src/oci/core/models/cpe_device_shape_summary.py index 0c0beddc97..54337bd3f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 aa2faf3602..e09ac4b492 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 5c93a83de0..12fc258372 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_boot_volume_details.py b/src/oci/core/models/create_boot_volume_details.py index e11c58a720..7ccf6a9f9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_byoip_range_details.py b/src/oci/core/models/create_byoip_range_details.py index 8fd18c48fb..6cd7f22f59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_capacity_report_shape_availability_details.py b/src/oci/core/models/create_capacity_report_shape_availability_details.py index 25518ffd4e..0d63d8e1b9 100644 --- a/src/oci/core/models/create_capacity_report_shape_availability_details.py +++ b/src/oci/core/models/create_capacity_report_shape_availability_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_capacity_source_details.py b/src/oci/core/models/create_capacity_source_details.py index 1c05f84958..fda824124a 100644 --- a/src/oci/core/models/create_capacity_source_details.py +++ b/src/oci/core/models/create_capacity_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_capture_filter_details.py b/src/oci/core/models/create_capture_filter_details.py index 62cf3a6621..438dc8b800 100644 --- a/src/oci/core/models/create_capture_filter_details.py +++ b/src/oci/core/models/create_capture_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_cluster_network_details.py b/src/oci/core/models/create_cluster_network_details.py index 7f5f5bc1d9..bea12497b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 76e4e074da..d159714990 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_compute_capacity_report_details.py b/src/oci/core/models/create_compute_capacity_report_details.py index 4f490d7315..f1a29bff5c 100644 --- a/src/oci/core/models/create_compute_capacity_report_details.py +++ b/src/oci/core/models/create_compute_capacity_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c3f4251871..9011d0b835 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_compute_capacity_topology_details.py b/src/oci/core/models/create_compute_capacity_topology_details.py index f2c04f9541..f57eec1773 100644 --- a/src/oci/core/models/create_compute_capacity_topology_details.py +++ b/src/oci/core/models/create_compute_capacity_topology_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_compute_cluster_details.py b/src/oci/core/models/create_compute_cluster_details.py index 8ba10e0b6d..df8b80eb9d 100644 --- a/src/oci/core/models/create_compute_cluster_details.py +++ b/src/oci/core/models/create_compute_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 5b0d2ef095..841fc28b0a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_cpe_details.py b/src/oci/core/models/create_cpe_details.py index 9a4b9edbe0..6761015e72 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_cross_connect_details.py b/src/oci/core/models/create_cross_connect_details.py index 54e5228715..234f046f0a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e9614f792d..b2a75f05f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_dedicated_capacity_source_details.py b/src/oci/core/models/create_dedicated_capacity_source_details.py index 53d5658222..fd71c50658 100644 --- a/src/oci/core/models/create_dedicated_capacity_source_details.py +++ b/src/oci/core/models/create_dedicated_capacity_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 4ec8a96e8d..d8a4eb9218 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_dhcp_details.py b/src/oci/core/models/create_dhcp_details.py index 0812900780..70a8c496ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_drg_attachment_details.py b/src/oci/core/models/create_drg_attachment_details.py index 425b0ee01d..5f2f6850db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_drg_details.py b/src/oci/core/models/create_drg_details.py index 0e39d51132..d08a92315f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1eaf7a5dfb..662b1e8cc6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 4497f76480..44e0931b85 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_image_details.py b/src/oci/core/models/create_image_details.py index e95bbeffa2..ba6bb166e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_instance_configuration_base.py b/src/oci/core/models/create_instance_configuration_base.py index 03aea02df7..2e38d8b752 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_instance_configuration_details.py b/src/oci/core/models/create_instance_configuration_details.py index 269d5b0c2f..5e2d157f7b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 80ca5abc9e..26e50407f1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2c251d09ec..7a5907994a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_instance_pool_details.py b/src/oci/core/models/create_instance_pool_details.py index b15ecd3a87..410a2af781 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 daafa15d7d..56c7524eb4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_internet_gateway_details.py b/src/oci/core/models/create_internet_gateway_details.py index e29bd1daa0..66a56df3b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 39ebf280ef..970bd17ca3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c6398394e6..ac575ed793 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 30d91ca2b5..4e75b3d4e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 6178515374..db5ed5692f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_ipv6_details.py b/src/oci/core/models/create_ipv6_details.py index d39e9b947a..7b770cc4f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -40,6 +40,10 @@ def __init__(self, **kwargs): The value to assign to the vnic_id property of this CreateIpv6Details. :type vnic_id: str + :param route_table_id: + The value to assign to the route_table_id property of this CreateIpv6Details. + :type route_table_id: str + :param ipv6_subnet_cidr: The value to assign to the ipv6_subnet_cidr property of this CreateIpv6Details. :type ipv6_subnet_cidr: str @@ -51,6 +55,7 @@ def __init__(self, **kwargs): 'freeform_tags': 'dict(str, str)', 'ip_address': 'str', 'vnic_id': 'str', + 'route_table_id': 'str', 'ipv6_subnet_cidr': 'str' } @@ -60,6 +65,7 @@ def __init__(self, **kwargs): 'freeform_tags': 'freeformTags', 'ip_address': 'ipAddress', 'vnic_id': 'vnicId', + 'route_table_id': 'routeTableId', 'ipv6_subnet_cidr': 'ipv6SubnetCidr' } @@ -68,6 +74,7 @@ def __init__(self, **kwargs): self._freeform_tags = None self._ip_address = None self._vnic_id = None + self._route_table_id = None self._ipv6_subnet_cidr = None @property @@ -228,6 +235,34 @@ def vnic_id(self, vnic_id): """ self._vnic_id = vnic_id + @property + def route_table_id(self): + """ + Gets the route_table_id of this CreateIpv6Details. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :return: The route_table_id of this CreateIpv6Details. + :rtype: str + """ + return self._route_table_id + + @route_table_id.setter + def route_table_id(self, route_table_id): + """ + Sets the route_table_id of this CreateIpv6Details. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :param route_table_id: The route_table_id of this CreateIpv6Details. + :type: str + """ + self._route_table_id = route_table_id + @property def ipv6_subnet_cidr(self): """ 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 bdf4440fb4..1778d1996f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_macsec_key.py b/src/oci/core/models/create_macsec_key.py index ff35410f76..5c560411de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_macsec_properties.py b/src/oci/core/models/create_macsec_properties.py index 7ff1d5273a..929ba23cef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_nat_gateway_details.py b/src/oci/core/models/create_nat_gateway_details.py index 5739a176d1..28f42f3c75 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 061bf22895..8f3ba3a80f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_private_ip_details.py b/src/oci/core/models/create_private_ip_details.py index ed08c9f924..10fa48815d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -48,6 +48,10 @@ def __init__(self, **kwargs): The value to assign to the vlan_id property of this CreatePrivateIpDetails. :type vlan_id: str + :param route_table_id: + The value to assign to the route_table_id property of this CreatePrivateIpDetails. + :type route_table_id: str + """ self.swagger_types = { 'defined_tags': 'dict(str, dict(str, object))', @@ -56,7 +60,8 @@ def __init__(self, **kwargs): 'hostname_label': 'str', 'ip_address': 'str', 'vnic_id': 'str', - 'vlan_id': 'str' + 'vlan_id': 'str', + 'route_table_id': 'str' } self.attribute_map = { @@ -66,7 +71,8 @@ def __init__(self, **kwargs): 'hostname_label': 'hostnameLabel', 'ip_address': 'ipAddress', 'vnic_id': 'vnicId', - 'vlan_id': 'vlanId' + 'vlan_id': 'vlanId', + 'route_table_id': 'routeTableId' } self._defined_tags = None @@ -76,6 +82,7 @@ def __init__(self, **kwargs): self._ip_address = None self._vnic_id = None self._vlan_id = None + self._route_table_id = None @property def defined_tags(self): @@ -319,6 +326,34 @@ def vlan_id(self, vlan_id): """ self._vlan_id = vlan_id + @property + def route_table_id(self): + """ + Gets the route_table_id of this CreatePrivateIpDetails. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :return: The route_table_id of this CreatePrivateIpDetails. + :rtype: str + """ + return self._route_table_id + + @route_table_id.setter + def route_table_id(self, route_table_id): + """ + Sets the route_table_id of this CreatePrivateIpDetails. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :param route_table_id: The route_table_id of this CreatePrivateIpDetails. + :type: str + """ + self._route_table_id = route_table_id + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/core/models/create_public_ip_details.py b/src/oci/core/models/create_public_ip_details.py index 1102813457..986af6e0e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3ead7aaf3c..6b5cd380f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b8225f0e53..cbfb445acb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_route_table_details.py b/src/oci/core/models/create_route_table_details.py index 7ab8779555..371e32b4b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_security_list_details.py b/src/oci/core/models/create_security_list_details.py index 7409d2f7b5..598faa9dc8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_service_gateway_details.py b/src/oci/core/models/create_service_gateway_details.py index 46c15dba25..7d8a8ec816 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_subnet_details.py b/src/oci/core/models/create_subnet_details.py index 2ec5bf255d..3cbfb3d461 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_vcn_details.py b/src/oci/core/models/create_vcn_details.py index 0c726f46d2..f84cef0054 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -438,10 +438,15 @@ def freeform_tags(self, freeform_tags): def security_attributes(self): """ Gets the security_attributes of this CreateVcnDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this CreateVcnDetails. :rtype: dict(str, dict(str, object)) @@ -452,10 +457,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this CreateVcnDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this CreateVcnDetails. :type: dict(str, dict(str, object)) diff --git a/src/oci/core/models/create_virtual_circuit_details.py b/src/oci/core/models/create_virtual_circuit_details.py index 80f0988265..8594d8375e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a353cc4df9..2e12bdd553 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_vlan_details.py b/src/oci/core/models/create_vlan_details.py index 9e9b6adb31..3c1fad916e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_vnic_details.py b/src/oci/core/models/create_vnic_details.py index 8b8c0621e7..18f0ac21c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -367,10 +367,15 @@ def freeform_tags(self, freeform_tags): def security_attributes(self): """ Gets the security_attributes of this CreateVnicDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this CreateVnicDetails. :rtype: dict(str, dict(str, object)) @@ -381,10 +386,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this CreateVnicDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this CreateVnicDetails. :type: dict(str, dict(str, object)) diff --git a/src/oci/core/models/create_volume_backup_details.py b/src/oci/core/models/create_volume_backup_details.py index 82e51dced6..1ac1f6f0f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ff320555e0..4d40bdeb0a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 188db20e8a..51a4b66412 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_volume_details.py b/src/oci/core/models/create_volume_details.py index d50beba26c..ebeaee40bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 19b7e2eb44..4f08d9391c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_volume_group_details.py b/src/oci/core/models/create_volume_group_details.py index 9efbcd76ee..1a047cae11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/create_vtap_details.py b/src/oci/core/models/create_vtap_details.py index 3a2a56f2fb..ec1cc043e2 100644 --- a/src/oci/core/models/create_vtap_details.py +++ b/src/oci/core/models/create_vtap_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cross_connect.py b/src/oci/core/models/cross_connect.py index 702e3ae794..ea8ddeed75 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cross_connect_group.py b/src/oci/core/models/cross_connect_group.py index e5d15a841a..7512952dee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cross_connect_location.py b/src/oci/core/models/cross_connect_location.py index d959ceb624..c2b1bf0b7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cross_connect_mapping.py b/src/oci/core/models/cross_connect_mapping.py index 9a921f75a9..d85002b86f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cross_connect_mapping_details.py b/src/oci/core/models/cross_connect_mapping_details.py index aec0d8cc01..a23d2bdd5c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 fd9ccb280d..6d1885005a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f24803ada6..e5982395d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/cross_connect_status.py b/src/oci/core/models/cross_connect_status.py index 81ceafaa36..8965a5ce70 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/dedicated_capacity_source.py b/src/oci/core/models/dedicated_capacity_source.py index 8dd9a17d16..24a8366f15 100644 --- a/src/oci/core/models/dedicated_capacity_source.py +++ b/src/oci/core/models/dedicated_capacity_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/dedicated_vm_host.py b/src/oci/core/models/dedicated_vm_host.py index d6f11db2cb..00276ac73c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 081b88d05b..75c3ecf519 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 96ae193d45..8543c29b68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 299fd68bc7..b73347ff5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/dedicated_vm_host_summary.py b/src/oci/core/models/dedicated_vm_host_summary.py index 0b3de57c9d..883df03cdc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/default_drg_route_tables.py b/src/oci/core/models/default_drg_route_tables.py index eab5df768d..162fd0cbe1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/default_phase_one_parameters.py b/src/oci/core/models/default_phase_one_parameters.py index ef5d7f09f1..3543088111 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/default_phase_two_parameters.py b/src/oci/core/models/default_phase_two_parameters.py index b4e0d654a8..b64ba3fd6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 25bd1c6f4c..8124a93fc1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1f41758180..29e87dd86b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/detach_load_balancer_details.py b/src/oci/core/models/detach_load_balancer_details.py index 68bd882173..cf909780ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/detached_volume_autotune_policy.py b/src/oci/core/models/detached_volume_autotune_policy.py index 5f130368a2..804b9178b5 100644 --- a/src/oci/core/models/detached_volume_autotune_policy.py +++ b/src/oci/core/models/detached_volume_autotune_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/device.py b/src/oci/core/models/device.py index 68bc304084..001fb3de24 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/dhcp_dns_option.py b/src/oci/core/models/dhcp_dns_option.py index 2258981d18..e3f35dc35e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/dhcp_option.py b/src/oci/core/models/dhcp_option.py index fccca9cacd..2f6b9b3923 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/dhcp_options.py b/src/oci/core/models/dhcp_options.py index f831ebf983..23a336a68b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/dhcp_search_domain_option.py b/src/oci/core/models/dhcp_search_domain_option.py index 4e66644a85..3c3591858a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/dpd_config.py b/src/oci/core/models/dpd_config.py index 9696a70baf..ac8eb13d78 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg.py b/src/oci/core/models/drg.py index 492b87b170..8295af1128 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg_attachment.py b/src/oci/core/models/drg_attachment.py index 829d9ee77f..caf85d662f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ac4af18ea0..84784a02bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg_attachment_info.py b/src/oci/core/models/drg_attachment_info.py index 43ede4eaf5..7951382bd1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg_attachment_match_all_drg_route_distribution_match_criteria.py b/src/oci/core/models/drg_attachment_match_all_drg_route_distribution_match_criteria.py index 178e429d4c..2da926786b 100644 --- a/src/oci/core/models/drg_attachment_match_all_drg_route_distribution_match_criteria.py +++ b/src/oci/core/models/drg_attachment_match_all_drg_route_distribution_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1482d2b2b4..72daf4ce03 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg_attachment_network_details.py b/src/oci/core/models/drg_attachment_network_details.py index 6b2835ae7f..aed3a83c7f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f7c56c9b03..dc53d46f61 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c40fa8504d..eae22f0e5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg_redundancy_status.py b/src/oci/core/models/drg_redundancy_status.py index 1b45315516..33b3f568bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg_route_distribution.py b/src/oci/core/models/drg_route_distribution.py index 84ab30f687..4ec8fa55cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b709d9ee0c..9ab531c744 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg_route_distribution_statement.py b/src/oci/core/models/drg_route_distribution_statement.py index 47069b9a2e..87f8b85efd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg_route_rule.py b/src/oci/core/models/drg_route_rule.py index bbb9ef31db..0bacc2fb2b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/drg_route_table.py b/src/oci/core/models/drg_route_table.py index 40abb09c3a..8d6538cdc7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/egress_security_rule.py b/src/oci/core/models/egress_security_rule.py index e95610f2d7..b4e67e963f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/emulated_volume_attachment.py b/src/oci/core/models/emulated_volume_attachment.py index 7e96efb7d1..9ce78aa6bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/encryption_domain_config.py b/src/oci/core/models/encryption_domain_config.py index 604d5f626a..3b6446268b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2002124077..2c257ea183 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a863219862..a1824c2503 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/export_image_details.py b/src/oci/core/models/export_image_details.py index 28ceee24c3..24f6298b11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f692aceff0..7d0cb3490f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0cd14f4455..f3f7cbf773 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/fast_connect_provider_service.py b/src/oci/core/models/fast_connect_provider_service.py index 43b4e9c4ae..734b3ddc8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9b3a1a0b11..6ba2d9de20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/flow_log_capture_filter_rule_details.py b/src/oci/core/models/flow_log_capture_filter_rule_details.py index cf8c52d858..f504436047 100644 --- a/src/oci/core/models/flow_log_capture_filter_rule_details.py +++ b/src/oci/core/models/flow_log_capture_filter_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/generic_bm_launch_instance_platform_config.py b/src/oci/core/models/generic_bm_launch_instance_platform_config.py index 400efd6876..ebe51ead5e 100644 --- a/src/oci/core/models/generic_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/generic_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/generic_bm_platform_config.py b/src/oci/core/models/generic_bm_platform_config.py index 6b1a16cd72..5e95668f9f 100644 --- a/src/oci/core/models/generic_bm_platform_config.py +++ b/src/oci/core/models/generic_bm_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/get_ip_inventory_vcn_overlap_details.py b/src/oci/core/models/get_ip_inventory_vcn_overlap_details.py index caa14778a3..21b3da32cd 100644 --- a/src/oci/core/models/get_ip_inventory_vcn_overlap_details.py +++ b/src/oci/core/models/get_ip_inventory_vcn_overlap_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9e527c6f65..9f89559ba2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 690c7a33a6..ce3d5f9199 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/i_scsi_volume_attachment.py b/src/oci/core/models/i_scsi_volume_attachment.py index 6f6919a040..d9838337cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/icmp_options.py b/src/oci/core/models/icmp_options.py index df21c98688..d2ad3f9bc8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/image.py b/src/oci/core/models/image.py index 512927eab9..1cc9295ad0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/image_capability_schema_descriptor.py b/src/oci/core/models/image_capability_schema_descriptor.py index ca655ff3f9..54f758a0ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/image_memory_constraints.py b/src/oci/core/models/image_memory_constraints.py index e57d67860f..17694d0832 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/image_ocpu_constraints.py b/src/oci/core/models/image_ocpu_constraints.py index 8c08325c3e..d3effaac62 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/image_shape_compatibility_entry.py b/src/oci/core/models/image_shape_compatibility_entry.py index 0a6bf7d68c..5fa11f9fb4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/image_shape_compatibility_summary.py b/src/oci/core/models/image_shape_compatibility_summary.py index 3dbc64e77c..7fc3339fb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/image_source_details.py b/src/oci/core/models/image_source_details.py index ed0fbc2dc4..f934f64ce7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d896e78ec9..dc36dee0f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f4cdebc3ea..6032796722 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ingress_security_rule.py b/src/oci/core/models/ingress_security_rule.py index e278d42ee5..1b99b82d36 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance.py b/src/oci/core/models/instance.py index 00d832c7fd..73e2452bb2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -526,10 +526,15 @@ def defined_tags(self, defined_tags): def security_attributes(self): """ Gets the security_attributes of this Instance. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this Instance. :rtype: dict(str, dict(str, object)) @@ -540,10 +545,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this Instance. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this Instance. :type: dict(str, dict(str, object)) diff --git a/src/oci/core/models/instance_agent_config.py b/src/oci/core/models/instance_agent_config.py index ac256fd4d7..43414f73c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_agent_features.py b/src/oci/core/models/instance_agent_features.py index 5431d8bdcb..e64dcae5e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 37a0f7d584..8554d26931 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_availability_config.py b/src/oci/core/models/instance_availability_config.py index 6e851547b9..f6220553f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration.py b/src/oci/core/models/instance_configuration.py index d2f7faa20a..48f4261285 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.py index 13028a531e..779121b8d0 100644 --- a/src/oci/core/models/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_amd_milan_bm_gpu_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e2f5ae3000..2fe829161d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.py index 4ed3636376..ff303eb1f5 100644 --- a/src/oci/core/models/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_amd_rome_bm_gpu_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 92b629284d..23feaf6675 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1dd57fd561..105009fffe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 00198a7c4c..92822eb83e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 636a695784..f442f0c40b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_autotune_policy.py b/src/oci/core/models/instance_configuration_autotune_policy.py index 1066b11fcf..07989128d1 100644 --- a/src/oci/core/models/instance_configuration_autotune_policy.py +++ b/src/oci/core/models/instance_configuration_autotune_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_availability_config.py b/src/oci/core/models/instance_configuration_availability_config.py index b43e7d2287..a52eecfbd7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3dc35f72a0..df4a0e45a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_block_volume_replica_details.py b/src/oci/core/models/instance_configuration_block_volume_replica_details.py index 0cbb76d76a..1e5dc1aa37 100644 --- a/src/oci/core/models/instance_configuration_block_volume_replica_details.py +++ b/src/oci/core/models/instance_configuration_block_volume_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a2f530fd20..0781e22a6e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -304,10 +304,15 @@ def freeform_tags(self, freeform_tags): def security_attributes(self): """ Gets the security_attributes of this InstanceConfigurationCreateVnicDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this InstanceConfigurationCreateVnicDetails. :rtype: dict(str, dict(str, object)) @@ -318,10 +323,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this InstanceConfigurationCreateVnicDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this InstanceConfigurationCreateVnicDetails. :type: dict(str, dict(str, object)) 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 e01765b0bc..b30aba4d01 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_detached_volume_autotune_policy.py b/src/oci/core/models/instance_configuration_detached_volume_autotune_policy.py index b55450c50f..016ec951e5 100644 --- a/src/oci/core/models/instance_configuration_detached_volume_autotune_policy.py +++ b/src/oci/core/models/instance_configuration_detached_volume_autotune_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_generic_bm_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_generic_bm_launch_instance_platform_config.py index 71e7994f99..1deff31046 100644 --- a/src/oci/core/models/instance_configuration_generic_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_generic_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_instance_details.py b/src/oci/core/models/instance_configuration_instance_details.py index a7504d8e54..5ff50d5c34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_instance_options.py b/src/oci/core/models/instance_configuration_instance_options.py index 93d9b28901..5c3b61b3dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 aa6a8a841d..5bee96569e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_instance_source_image_filter_details.py b/src/oci/core/models/instance_configuration_instance_source_image_filter_details.py index 25f5a06bd4..7056e799db 100644 --- a/src/oci/core/models/instance_configuration_instance_source_image_filter_details.py +++ b/src/oci/core/models/instance_configuration_instance_source_image_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f04a97f6a2..a081bb31e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c4074ca0b8..bf63f94b6e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_intel_icelake_bm_launch_instance_platform_config.py b/src/oci/core/models/instance_configuration_intel_icelake_bm_launch_instance_platform_config.py index 6d4934d23e..0893204d39 100644 --- a/src/oci/core/models/instance_configuration_intel_icelake_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/instance_configuration_intel_icelake_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8923df7c35..6e4bb7a78e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 123ea7271c..1d8fd163bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_ipv6_address_ipv6_subnet_cidr_pair_details.py b/src/oci/core/models/instance_configuration_ipv6_address_ipv6_subnet_cidr_pair_details.py index ad2e63fe5c..b6f474f1f9 100644 --- a/src/oci/core/models/instance_configuration_ipv6_address_ipv6_subnet_cidr_pair_details.py +++ b/src/oci/core/models/instance_configuration_ipv6_address_ipv6_subnet_cidr_pair_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0fb1703b60..3f4d6af037 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 150e6f5c4c..5debc1ece4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7b9763718c..e8746d70d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -410,10 +410,15 @@ def defined_tags(self, defined_tags): def security_attributes(self): """ Gets the security_attributes of this InstanceConfigurationLaunchInstanceDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this InstanceConfigurationLaunchInstanceDetails. :rtype: dict(str, dict(str, object)) @@ -424,10 +429,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this InstanceConfigurationLaunchInstanceDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this InstanceConfigurationLaunchInstanceDetails. :type: dict(str, dict(str, object)) 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 065f60c8c5..7425e7ccc0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0d098851a6..2e03e2626c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_launch_options.py b/src/oci/core/models/instance_configuration_launch_options.py index 7b919a19df..8d13c1d939 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 be2ee433f6..488b3b4b05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_performance_based_autotune_policy.py b/src/oci/core/models/instance_configuration_performance_based_autotune_policy.py index 715d7f76fc..19b104c3ec 100644 --- a/src/oci/core/models/instance_configuration_performance_based_autotune_policy.py +++ b/src/oci/core/models/instance_configuration_performance_based_autotune_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_configuration_summary.py b/src/oci/core/models/instance_configuration_summary.py index 4c7618b636..1d746fb4c2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 dc5bae9ade..199ad7854c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3469c92322..8bd4a667e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 72865bafce..abbf3ea8b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_console_connection.py b/src/oci/core/models/instance_console_connection.py index cc405a6b59..1a4473b2be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_credentials.py b/src/oci/core/models/instance_credentials.py index a8a908aaa0..03b8f47c57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_maintenance_event.py b/src/oci/core/models/instance_maintenance_event.py index e895a2d859..32461d2f92 100644 --- a/src/oci/core/models/instance_maintenance_event.py +++ b/src/oci/core/models/instance_maintenance_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_maintenance_event_summary.py b/src/oci/core/models/instance_maintenance_event_summary.py index 2067c29e18..40e3455b9c 100644 --- a/src/oci/core/models/instance_maintenance_event_summary.py +++ b/src/oci/core/models/instance_maintenance_event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_maintenance_reboot.py b/src/oci/core/models/instance_maintenance_reboot.py index ef39309b9f..6c6535a489 100644 --- a/src/oci/core/models/instance_maintenance_reboot.py +++ b/src/oci/core/models/instance_maintenance_reboot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_options.py b/src/oci/core/models/instance_options.py index d0efa319ad..e9c6a07412 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_pool.py b/src/oci/core/models/instance_pool.py index 31abedca2e..cb0d440be5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_pool_instance.py b/src/oci/core/models/instance_pool_instance.py index 6dc2427840..49250f2ab0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 4b5fcc67fe..cad7451f3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 5d3f4da30a..ebacf837b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_pool_placement_configuration.py b/src/oci/core/models/instance_pool_placement_configuration.py index 6f508d0bac..f155adb69a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_pool_placement_ipv6_address_ipv6_subnet_cidr_details.py b/src/oci/core/models/instance_pool_placement_ipv6_address_ipv6_subnet_cidr_details.py index 1c1264f6ae..7964aa22f8 100644 --- a/src/oci/core/models/instance_pool_placement_ipv6_address_ipv6_subnet_cidr_details.py +++ b/src/oci/core/models/instance_pool_placement_ipv6_address_ipv6_subnet_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_pool_placement_primary_subnet.py b/src/oci/core/models/instance_pool_placement_primary_subnet.py index e51823e8f9..053355f8e9 100644 --- a/src/oci/core/models/instance_pool_placement_primary_subnet.py +++ b/src/oci/core/models/instance_pool_placement_primary_subnet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f45dc81230..71db03e7ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_pool_placement_subnet_details.py b/src/oci/core/models/instance_pool_placement_subnet_details.py index b30831551c..9396f93954 100644 --- a/src/oci/core/models/instance_pool_placement_subnet_details.py +++ b/src/oci/core/models/instance_pool_placement_subnet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_pool_summary.py b/src/oci/core/models/instance_pool_summary.py index eb99178030..eb537f3621 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_power_action_details.py b/src/oci/core/models/instance_power_action_details.py index cff8afc4b3..ff89ca1a31 100644 --- a/src/oci/core/models/instance_power_action_details.py +++ b/src/oci/core/models/instance_power_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_reservation_config.py b/src/oci/core/models/instance_reservation_config.py index 98986bc7fd..4fbea07c77 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_reservation_config_details.py b/src/oci/core/models/instance_reservation_config_details.py index 92997f69ff..6ac793562f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7917d676d2..813995f8bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_shape_config.py b/src/oci/core/models/instance_shape_config.py index cf583908ac..ad611b73ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_source_details.py b/src/oci/core/models/instance_source_details.py index d457fe22a9..2854764968 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_source_image_filter_details.py b/src/oci/core/models/instance_source_image_filter_details.py index 742a2bf286..927cdcc0dc 100644 --- a/src/oci/core/models/instance_source_image_filter_details.py +++ b/src/oci/core/models/instance_source_image_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a9b8602f09..38585b7b68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d69c9e3dc3..242e406812 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/instance_summary.py b/src/oci/core/models/instance_summary.py index 359f1a08a3..3978552c25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/intel_icelake_bm_launch_instance_platform_config.py b/src/oci/core/models/intel_icelake_bm_launch_instance_platform_config.py index 2c76316ab2..814f33eaad 100644 --- a/src/oci/core/models/intel_icelake_bm_launch_instance_platform_config.py +++ b/src/oci/core/models/intel_icelake_bm_launch_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/intel_icelake_bm_platform_config.py b/src/oci/core/models/intel_icelake_bm_platform_config.py index 7e1f5a72bf..81f55a4964 100644 --- a/src/oci/core/models/intel_icelake_bm_platform_config.py +++ b/src/oci/core/models/intel_icelake_bm_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d52128e772..cc2993c580 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 47933e0f42..9f02e4acb9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 525100c524..cfd2b8e4ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/intel_vm_platform_config.py b/src/oci/core/models/intel_vm_platform_config.py index dd870a9640..02422b89f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/intel_vm_update_instance_platform_config.py b/src/oci/core/models/intel_vm_update_instance_platform_config.py index 7cd26e76f2..c31227be37 100644 --- a/src/oci/core/models/intel_vm_update_instance_platform_config.py +++ b/src/oci/core/models/intel_vm_update_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/internet_gateway.py b/src/oci/core/models/internet_gateway.py index f7d0edd799..d788673fdd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/inventory_ip_address_summary.py b/src/oci/core/models/inventory_ip_address_summary.py index c509c28fab..89e22eae1b 100644 --- a/src/oci/core/models/inventory_ip_address_summary.py +++ b/src/oci/core/models/inventory_ip_address_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/inventory_resource_summary.py b/src/oci/core/models/inventory_resource_summary.py index 3196da609f..cf024be1fc 100644 --- a/src/oci/core/models/inventory_resource_summary.py +++ b/src/oci/core/models/inventory_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/inventory_subnet_cidr_block_summary.py b/src/oci/core/models/inventory_subnet_cidr_block_summary.py index af595ffb3a..168f3c979c 100644 --- a/src/oci/core/models/inventory_subnet_cidr_block_summary.py +++ b/src/oci/core/models/inventory_subnet_cidr_block_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/inventory_subnet_summary.py b/src/oci/core/models/inventory_subnet_summary.py index e97047f664..757a3b9cf3 100644 --- a/src/oci/core/models/inventory_subnet_summary.py +++ b/src/oci/core/models/inventory_subnet_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/inventory_vcn_cidr_block_summary.py b/src/oci/core/models/inventory_vcn_cidr_block_summary.py index de74c93549..bfceeba8fe 100644 --- a/src/oci/core/models/inventory_vcn_cidr_block_summary.py +++ b/src/oci/core/models/inventory_vcn_cidr_block_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/inventory_vcn_summary.py b/src/oci/core/models/inventory_vcn_summary.py index c8556c7361..b31ac93503 100644 --- a/src/oci/core/models/inventory_vcn_summary.py +++ b/src/oci/core/models/inventory_vcn_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ip_inventory_cidr_utilization_collection.py b/src/oci/core/models/ip_inventory_cidr_utilization_collection.py index 2b9e2581e7..1b2d881f57 100644 --- a/src/oci/core/models/ip_inventory_cidr_utilization_collection.py +++ b/src/oci/core/models/ip_inventory_cidr_utilization_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ip_inventory_cidr_utilization_summary.py b/src/oci/core/models/ip_inventory_cidr_utilization_summary.py index a942852b3b..76dac68ae0 100644 --- a/src/oci/core/models/ip_inventory_cidr_utilization_summary.py +++ b/src/oci/core/models/ip_inventory_cidr_utilization_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ip_inventory_collection.py b/src/oci/core/models/ip_inventory_collection.py index 8007c77207..3201599c14 100644 --- a/src/oci/core/models/ip_inventory_collection.py +++ b/src/oci/core/models/ip_inventory_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ip_inventory_subnet_resource_collection.py b/src/oci/core/models/ip_inventory_subnet_resource_collection.py index 75dd4ef929..b12d1c796c 100644 --- a/src/oci/core/models/ip_inventory_subnet_resource_collection.py +++ b/src/oci/core/models/ip_inventory_subnet_resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ip_inventory_subnet_resource_summary.py b/src/oci/core/models/ip_inventory_subnet_resource_summary.py index 162bee40e3..d3657523ad 100644 --- a/src/oci/core/models/ip_inventory_subnet_resource_summary.py +++ b/src/oci/core/models/ip_inventory_subnet_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ip_inventory_vcn_overlap_collection.py b/src/oci/core/models/ip_inventory_vcn_overlap_collection.py index 782ea0c5d7..60fe0ae360 100644 --- a/src/oci/core/models/ip_inventory_vcn_overlap_collection.py +++ b/src/oci/core/models/ip_inventory_vcn_overlap_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ip_inventory_vcn_overlap_summary.py b/src/oci/core/models/ip_inventory_vcn_overlap_summary.py index 1b3fef6846..b80c3d1faf 100644 --- a/src/oci/core/models/ip_inventory_vcn_overlap_summary.py +++ b/src/oci/core/models/ip_inventory_vcn_overlap_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ip_sec_connection.py b/src/oci/core/models/ip_sec_connection.py index 3ca599fb16..c77d816785 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ee657fc969..3f4069cbb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 bc0ad27bc6..e362213c5c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ip_sec_connection_tunnel.py b/src/oci/core/models/ip_sec_connection_tunnel.py index bd02d3e507..c98bde1d61 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e7277235b2..ee959ea181 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0fdf002311..4d514c0415 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ipam.py b/src/oci/core/models/ipam.py index 88d93ec61a..143f46b97c 100644 --- a/src/oci/core/models/ipam.py +++ b/src/oci/core/models/ipam.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 81b5cd83c8..b69b97fc70 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/ipv6.py b/src/oci/core/models/ipv6.py index c01bfbb69e..f52dd91216 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -87,6 +87,10 @@ def __init__(self, **kwargs): The value to assign to the vnic_id property of this Ipv6. :type vnic_id: str + :param route_table_id: + The value to assign to the route_table_id property of this Ipv6. + :type route_table_id: str + """ self.swagger_types = { 'compartment_id': 'str', @@ -98,7 +102,8 @@ def __init__(self, **kwargs): 'lifecycle_state': 'str', 'subnet_id': 'str', 'time_created': 'datetime', - 'vnic_id': 'str' + 'vnic_id': 'str', + 'route_table_id': 'str' } self.attribute_map = { @@ -111,7 +116,8 @@ def __init__(self, **kwargs): 'lifecycle_state': 'lifecycleState', 'subnet_id': 'subnetId', 'time_created': 'timeCreated', - 'vnic_id': 'vnicId' + 'vnic_id': 'vnicId', + 'route_table_id': 'routeTableId' } self._compartment_id = None @@ -124,6 +130,7 @@ def __init__(self, **kwargs): self._subnet_id = None self._time_created = None self._vnic_id = None + self._route_table_id = None @property def compartment_id(self): @@ -427,6 +434,34 @@ def vnic_id(self, vnic_id): """ self._vnic_id = vnic_id + @property + def route_table_id(self): + """ + Gets the route_table_id of this Ipv6. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :return: The route_table_id of this Ipv6. + :rtype: str + """ + return self._route_table_id + + @route_table_id.setter + def route_table_id(self, route_table_id): + """ + Sets the route_table_id of this Ipv6. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :param route_table_id: The route_table_id of this Ipv6. + :type: str + """ + self._route_table_id = route_table_id + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/core/models/ipv6_address_ipv6_subnet_cidr_pair_details.py b/src/oci/core/models/ipv6_address_ipv6_subnet_cidr_pair_details.py index 83b0df8e48..03ca48a772 100644 --- a/src/oci/core/models/ipv6_address_ipv6_subnet_cidr_pair_details.py +++ b/src/oci/core/models/ipv6_address_ipv6_subnet_cidr_pair_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/launch_attach_i_scsi_volume_details.py b/src/oci/core/models/launch_attach_i_scsi_volume_details.py index f95a2da4cf..7bd159fbe3 100644 --- a/src/oci/core/models/launch_attach_i_scsi_volume_details.py +++ b/src/oci/core/models/launch_attach_i_scsi_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/launch_attach_paravirtualized_volume_details.py b/src/oci/core/models/launch_attach_paravirtualized_volume_details.py index d1fea44991..a9edc1407d 100644 --- a/src/oci/core/models/launch_attach_paravirtualized_volume_details.py +++ b/src/oci/core/models/launch_attach_paravirtualized_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/launch_attach_volume_details.py b/src/oci/core/models/launch_attach_volume_details.py index ac19aa8390..d0cadb6960 100644 --- a/src/oci/core/models/launch_attach_volume_details.py +++ b/src/oci/core/models/launch_attach_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/launch_create_volume_details.py b/src/oci/core/models/launch_create_volume_details.py index 80bdef3e79..52ac4abe0b 100644 --- a/src/oci/core/models/launch_create_volume_details.py +++ b/src/oci/core/models/launch_create_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/launch_create_volume_from_attributes.py b/src/oci/core/models/launch_create_volume_from_attributes.py index 741dc3b792..29e41f99cf 100644 --- a/src/oci/core/models/launch_create_volume_from_attributes.py +++ b/src/oci/core/models/launch_create_volume_from_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b78251d513..360ac658e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 64c1b97581..8b087fe3c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/launch_instance_details.py b/src/oci/core/models/launch_instance_details.py index 5776332862..11f0372e25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -412,10 +412,15 @@ def defined_tags(self, defined_tags): def security_attributes(self): """ Gets the security_attributes of this LaunchInstanceDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this LaunchInstanceDetails. :rtype: dict(str, dict(str, object)) @@ -426,10 +431,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this LaunchInstanceDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this LaunchInstanceDetails. :type: dict(str, dict(str, object)) diff --git a/src/oci/core/models/launch_instance_licensing_config.py b/src/oci/core/models/launch_instance_licensing_config.py index d461396f4e..186fc5303e 100644 --- a/src/oci/core/models/launch_instance_licensing_config.py +++ b/src/oci/core/models/launch_instance_licensing_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/launch_instance_platform_config.py b/src/oci/core/models/launch_instance_platform_config.py index 7ac227b685..ad5c32a1c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 13778aef41..48f5dfb1af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/launch_instance_windows_licensing_config.py b/src/oci/core/models/launch_instance_windows_licensing_config.py index 7324c9353d..e351acec3a 100644 --- a/src/oci/core/models/launch_instance_windows_licensing_config.py +++ b/src/oci/core/models/launch_instance_windows_licensing_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/launch_options.py b/src/oci/core/models/launch_options.py index 99dd4ccc2f..fc20d63387 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/letter_of_authority.py b/src/oci/core/models/letter_of_authority.py index ce035e78bb..37b33ce0cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/licensing_config.py b/src/oci/core/models/licensing_config.py index 9082393601..4dfc21329e 100644 --- a/src/oci/core/models/licensing_config.py +++ b/src/oci/core/models/licensing_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/list_ip_inventory_details.py b/src/oci/core/models/list_ip_inventory_details.py index 77b59b6ef6..0a670ca259 100644 --- a/src/oci/core/models/list_ip_inventory_details.py +++ b/src/oci/core/models/list_ip_inventory_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/local_peering_gateway.py b/src/oci/core/models/local_peering_gateway.py index 2c124ce84c..22ac670c5a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/loop_back_drg_attachment_network_details.py b/src/oci/core/models/loop_back_drg_attachment_network_details.py index 549deec17a..57d7377978 100644 --- a/src/oci/core/models/loop_back_drg_attachment_network_details.py +++ b/src/oci/core/models/loop_back_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/macsec_key.py b/src/oci/core/models/macsec_key.py index a84347d301..201a3c835b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/macsec_properties.py b/src/oci/core/models/macsec_properties.py index 9a96f85f68..a43b00e54c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/measured_boot_entry.py b/src/oci/core/models/measured_boot_entry.py index 554bde24af..c0a746d8f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/measured_boot_report.py b/src/oci/core/models/measured_boot_report.py index 01aa95bfe3..586f448d05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/measured_boot_report_measurements.py b/src/oci/core/models/measured_boot_report_measurements.py index baee1df467..72ba3028a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/member_replica.py b/src/oci/core/models/member_replica.py index c31c629ad8..71b114007a 100644 --- a/src/oci/core/models/member_replica.py +++ b/src/oci/core/models/member_replica.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/modify_vcn_cidr_details.py b/src/oci/core/models/modify_vcn_cidr_details.py index b5c06013ed..1a74c5f2eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/multipath_device.py b/src/oci/core/models/multipath_device.py index c367d74321..11be0c5dec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/nat_gateway.py b/src/oci/core/models/nat_gateway.py index d123c823a7..d7e2a39d67 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/network_security_group.py b/src/oci/core/models/network_security_group.py index 3fa01b53d5..3017446b03 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/network_security_group_vnic.py b/src/oci/core/models/network_security_group_vnic.py index 51c656fda9..a5e3b58c06 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/networking_topology.py b/src/oci/core/models/networking_topology.py index 00e94321fd..d213365900 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/paravirtualized_volume_attachment.py b/src/oci/core/models/paravirtualized_volume_attachment.py index 0605f0d089..8c69adf393 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0f08048fd3..b6df513bca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/percentage_of_cores_enabled_options.py b/src/oci/core/models/percentage_of_cores_enabled_options.py index 30723e34f9..f08ed95981 100644 --- a/src/oci/core/models/percentage_of_cores_enabled_options.py +++ b/src/oci/core/models/percentage_of_cores_enabled_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/performance_based_autotune_policy.py b/src/oci/core/models/performance_based_autotune_policy.py index cc38ae91f6..f0261f6a97 100644 --- a/src/oci/core/models/performance_based_autotune_policy.py +++ b/src/oci/core/models/performance_based_autotune_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/phase_one_config_details.py b/src/oci/core/models/phase_one_config_details.py index 561298ea3b..633daf7275 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/phase_two_config_details.py b/src/oci/core/models/phase_two_config_details.py index 0292437f1c..b749f8b039 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/platform_config.py b/src/oci/core/models/platform_config.py index 55c38166a4..c9111dbaa6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/port_range.py b/src/oci/core/models/port_range.py index f995cdfe5d..45acd70394 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/preemptible_instance_config_details.py b/src/oci/core/models/preemptible_instance_config_details.py index 66f836b713..2f12db4d9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/preemption_action.py b/src/oci/core/models/preemption_action.py index 92060daaed..1ca7d765d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/private_ip.py b/src/oci/core/models/private_ip.py index f3a29beef2..0a3b49629c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -108,6 +108,10 @@ def __init__(self, **kwargs): The value to assign to the vnic_id property of this PrivateIp. :type vnic_id: str + :param route_table_id: + The value to assign to the route_table_id property of this PrivateIp. + :type route_table_id: str + """ self.swagger_types = { 'availability_domain': 'str', @@ -122,7 +126,8 @@ def __init__(self, **kwargs): 'vlan_id': 'str', 'subnet_id': 'str', 'time_created': 'datetime', - 'vnic_id': 'str' + 'vnic_id': 'str', + 'route_table_id': 'str' } self.attribute_map = { @@ -138,7 +143,8 @@ def __init__(self, **kwargs): 'vlan_id': 'vlanId', 'subnet_id': 'subnetId', 'time_created': 'timeCreated', - 'vnic_id': 'vnicId' + 'vnic_id': 'vnicId', + 'route_table_id': 'routeTableId' } self._availability_domain = None @@ -154,6 +160,7 @@ def __init__(self, **kwargs): self._subnet_id = None self._time_created = None self._vnic_id = None + self._route_table_id = None @property def availability_domain(self): @@ -587,6 +594,34 @@ def vnic_id(self, vnic_id): """ self._vnic_id = vnic_id + @property + def route_table_id(self): + """ + Gets the route_table_id of this PrivateIp. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :return: The route_table_id of this PrivateIp. + :rtype: str + """ + return self._route_table_id + + @route_table_id.setter + def route_table_id(self, route_table_id): + """ + Sets the route_table_id of this PrivateIp. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :param route_table_id: The route_table_id of this PrivateIp. + :type: str + """ + self._route_table_id = route_table_id + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/core/models/public_ip.py b/src/oci/core/models/public_ip.py index bb6123914b..01182d5a07 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/public_ip_pool.py b/src/oci/core/models/public_ip_pool.py index c45d339c48..6766726d9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/public_ip_pool_collection.py b/src/oci/core/models/public_ip_pool_collection.py index bea5718253..9ba5082d9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/public_ip_pool_summary.py b/src/oci/core/models/public_ip_pool_summary.py index f38dba6706..c54c4da442 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/reboot_migrate_action_details.py b/src/oci/core/models/reboot_migrate_action_details.py index db8a7917c9..182cc80fe2 100644 --- a/src/oci/core/models/reboot_migrate_action_details.py +++ b/src/oci/core/models/reboot_migrate_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/remote_peering_connection.py b/src/oci/core/models/remote_peering_connection.py index 35d0a1f4ae..77110df56e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ef4277dc99..6180c55dae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f587baca45..024c634b65 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ed2fbf8977..09f35ac60f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8f3dc1b384..97f56b3c25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 5f39816b8b..6fd667cd51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/remove_subnet_ipv6_cidr_details.py b/src/oci/core/models/remove_subnet_ipv6_cidr_details.py index 1e2603db55..d34e2239ef 100644 --- a/src/oci/core/models/remove_subnet_ipv6_cidr_details.py +++ b/src/oci/core/models/remove_subnet_ipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/remove_vcn_cidr_details.py b/src/oci/core/models/remove_vcn_cidr_details.py index 482f650199..b192b084d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/remove_vcn_ipv6_cidr_details.py b/src/oci/core/models/remove_vcn_ipv6_cidr_details.py index 2edcaad37a..ba0421f5c2 100644 --- a/src/oci/core/models/remove_vcn_ipv6_cidr_details.py +++ b/src/oci/core/models/remove_vcn_ipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/reset_action_details.py b/src/oci/core/models/reset_action_details.py index b0ea032cf1..bd2c112b5a 100644 --- a/src/oci/core/models/reset_action_details.py +++ b/src/oci/core/models/reset_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/route_rule.py b/src/oci/core/models/route_rule.py index bde8ee018f..f9984ff733 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/route_table.py b/src/oci/core/models/route_table.py index 6d38b70b3d..182201c701 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/security_list.py b/src/oci/core/models/security_list.py index 3320253058..edcdeac8e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/security_rule.py b/src/oci/core/models/security_rule.py index 087b27d5bb..3d47c8edf7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/service.py b/src/oci/core/models/service.py index 9c31010f14..7f90e89b4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/service_gateway.py b/src/oci/core/models/service_gateway.py index 4db282037f..1e134d5e25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/service_id_request_details.py b/src/oci/core/models/service_id_request_details.py index 0f78520621..1e82b1f338 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/service_id_response_details.py b/src/oci/core/models/service_id_response_details.py index c0d7fb813d..8ec722412b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape.py b/src/oci/core/models/shape.py index 3149b0ef7e..b237f94b04 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_access_control_service_enabled_platform_options.py b/src/oci/core/models/shape_access_control_service_enabled_platform_options.py index 3cc371b11b..6d7c966e3f 100644 --- a/src/oci/core/models/shape_access_control_service_enabled_platform_options.py +++ b/src/oci/core/models/shape_access_control_service_enabled_platform_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_alternative_object.py b/src/oci/core/models/shape_alternative_object.py index f516c2d227..2ae1bb11ec 100644 --- a/src/oci/core/models/shape_alternative_object.py +++ b/src/oci/core/models/shape_alternative_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_input_output_memory_management_unit_enabled_platform_options.py b/src/oci/core/models/shape_input_output_memory_management_unit_enabled_platform_options.py index e3445ad468..a2e5c8caf1 100644 --- a/src/oci/core/models/shape_input_output_memory_management_unit_enabled_platform_options.py +++ b/src/oci/core/models/shape_input_output_memory_management_unit_enabled_platform_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b205a643b4..8e659d1c36 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_measured_boot_options.py b/src/oci/core/models/shape_measured_boot_options.py index e1ae812567..45d736dc15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_memory_encryption_options.py b/src/oci/core/models/shape_memory_encryption_options.py index 348c5b4460..a9f95b9f66 100644 --- a/src/oci/core/models/shape_memory_encryption_options.py +++ b/src/oci/core/models/shape_memory_encryption_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_memory_options.py b/src/oci/core/models/shape_memory_options.py index 1981af24c6..a3d4d11519 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_networking_bandwidth_options.py b/src/oci/core/models/shape_networking_bandwidth_options.py index d5d47aaf6a..39c33a9db8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8374fccd08..fba90a2fdc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_ocpu_options.py b/src/oci/core/models/shape_ocpu_options.py index 835c2c0448..0eb2415dd6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_platform_config_options.py b/src/oci/core/models/shape_platform_config_options.py index ff90a879da..c7087ab3e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_secure_boot_options.py b/src/oci/core/models/shape_secure_boot_options.py index 7aa7695a29..9a18946c42 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_symmetric_multi_threading_enabled_platform_options.py b/src/oci/core/models/shape_symmetric_multi_threading_enabled_platform_options.py index e456e77acf..d09e3ac948 100644 --- a/src/oci/core/models/shape_symmetric_multi_threading_enabled_platform_options.py +++ b/src/oci/core/models/shape_symmetric_multi_threading_enabled_platform_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 df9854649c..54b72e4553 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/shape_virtual_instructions_enabled_platform_options.py b/src/oci/core/models/shape_virtual_instructions_enabled_platform_options.py index e40c943567..3fbf144c94 100644 --- a/src/oci/core/models/shape_virtual_instructions_enabled_platform_options.py +++ b/src/oci/core/models/shape_virtual_instructions_enabled_platform_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/soft_reset_action_details.py b/src/oci/core/models/soft_reset_action_details.py index 6cd1814309..b2d4c37b20 100644 --- a/src/oci/core/models/soft_reset_action_details.py +++ b/src/oci/core/models/soft_reset_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/subnet.py b/src/oci/core/models/subnet.py index 346199219d..2b4e8e29e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/subnet_topology.py b/src/oci/core/models/subnet_topology.py index 93a880a34e..f5ebf9f9bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/tcp_options.py b/src/oci/core/models/tcp_options.py index 2a7918f4d6..a399e93aba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/terminate_preemption_action.py b/src/oci/core/models/terminate_preemption_action.py index cb4e0cccdd..b2ebc34088 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/topology.py b/src/oci/core/models/topology.py index 3748a8d3eb..4addc9c4f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 bba844faaf..e156f89a03 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3207a7dd60..73f7f67d9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/topology_contains_entity_relationship.py b/src/oci/core/models/topology_contains_entity_relationship.py index 5785d8659d..af33de683c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/topology_entity_relationship.py b/src/oci/core/models/topology_entity_relationship.py index da12c0abc0..ccf2523362 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 12d66dd239..4c09ec442d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 672ac0c2c3..fa55703ad5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/tunnel_config.py b/src/oci/core/models/tunnel_config.py index d851ad174f..910e6fa7d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/tunnel_cpe_device_config.py b/src/oci/core/models/tunnel_cpe_device_config.py index 714629268e..4cc04a0431 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/tunnel_phase_one_details.py b/src/oci/core/models/tunnel_phase_one_details.py index d335fbe55a..89a113153f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/tunnel_phase_two_details.py b/src/oci/core/models/tunnel_phase_two_details.py index 1db753dd7f..86650c202a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/tunnel_route_summary.py b/src/oci/core/models/tunnel_route_summary.py index 693e6db929..ab22b6b77f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/tunnel_security_association_summary.py b/src/oci/core/models/tunnel_security_association_summary.py index 7b8fa9847a..1afcd8a073 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/tunnel_status.py b/src/oci/core/models/tunnel_status.py index c34bbf03b5..8f6be01f9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/udp_options.py b/src/oci/core/models/udp_options.py index 65b91d4e54..b3c87673af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f331b9cca1..a0b479319a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_boot_volume_details.py b/src/oci/core/models/update_boot_volume_details.py index b9982afa98..fa2bd58af6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d3ebc3009c..8353350864 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_byoip_range_details.py b/src/oci/core/models/update_byoip_range_details.py index c2d6105343..c3c9d28c9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_capacity_source_details.py b/src/oci/core/models/update_capacity_source_details.py index 3a3b6f96ac..18ca1a4307 100644 --- a/src/oci/core/models/update_capacity_source_details.py +++ b/src/oci/core/models/update_capacity_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_capture_filter_details.py b/src/oci/core/models/update_capture_filter_details.py index 99a89c7e09..31610716e6 100644 --- a/src/oci/core/models/update_capture_filter_details.py +++ b/src/oci/core/models/update_capture_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_cluster_network_details.py b/src/oci/core/models/update_cluster_network_details.py index 440ede2b74..14d36658ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 6323aacfc2..0a41028535 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ec890b2ceb..e51391175b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_compute_capacity_topology_details.py b/src/oci/core/models/update_compute_capacity_topology_details.py index f469977ed3..3f08a0b118 100644 --- a/src/oci/core/models/update_compute_capacity_topology_details.py +++ b/src/oci/core/models/update_compute_capacity_topology_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_compute_cluster_details.py b/src/oci/core/models/update_compute_cluster_details.py index fae8b9bb14..4e0a53fc51 100644 --- a/src/oci/core/models/update_compute_cluster_details.py +++ b/src/oci/core/models/update_compute_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0a7ffc4872..d37dc4443a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_console_history_details.py b/src/oci/core/models/update_console_history_details.py index d5b0fca890..6c75e5ed6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_cpe_details.py b/src/oci/core/models/update_cpe_details.py index 92612b0347..fb6a821f66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_cross_connect_details.py b/src/oci/core/models/update_cross_connect_details.py index 415011444c..c4291b606c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7857e3cf9f..2bcb31eb9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_dedicated_capacity_source_details.py b/src/oci/core/models/update_dedicated_capacity_source_details.py index d4f01fbbc6..5c5f0ccf9a 100644 --- a/src/oci/core/models/update_dedicated_capacity_source_details.py +++ b/src/oci/core/models/update_dedicated_capacity_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 327ab94183..8d3ba33c80 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_dhcp_details.py b/src/oci/core/models/update_dhcp_details.py index df46212576..61b3c8f405 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_drg_attachment_details.py b/src/oci/core/models/update_drg_attachment_details.py index c3672d0622..7c01e431ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_drg_details.py b/src/oci/core/models/update_drg_details.py index 7b6f033053..bae9d488de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ce93e6c00e..935b7bc9b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 dffb0f8a7e..6c656b8f3b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 85a5a7a59e..52695a4767 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d7484a9216..a0b964ff96 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3171cd00fe..b74fb10438 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e25dfcbf6a..9ca07950c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_image_details.py b/src/oci/core/models/update_image_details.py index 10bf740aa1..8ccbad8b8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 5b6f2efcd0..4866678844 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c593c397de..c0de70b92e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_instance_configuration_details.py b/src/oci/core/models/update_instance_configuration_details.py index d648c8f1d7..c633ecf7e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 950978dad5..5033d812d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_instance_details.py b/src/oci/core/models/update_instance_details.py index 139eabaf76..b15f96ad83 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -247,10 +247,15 @@ def defined_tags(self, defined_tags): def security_attributes(self): """ Gets the security_attributes of this UpdateInstanceDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this UpdateInstanceDetails. :rtype: dict(str, dict(str, object)) @@ -261,10 +266,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this UpdateInstanceDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this UpdateInstanceDetails. :type: dict(str, dict(str, object)) diff --git a/src/oci/core/models/update_instance_licensing_config.py b/src/oci/core/models/update_instance_licensing_config.py index 7d0e4c255b..e1a594e590 100644 --- a/src/oci/core/models/update_instance_licensing_config.py +++ b/src/oci/core/models/update_instance_licensing_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_instance_maintenance_event_details.py b/src/oci/core/models/update_instance_maintenance_event_details.py index 31e6ac0154..356216ab71 100644 --- a/src/oci/core/models/update_instance_maintenance_event_details.py +++ b/src/oci/core/models/update_instance_maintenance_event_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_instance_platform_config.py b/src/oci/core/models/update_instance_platform_config.py index 686726580c..1a6005ceca 100644 --- a/src/oci/core/models/update_instance_platform_config.py +++ b/src/oci/core/models/update_instance_platform_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_instance_pool_details.py b/src/oci/core/models/update_instance_pool_details.py index 678f89c9b2..2d0720e4db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 54e8c96a24..3badf0dde3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ae436c7e48..c44b6f2fa4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_instance_source_details.py b/src/oci/core/models/update_instance_source_details.py index 6261d69467..486ee96824 100644 --- a/src/oci/core/models/update_instance_source_details.py +++ b/src/oci/core/models/update_instance_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_instance_source_via_boot_volume_details.py b/src/oci/core/models/update_instance_source_via_boot_volume_details.py index 5d54586846..ccc17b7480 100644 --- a/src/oci/core/models/update_instance_source_via_boot_volume_details.py +++ b/src/oci/core/models/update_instance_source_via_boot_volume_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_instance_source_via_image_details.py b/src/oci/core/models/update_instance_source_via_image_details.py index 2ff7986959..2f0112c7a8 100644 --- a/src/oci/core/models/update_instance_source_via_image_details.py +++ b/src/oci/core/models/update_instance_source_via_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_instance_windows_licensing_config.py b/src/oci/core/models/update_instance_windows_licensing_config.py index 780c7fcfba..d540ee4ab2 100644 --- a/src/oci/core/models/update_instance_windows_licensing_config.py +++ b/src/oci/core/models/update_instance_windows_licensing_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_internet_gateway_details.py b/src/oci/core/models/update_internet_gateway_details.py index 76f7393cd6..292d36b879 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d321783317..85aaef2ee8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9268a38fa0..22babe97c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d6936bd8b8..fc7d0f9eb2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 807250d96f..7301ed6b57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 fa2e194ebe..f50b369074 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_ipv6_details.py b/src/oci/core/models/update_ipv6_details.py index d1e4c1de7e..b12f975c33 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -36,25 +36,32 @@ def __init__(self, **kwargs): The value to assign to the vnic_id property of this UpdateIpv6Details. :type vnic_id: str + :param route_table_id: + The value to assign to the route_table_id property of this UpdateIpv6Details. + :type route_table_id: str + """ self.swagger_types = { 'defined_tags': 'dict(str, dict(str, object))', 'display_name': 'str', 'freeform_tags': 'dict(str, str)', - 'vnic_id': 'str' + 'vnic_id': 'str', + 'route_table_id': 'str' } self.attribute_map = { 'defined_tags': 'definedTags', 'display_name': 'displayName', 'freeform_tags': 'freeformTags', - 'vnic_id': 'vnicId' + 'vnic_id': 'vnicId', + 'route_table_id': 'routeTableId' } self._defined_tags = None self._display_name = None self._freeform_tags = None self._vnic_id = None + self._route_table_id = None @property def defined_tags(self): @@ -180,6 +187,34 @@ def vnic_id(self, vnic_id): """ self._vnic_id = vnic_id + @property + def route_table_id(self): + """ + Gets the route_table_id of this UpdateIpv6Details. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :return: The route_table_id of this UpdateIpv6Details. + :rtype: str + """ + return self._route_table_id + + @route_table_id.setter + def route_table_id(self, route_table_id): + """ + Sets the route_table_id of this UpdateIpv6Details. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :param route_table_id: The route_table_id of this UpdateIpv6Details. + :type: str + """ + self._route_table_id = route_table_id + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/core/models/update_launch_options.py b/src/oci/core/models/update_launch_options.py index dd340ad117..639440100b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 6f1d32d664..09b3dbdf13 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_macsec_key.py b/src/oci/core/models/update_macsec_key.py index 2c9ce5ec42..fea9831bd2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_macsec_properties.py b/src/oci/core/models/update_macsec_properties.py index c5722834c5..de21c86ebb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_nat_gateway_details.py b/src/oci/core/models/update_nat_gateway_details.py index ae939588e2..3320ad4f4f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3f21b91f4f..a4ba1275d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 dd063d9941..c58430560b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_private_ip_details.py b/src/oci/core/models/update_private_ip_details.py index 9963bade48..5db5111d16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -40,13 +40,18 @@ def __init__(self, **kwargs): The value to assign to the vnic_id property of this UpdatePrivateIpDetails. :type vnic_id: str + :param route_table_id: + The value to assign to the route_table_id property of this UpdatePrivateIpDetails. + :type route_table_id: str + """ self.swagger_types = { 'defined_tags': 'dict(str, dict(str, object))', 'display_name': 'str', 'freeform_tags': 'dict(str, str)', 'hostname_label': 'str', - 'vnic_id': 'str' + 'vnic_id': 'str', + 'route_table_id': 'str' } self.attribute_map = { @@ -54,7 +59,8 @@ def __init__(self, **kwargs): 'display_name': 'displayName', 'freeform_tags': 'freeformTags', 'hostname_label': 'hostnameLabel', - 'vnic_id': 'vnicId' + 'vnic_id': 'vnicId', + 'route_table_id': 'routeTableId' } self._defined_tags = None @@ -62,6 +68,7 @@ def __init__(self, **kwargs): self._freeform_tags = None self._hostname_label = None self._vnic_id = None + self._route_table_id = None @property def defined_tags(self): @@ -239,6 +246,34 @@ def vnic_id(self, vnic_id): """ self._vnic_id = vnic_id + @property + def route_table_id(self): + """ + Gets the route_table_id of this UpdatePrivateIpDetails. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :return: The route_table_id of this UpdatePrivateIpDetails. + :rtype: str + """ + return self._route_table_id + + @route_table_id.setter + def route_table_id(self, route_table_id): + """ + Sets the route_table_id of this UpdatePrivateIpDetails. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :param route_table_id: The route_table_id of this UpdatePrivateIpDetails. + :type: str + """ + self._route_table_id = route_table_id + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/core/models/update_public_ip_details.py b/src/oci/core/models/update_public_ip_details.py index 24cd3b3ddb..62b7ebaf93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 5d71842bfb..8ec8e375cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8b8267b373..1f62aac4b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_route_table_details.py b/src/oci/core/models/update_route_table_details.py index 8e7bb968e5..100c94122e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_security_list_details.py b/src/oci/core/models/update_security_list_details.py index 4822763d13..82250622a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_security_rule_details.py b/src/oci/core/models/update_security_rule_details.py index 7a7f24e094..d119629b94 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_service_gateway_details.py b/src/oci/core/models/update_service_gateway_details.py index 2b3a745015..e83a56cbc4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_subnet_details.py b/src/oci/core/models/update_subnet_details.py index ac8a62b116..6a07d8ccd8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 5534f1acf1..fc44a2ea5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_vcn_details.py b/src/oci/core/models/update_vcn_details.py index 2ec5b4d0d1..28929122e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -154,10 +154,15 @@ def freeform_tags(self, freeform_tags): def security_attributes(self): """ Gets the security_attributes of this UpdateVcnDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this UpdateVcnDetails. :rtype: dict(str, dict(str, object)) @@ -168,10 +173,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this UpdateVcnDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this UpdateVcnDetails. :type: dict(str, dict(str, object)) diff --git a/src/oci/core/models/update_virtual_circuit_details.py b/src/oci/core/models/update_virtual_circuit_details.py index 4c242cb33b..8496a7fd44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_vlan_details.py b/src/oci/core/models/update_vlan_details.py index 76c1031921..b0ebedbd59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_vnic_details.py b/src/oci/core/models/update_vnic_details.py index cbed405b73..591b81c1fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -48,6 +48,10 @@ def __init__(self, **kwargs): The value to assign to the skip_source_dest_check property of this UpdateVnicDetails. :type skip_source_dest_check: bool + :param route_table_id: + The value to assign to the route_table_id property of this UpdateVnicDetails. + :type route_table_id: str + """ self.swagger_types = { 'defined_tags': 'dict(str, dict(str, object))', @@ -56,7 +60,8 @@ def __init__(self, **kwargs): 'security_attributes': 'dict(str, dict(str, object))', 'hostname_label': 'str', 'nsg_ids': 'list[str]', - 'skip_source_dest_check': 'bool' + 'skip_source_dest_check': 'bool', + 'route_table_id': 'str' } self.attribute_map = { @@ -66,7 +71,8 @@ def __init__(self, **kwargs): 'security_attributes': 'securityAttributes', 'hostname_label': 'hostnameLabel', 'nsg_ids': 'nsgIds', - 'skip_source_dest_check': 'skipSourceDestCheck' + 'skip_source_dest_check': 'skipSourceDestCheck', + 'route_table_id': 'routeTableId' } self._defined_tags = None @@ -76,6 +82,7 @@ def __init__(self, **kwargs): self._hostname_label = None self._nsg_ids = None self._skip_source_dest_check = None + self._route_table_id = None @property def defined_tags(self): @@ -175,10 +182,15 @@ def freeform_tags(self, freeform_tags): def security_attributes(self): """ Gets the security_attributes of this UpdateVnicDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this UpdateVnicDetails. :rtype: dict(str, dict(str, object)) @@ -189,10 +201,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this UpdateVnicDetails. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this UpdateVnicDetails. :type: dict(str, dict(str, object)) @@ -339,6 +356,34 @@ def skip_source_dest_check(self, skip_source_dest_check): """ self._skip_source_dest_check = skip_source_dest_check + @property + def route_table_id(self): + """ + Gets the route_table_id of this UpdateVnicDetails. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :return: The route_table_id of this UpdateVnicDetails. + :rtype: str + """ + return self._route_table_id + + @route_table_id.setter + def route_table_id(self, route_table_id): + """ + Sets the route_table_id of this UpdateVnicDetails. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :param route_table_id: The route_table_id of this UpdateVnicDetails. + :type: str + """ + self._route_table_id = route_table_id + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/core/models/update_volume_attachment_details.py b/src/oci/core/models/update_volume_attachment_details.py index 9bf76c1cf7..3f9b89cebc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_volume_backup_details.py b/src/oci/core/models/update_volume_backup_details.py index 2e6df48b87..9f91f57f55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 af58b31464..15816360f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_volume_details.py b/src/oci/core/models/update_volume_details.py index 57e6c6fc16..bc07699a2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 92907b1219..206ad881d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_volume_group_details.py b/src/oci/core/models/update_volume_group_details.py index fabb32ee84..93530a1285 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b761ddbd1f..be5e6bb640 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/update_vtap_details.py b/src/oci/core/models/update_vtap_details.py index 56f1498617..6d312f5ca2 100644 --- a/src/oci/core/models/update_vtap_details.py +++ b/src/oci/core/models/update_vtap_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 814e4ff440..edd122e89d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/upgrade_status.py b/src/oci/core/models/upgrade_status.py index 5d814e097a..f953a72956 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/vcn.py b/src/oci/core/models/vcn.py index 8d05151294..d09591e38b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -546,10 +546,15 @@ def freeform_tags(self, freeform_tags): def security_attributes(self): """ Gets the security_attributes of this Vcn. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this Vcn. :rtype: dict(str, dict(str, object)) @@ -560,10 +565,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this Vcn. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this Vcn. :type: dict(str, dict(str, object)) diff --git a/src/oci/core/models/vcn_dns_resolver_association.py b/src/oci/core/models/vcn_dns_resolver_association.py index 80b906103b..ccd45b9ddc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b3a689fde6..d326661048 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 4eae6265f5..38bab78005 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c6bc7555fa..3cbaae1bb8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/vcn_topology.py b/src/oci/core/models/vcn_topology.py index 03093728e1..eddb9209d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/virtual_circuit.py b/src/oci/core/models/virtual_circuit.py index d366b42505..7ce4b10f43 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/virtual_circuit_associated_tunnel_details.py b/src/oci/core/models/virtual_circuit_associated_tunnel_details.py index 425c446210..f0af7a17ce 100644 --- a/src/oci/core/models/virtual_circuit_associated_tunnel_details.py +++ b/src/oci/core/models/virtual_circuit_associated_tunnel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/virtual_circuit_bandwidth_shape.py b/src/oci/core/models/virtual_circuit_bandwidth_shape.py index fed94c539c..84675dce69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 cb3f9900b0..10f8ae1f9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/virtual_circuit_public_prefix.py b/src/oci/core/models/virtual_circuit_public_prefix.py index c5f327b692..e1891f70ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/virtual_circuit_redundancy_metadata.py b/src/oci/core/models/virtual_circuit_redundancy_metadata.py index 8fe76d0992..cfe4cd673c 100644 --- a/src/oci/core/models/virtual_circuit_redundancy_metadata.py +++ b/src/oci/core/models/virtual_circuit_redundancy_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -12,7 +12,9 @@ @init_model_state_from_kwargs class VirtualCircuitRedundancyMetadata(object): """ - Redundancy level details of the virtual circuit + This resource provides redundancy level details for the virtual circuit. For more about redundancy, see `FastConnect Redundancy Best Practices`__. + + __ https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/fastconnectresiliency.htm """ #: A constant which can be used with the configured_redundancy_level property of a VirtualCircuitRedundancyMetadata. @@ -103,7 +105,7 @@ def __init__(self, **kwargs): def configured_redundancy_level(self): """ Gets the configured_redundancy_level of this VirtualCircuitRedundancyMetadata. - The configured redundancy level of the virtual circuit + The configured redundancy level of the virtual circuit. Allowed values for this property are: "DEVICE", "POP", "REGION", "NON_REDUNDANT", "PENDING", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -118,7 +120,7 @@ def configured_redundancy_level(self): def configured_redundancy_level(self, configured_redundancy_level): """ Sets the configured_redundancy_level of this VirtualCircuitRedundancyMetadata. - The configured redundancy level of the virtual circuit + The configured redundancy level of the virtual circuit. :param configured_redundancy_level: The configured_redundancy_level of this VirtualCircuitRedundancyMetadata. @@ -133,7 +135,7 @@ def configured_redundancy_level(self, configured_redundancy_level): def ipv4bgp_session_redundancy_status(self): """ Gets the ipv4bgp_session_redundancy_status of this VirtualCircuitRedundancyMetadata. - IPV4 BGP redundancy status indicates if the configured redundancy level is met + Indicates if the configured level is met for IPv4 BGP redundancy. Allowed values for this property are: "CONFIGURATION_MATCH", "CONFIGURATION_MISMATCH", "NOT_MET_SLA", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -148,7 +150,7 @@ def ipv4bgp_session_redundancy_status(self): def ipv4bgp_session_redundancy_status(self, ipv4bgp_session_redundancy_status): """ Sets the ipv4bgp_session_redundancy_status of this VirtualCircuitRedundancyMetadata. - IPV4 BGP redundancy status indicates if the configured redundancy level is met + Indicates if the configured level is met for IPv4 BGP redundancy. :param ipv4bgp_session_redundancy_status: The ipv4bgp_session_redundancy_status of this VirtualCircuitRedundancyMetadata. @@ -163,7 +165,7 @@ def ipv4bgp_session_redundancy_status(self, ipv4bgp_session_redundancy_status): def ipv6bgp_session_redundancy_status(self): """ Gets the ipv6bgp_session_redundancy_status of this VirtualCircuitRedundancyMetadata. - IPV6 BGP redundancy status indicates if the configured redundancy level is met + Indicates if the configured level is met for IPv6 BGP redundancy. Allowed values for this property are: "CONFIGURATION_MATCH", "CONFIGURATION_MISMATCH", "NOT_MET_SLA", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -178,7 +180,7 @@ def ipv6bgp_session_redundancy_status(self): def ipv6bgp_session_redundancy_status(self, ipv6bgp_session_redundancy_status): """ Sets the ipv6bgp_session_redundancy_status of this VirtualCircuitRedundancyMetadata. - IPV6 BGP redundancy status indicates if the configured redundancy level is met + Indicates if the configured level is met for IPv6 BGP redundancy. :param ipv6bgp_session_redundancy_status: The ipv6bgp_session_redundancy_status of this VirtualCircuitRedundancyMetadata. diff --git a/src/oci/core/models/vlan.py b/src/oci/core/models/vlan.py index 010e9fdb1b..b315100d2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/vnic.py b/src/oci/core/models/vnic.py index 978ac5a9ce..ff4f6ff180 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -138,6 +138,10 @@ def __init__(self, **kwargs): The value to assign to the ipv6_addresses property of this Vnic. :type ipv6_addresses: list[str] + :param route_table_id: + The value to assign to the route_table_id property of this Vnic. + :type route_table_id: str + """ self.swagger_types = { 'availability_domain': 'str', @@ -158,7 +162,8 @@ def __init__(self, **kwargs): 'skip_source_dest_check': 'bool', 'subnet_id': 'str', 'time_created': 'datetime', - 'ipv6_addresses': 'list[str]' + 'ipv6_addresses': 'list[str]', + 'route_table_id': 'str' } self.attribute_map = { @@ -180,7 +185,8 @@ def __init__(self, **kwargs): 'skip_source_dest_check': 'skipSourceDestCheck', 'subnet_id': 'subnetId', 'time_created': 'timeCreated', - 'ipv6_addresses': 'ipv6Addresses' + 'ipv6_addresses': 'ipv6Addresses', + 'route_table_id': 'routeTableId' } self._availability_domain = None @@ -202,6 +208,7 @@ def __init__(self, **kwargs): self._subnet_id = None self._time_created = None self._ipv6_addresses = None + self._route_table_id = None @property def availability_domain(self): @@ -323,10 +330,15 @@ def display_name(self, display_name): def security_attributes(self): """ Gets the security_attributes of this Vnic. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :return: The security_attributes of this Vnic. :rtype: dict(str, dict(str, object)) @@ -337,10 +349,15 @@ def security_attributes(self): def security_attributes(self, security_attributes): """ Sets the security_attributes of this Vnic. - Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. + `Security attributes`__ are labels + for a resource that can be referenced in a `Zero Trust Packet Routing`__ + (ZPR) policy to control access to ZPR-supported resources. Example: `{\"Oracle-DataSecurity-ZPR\": {\"MaxEgressCount\": {\"value\":\"42\",\"mode\":\"audit\"}}}` + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/zpr-artifacts.htm#security-attributes + __ https://docs.cloud.oracle.com/iaas/Content/zero-trust-packet-routing/overview.htm + :param security_attributes: The security_attributes of this Vnic. :type: dict(str, dict(str, object)) @@ -813,6 +830,34 @@ def ipv6_addresses(self, ipv6_addresses): """ self._ipv6_addresses = ipv6_addresses + @property + def route_table_id(self): + """ + Gets the route_table_id of this Vnic. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :return: The route_table_id of this Vnic. + :rtype: str + """ + return self._route_table_id + + @route_table_id.setter + def route_table_id(self, route_table_id): + """ + Sets the route_table_id of this Vnic. + The `OCID`__ of the route table the PrivateIp will use. + + __ https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm + + + :param route_table_id: The route_table_id of this Vnic. + :type: str + """ + self._route_table_id = route_table_id + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/core/models/vnic_attachment.py b/src/oci/core/models/vnic_attachment.py index 3f0d3367b6..50e7e59758 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume.py b/src/oci/core/models/volume.py index 10a2db14cb..1191596b1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_attachment.py b/src/oci/core/models/volume_attachment.py index 38cfe7b693..c3e0ce05fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_backup.py b/src/oci/core/models/volume_backup.py index f02f6519f7..f2ef6ef18c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_backup_policy.py b/src/oci/core/models/volume_backup_policy.py index b572e1534a..6a1b6ff73e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_backup_policy_assignment.py b/src/oci/core/models/volume_backup_policy_assignment.py index 4e8f5f6d23..b76849ef99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_backup_schedule.py b/src/oci/core/models/volume_backup_schedule.py index 64743b000d..c615e7c4d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_group.py b/src/oci/core/models/volume_group.py index 057eae4880..dee2cd269e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_group_backup.py b/src/oci/core/models/volume_group_backup.py index 8e7c70035f..38f21d0354 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_group_replica.py b/src/oci/core/models/volume_group_replica.py index bc7cd64798..d894cbb897 100644 --- a/src/oci/core/models/volume_group_replica.py +++ b/src/oci/core/models/volume_group_replica.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_group_replica_details.py b/src/oci/core/models/volume_group_replica_details.py index 0e424da810..c2d976f9b6 100644 --- a/src/oci/core/models/volume_group_replica_details.py +++ b/src/oci/core/models/volume_group_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_group_replica_info.py b/src/oci/core/models/volume_group_replica_info.py index 743cb954af..ea8277cc78 100644 --- a/src/oci/core/models/volume_group_replica_info.py +++ b/src/oci/core/models/volume_group_replica_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_group_source_details.py b/src/oci/core/models/volume_group_source_details.py index b250f1e700..f7b8d265eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e26c48bacd..9bce5af988 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 206302b7a6..c83d9dc0dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_group_source_from_volume_group_replica_details.py b/src/oci/core/models/volume_group_source_from_volume_group_replica_details.py index c057c7bdd9..3c97e6879a 100644 --- a/src/oci/core/models/volume_group_source_from_volume_group_replica_details.py +++ b/src/oci/core/models/volume_group_source_from_volume_group_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a1e8c5b1bb..08054a25f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_kms_key.py b/src/oci/core/models/volume_kms_key.py index 73739c8129..2c537d32f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_source_details.py b/src/oci/core/models/volume_source_details.py index be2f1cee7a..1ebcfdabd9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 eb2cd98207..8fdca88781 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/volume_source_from_volume_backup_delta_details.py b/src/oci/core/models/volume_source_from_volume_backup_delta_details.py index d70cd439be..4cb334d4f7 100644 --- a/src/oci/core/models/volume_source_from_volume_backup_delta_details.py +++ b/src/oci/core/models/volume_source_from_volume_backup_delta_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a0b3a873fa..480c24998a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 07b8bf23be..760884ba1a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/vtap.py b/src/oci/core/models/vtap.py index 3ac8c2ea0f..42d488b1ae 100644 --- a/src/oci/core/models/vtap.py +++ b/src/oci/core/models/vtap.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/models/vtap_capture_filter_rule_details.py b/src/oci/core/models/vtap_capture_filter_rule_details.py index 2a2e80cbf8..f403a72e27 100644 --- a/src/oci/core/models/vtap_capture_filter_rule_details.py +++ b/src/oci/core/models/vtap_capture_filter_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/virtual_network_client.py b/src/oci/core/virtual_network_client.py index c313815574..eec1234691 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/core/virtual_network_client_composite_operations.py b/src/oci/core/virtual_network_client_composite_operations.py index 0758f7ab1d..87a7cf790e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/dashboard_service/__init__.py b/src/oci/dashboard_service/__init__.py index cf2d396c6d..89a15e354b 100644 --- a/src/oci/dashboard_service/__init__.py +++ b/src/oci/dashboard_service/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/dashboard_client.py b/src/oci/dashboard_service/dashboard_client.py index eeeaa310d8..bf61ce2fda 100644 --- a/src/oci/dashboard_service/dashboard_client.py +++ b/src/oci/dashboard_service/dashboard_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/dashboard_client_composite_operations.py b/src/oci/dashboard_service/dashboard_client_composite_operations.py index 09f2886d4d..ffb3ec1a9b 100644 --- a/src/oci/dashboard_service/dashboard_client_composite_operations.py +++ b/src/oci/dashboard_service/dashboard_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/dashboard_group_client.py b/src/oci/dashboard_service/dashboard_group_client.py index 906d1671cc..7051679872 100644 --- a/src/oci/dashboard_service/dashboard_group_client.py +++ b/src/oci/dashboard_service/dashboard_group_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/dashboard_group_client_composite_operations.py b/src/oci/dashboard_service/dashboard_group_client_composite_operations.py index 5d14a205b6..e068ac74b1 100644 --- a/src/oci/dashboard_service/dashboard_group_client_composite_operations.py +++ b/src/oci/dashboard_service/dashboard_group_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/__init__.py b/src/oci/dashboard_service/models/__init__.py index 4868e40eca..fdff575244 100644 --- a/src/oci/dashboard_service/models/__init__.py +++ b/src/oci/dashboard_service/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/change_dashboard_group_compartment_details.py b/src/oci/dashboard_service/models/change_dashboard_group_compartment_details.py index 22abc98558..02618eb855 100644 --- a/src/oci/dashboard_service/models/change_dashboard_group_compartment_details.py +++ b/src/oci/dashboard_service/models/change_dashboard_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/change_dashboard_group_details.py b/src/oci/dashboard_service/models/change_dashboard_group_details.py index e8a42db078..22a02f9045 100644 --- a/src/oci/dashboard_service/models/change_dashboard_group_details.py +++ b/src/oci/dashboard_service/models/change_dashboard_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/create_dashboard_details.py b/src/oci/dashboard_service/models/create_dashboard_details.py index aef194621a..106608bfc7 100644 --- a/src/oci/dashboard_service/models/create_dashboard_details.py +++ b/src/oci/dashboard_service/models/create_dashboard_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/create_dashboard_group_details.py b/src/oci/dashboard_service/models/create_dashboard_group_details.py index ef616dec56..35fabb2b22 100644 --- a/src/oci/dashboard_service/models/create_dashboard_group_details.py +++ b/src/oci/dashboard_service/models/create_dashboard_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/create_v1_dashboard_details.py b/src/oci/dashboard_service/models/create_v1_dashboard_details.py index e1db178c69..497fe88581 100644 --- a/src/oci/dashboard_service/models/create_v1_dashboard_details.py +++ b/src/oci/dashboard_service/models/create_v1_dashboard_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/dashboard.py b/src/oci/dashboard_service/models/dashboard.py index e1817d1951..ca69e16f2a 100644 --- a/src/oci/dashboard_service/models/dashboard.py +++ b/src/oci/dashboard_service/models/dashboard.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/dashboard_collection.py b/src/oci/dashboard_service/models/dashboard_collection.py index fd2007a744..fc163b69a3 100644 --- a/src/oci/dashboard_service/models/dashboard_collection.py +++ b/src/oci/dashboard_service/models/dashboard_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/dashboard_group.py b/src/oci/dashboard_service/models/dashboard_group.py index 0e63646582..07af719358 100644 --- a/src/oci/dashboard_service/models/dashboard_group.py +++ b/src/oci/dashboard_service/models/dashboard_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/dashboard_group_collection.py b/src/oci/dashboard_service/models/dashboard_group_collection.py index 11f896ed9f..04981be67f 100644 --- a/src/oci/dashboard_service/models/dashboard_group_collection.py +++ b/src/oci/dashboard_service/models/dashboard_group_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/dashboard_group_summary.py b/src/oci/dashboard_service/models/dashboard_group_summary.py index cada5a97cd..73de871e17 100644 --- a/src/oci/dashboard_service/models/dashboard_group_summary.py +++ b/src/oci/dashboard_service/models/dashboard_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/dashboard_summary.py b/src/oci/dashboard_service/models/dashboard_summary.py index 4a8ccc485d..53c043475a 100644 --- a/src/oci/dashboard_service/models/dashboard_summary.py +++ b/src/oci/dashboard_service/models/dashboard_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/update_dashboard_details.py b/src/oci/dashboard_service/models/update_dashboard_details.py index 8e529f7a5a..9160d9e171 100644 --- a/src/oci/dashboard_service/models/update_dashboard_details.py +++ b/src/oci/dashboard_service/models/update_dashboard_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/update_dashboard_group_details.py b/src/oci/dashboard_service/models/update_dashboard_group_details.py index 58393fff1e..a11d67ac99 100644 --- a/src/oci/dashboard_service/models/update_dashboard_group_details.py +++ b/src/oci/dashboard_service/models/update_dashboard_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/update_v1_dashboard_details.py b/src/oci/dashboard_service/models/update_v1_dashboard_details.py index 482927d324..d2cd1f4441 100644 --- a/src/oci/dashboard_service/models/update_v1_dashboard_details.py +++ b/src/oci/dashboard_service/models/update_v1_dashboard_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/dashboard_service/models/v1_dashboard.py b/src/oci/dashboard_service/models/v1_dashboard.py index 4c8cb1f544..19bd824aac 100644 --- a/src/oci/dashboard_service/models/v1_dashboard.py +++ b/src/oci/dashboard_service/models/v1_dashboard.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210731 diff --git a/src/oci/data_catalog/__init__.py b/src/oci/data_catalog/__init__.py index 294f9be6ce..3f12417098 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/data_catalog_client.py b/src/oci/data_catalog/data_catalog_client.py index e212fe4315..988e12efd5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 10d73815f4..c8c83124c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/__init__.py b/src/oci/data_catalog/models/__init__.py index e379669f25..96d90b0643 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/add_resource_lock_details.py b/src/oci/data_catalog/models/add_resource_lock_details.py index f0a2b7c155..4e1329d131 100644 --- a/src/oci/data_catalog/models/add_resource_lock_details.py +++ b/src/oci/data_catalog/models/add_resource_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/asynchronous_export_data_asset_details.py b/src/oci/data_catalog/models/asynchronous_export_data_asset_details.py index 4313d17a79..4276bc8ff7 100644 --- a/src/oci/data_catalog/models/asynchronous_export_data_asset_details.py +++ b/src/oci/data_catalog/models/asynchronous_export_data_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/asynchronous_export_data_asset_result.py b/src/oci/data_catalog/models/asynchronous_export_data_asset_result.py index 95c49cf8ef..5248c1792b 100644 --- a/src/oci/data_catalog/models/asynchronous_export_data_asset_result.py +++ b/src/oci/data_catalog/models/asynchronous_export_data_asset_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/asynchronous_export_glossary_details.py b/src/oci/data_catalog/models/asynchronous_export_glossary_details.py index 8d7d6b133f..c71b280657 100644 --- a/src/oci/data_catalog/models/asynchronous_export_glossary_details.py +++ b/src/oci/data_catalog/models/asynchronous_export_glossary_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/asynchronous_export_glossary_result.py b/src/oci/data_catalog/models/asynchronous_export_glossary_result.py index 8021142641..4d0bd9ca20 100644 --- a/src/oci/data_catalog/models/asynchronous_export_glossary_result.py +++ b/src/oci/data_catalog/models/asynchronous_export_glossary_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/asynchronous_export_request_details.py b/src/oci/data_catalog/models/asynchronous_export_request_details.py index 878dd1a7a3..fada31072d 100644 --- a/src/oci/data_catalog/models/asynchronous_export_request_details.py +++ b/src/oci/data_catalog/models/asynchronous_export_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/asynchronous_export_result.py b/src/oci/data_catalog/models/asynchronous_export_result.py index 152e29f833..2b2cfd3ae5 100644 --- a/src/oci/data_catalog/models/asynchronous_export_result.py +++ b/src/oci/data_catalog/models/asynchronous_export_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 469e46dd3f..0a3d4995b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/attribute.py b/src/oci/data_catalog/models/attribute.py index a14dabc6a3..8ccd84ec08 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/attribute_collection.py b/src/oci/data_catalog/models/attribute_collection.py index fba305e260..dd1cb47eba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/attribute_summary.py b/src/oci/data_catalog/models/attribute_summary.py index 63fe1d5c45..2209604161 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/attribute_tag.py b/src/oci/data_catalog/models/attribute_tag.py index 7db887f92b..94d6a43fce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/attribute_tag_collection.py b/src/oci/data_catalog/models/attribute_tag_collection.py index 855a11754a..fca2ad84c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/attribute_tag_summary.py b/src/oci/data_catalog/models/attribute_tag_summary.py index f2500f2ef4..a56cf6b7b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/base_permissions_summary.py b/src/oci/data_catalog/models/base_permissions_summary.py index 99d41f1423..2c6d737490 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/base_tag.py b/src/oci/data_catalog/models/base_tag.py index ecc3346e0c..e91028192f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/base_tag_summary.py b/src/oci/data_catalog/models/base_tag_summary.py index 5eb9066803..2007449048 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/catalog.py b/src/oci/data_catalog/models/catalog.py index 344d79ea2b..abaa00595a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/catalog_permissions_summary.py b/src/oci/data_catalog/models/catalog_permissions_summary.py index 4c2a0b3995..2374257e31 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/catalog_private_endpoint.py b/src/oci/data_catalog/models/catalog_private_endpoint.py index 1c7a6924cc..bcd3287a6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 9de4544edc..816f9fd21f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/catalog_summary.py b/src/oci/data_catalog/models/catalog_summary.py index b9f0844a39..8d000f2f5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 031f8ae65a..2913295663 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 373a3547cd..cc968724ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 62c1c71981..f70cf04db3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/connection.py b/src/oci/data_catalog/models/connection.py index c0b089a6c3..3e36b04908 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/connection_alias_summary.py b/src/oci/data_catalog/models/connection_alias_summary.py index dd98541b44..5823e10b2b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/connection_collection.py b/src/oci/data_catalog/models/connection_collection.py index fc9e4184b0..5c7cb58a0b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/connection_summary.py b/src/oci/data_catalog/models/connection_summary.py index 5767140a51..81d172ecc4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_attribute_details.py b/src/oci/data_catalog/models/create_attribute_details.py index a5aa55f5a9..7f850edf1a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_catalog_details.py b/src/oci/data_catalog/models/create_catalog_details.py index 57ed703278..bb6066c428 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 b6519f6bdd..96c8575130 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_connection_details.py b/src/oci/data_catalog/models/create_connection_details.py index a9ce647007..fde03b3593 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 8c41467201..f0203116f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 4dd0dc9056..9aec0de82e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_entity_details.py b/src/oci/data_catalog/models/create_entity_details.py index d843718e0f..acf816488e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_folder_details.py b/src/oci/data_catalog/models/create_folder_details.py index 79217ceef1..3bd82dd8a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_glossary_details.py b/src/oci/data_catalog/models/create_glossary_details.py index 655a9d415b..8c91e272d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 75f8abb1a6..23656fda75 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_job_details.py b/src/oci/data_catalog/models/create_job_details.py index cfb3bb0ec0..3dc14de300 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 c67a5efdad..a459adbfb4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_metastore_details.py b/src/oci/data_catalog/models/create_metastore_details.py index bb350985dc..27b4a7e68f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_namespace_details.py b/src/oci/data_catalog/models/create_namespace_details.py index 8779b636cb..fdbfc078f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_pattern_details.py b/src/oci/data_catalog/models/create_pattern_details.py index 5ab8380430..ef71fc14f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_tag_details.py b/src/oci/data_catalog/models/create_tag_details.py index 73d9d45a49..8692110e99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/create_term_details.py b/src/oci/data_catalog/models/create_term_details.py index c47e4a0140..ea907e8252 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 b853305431..f707b88599 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/custom_property.py b/src/oci/data_catalog/models/custom_property.py index 34c0e87acc..5424064a9d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/custom_property_collection.py b/src/oci/data_catalog/models/custom_property_collection.py index 61e142fe2f..51c31f6994 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 e511d516de..7e99877311 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 3f2452368c..095071d824 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/custom_property_summary.py b/src/oci/data_catalog/models/custom_property_summary.py index dc262eca60..cb2204ed77 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 e2ed1d417f..9c31cf0a1b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/data_asset.py b/src/oci/data_catalog/models/data_asset.py index 3d0ec30206..b4239b085f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/data_asset_collection.py b/src/oci/data_catalog/models/data_asset_collection.py index 0359d91b1e..c5ac53304e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 b590dcdb7f..0e8ec8bbaa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 818f9cc00f..7222aff5f1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/data_asset_summary.py b/src/oci/data_catalog/models/data_asset_summary.py index 35a849f701..86c2da5b1a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/data_asset_tag.py b/src/oci/data_catalog/models/data_asset_tag.py index b6642612eb..27940d68b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 11d086b13d..4fb7d7c59b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 d027504d80..9b42cd61f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 30c98444b8..155c958313 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/derived_logical_entities.py b/src/oci/data_catalog/models/derived_logical_entities.py index d75aac0df4..0d952723a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 c392284ee4..bf02591ca4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/entity.py b/src/oci/data_catalog/models/entity.py index bb1f3b1db3..2f6ffe0022 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/entity_collection.py b/src/oci/data_catalog/models/entity_collection.py index d199d45baf..86bb364a4d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/entity_lineage.py b/src/oci/data_catalog/models/entity_lineage.py index 343b804f8b..71455640d9 100644 --- a/src/oci/data_catalog/models/entity_lineage.py +++ b/src/oci/data_catalog/models/entity_lineage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/entity_summary.py b/src/oci/data_catalog/models/entity_summary.py index 401a1009a7..0422cf9bda 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/entity_tag.py b/src/oci/data_catalog/models/entity_tag.py index 022f193cb1..af89395946 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/entity_tag_collection.py b/src/oci/data_catalog/models/entity_tag_collection.py index 3c34259429..85ee5ab033 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/entity_tag_summary.py b/src/oci/data_catalog/models/entity_tag_summary.py index 0efc5cded9..457e6cabe5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/event_config.py b/src/oci/data_catalog/models/event_config.py index b4fccd20b8..b7491d6d3b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 9f436532c5..71d550798e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/faceted_search_aggregation.py b/src/oci/data_catalog/models/faceted_search_aggregation.py index 37dfd86a48..9d977b696c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 e23841a2de..6be52ef914 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 d5ff0ca438..94afed6161 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 5103e1dcc0..b9b9c53dc5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 33e0c24bba..991b3f8524 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 911760d5f0..59d2ebdd7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/fetch_entity_lineage_details.py b/src/oci/data_catalog/models/fetch_entity_lineage_details.py index 4bc2b4c2bf..de7c29201f 100644 --- a/src/oci/data_catalog/models/fetch_entity_lineage_details.py +++ b/src/oci/data_catalog/models/fetch_entity_lineage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/folder.py b/src/oci/data_catalog/models/folder.py index 83b9a53d0e..ce38793166 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/folder_collection.py b/src/oci/data_catalog/models/folder_collection.py index 9d8b45df8f..7bdf293cdd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/folder_summary.py b/src/oci/data_catalog/models/folder_summary.py index 9237364e8b..228a8195bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/folder_tag.py b/src/oci/data_catalog/models/folder_tag.py index 9404f27b86..0c40a4c4ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/folder_tag_collection.py b/src/oci/data_catalog/models/folder_tag_collection.py index 21738b075d..03fbdb368e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/folder_tag_summary.py b/src/oci/data_catalog/models/folder_tag_summary.py index 90b9d5d738..2895896a29 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/glossary.py b/src/oci/data_catalog/models/glossary.py index 3c92db85da..e4749b09d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/glossary_collection.py b/src/oci/data_catalog/models/glossary_collection.py index c75a6b1d1f..e1e2c5c24e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/glossary_permissions_summary.py b/src/oci/data_catalog/models/glossary_permissions_summary.py index cf6b9a3ee2..75b29abb63 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/glossary_summary.py b/src/oci/data_catalog/models/glossary_summary.py index 4a086f39bf..dd6147c819 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/glossary_tree_element.py b/src/oci/data_catalog/models/glossary_tree_element.py index 3bf375098d..e9cdf35419 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/import_connection_details.py b/src/oci/data_catalog/models/import_connection_details.py index 27c25714eb..a179efe330 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 b8869bbab0..1c2b207fc9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 8f01d30481..0723f74853 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/import_glossary_details.py b/src/oci/data_catalog/models/import_glossary_details.py index 8790dd9ac6..35b424377c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/import_lineage_details.py b/src/oci/data_catalog/models/import_lineage_details.py index 02ef331b9d..c41ebca8b7 100644 --- a/src/oci/data_catalog/models/import_lineage_details.py +++ b/src/oci/data_catalog/models/import_lineage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/import_lineage_job_result.py b/src/oci/data_catalog/models/import_lineage_job_result.py index 5d752d1599..78476bc0f0 100644 --- a/src/oci/data_catalog/models/import_lineage_job_result.py +++ b/src/oci/data_catalog/models/import_lineage_job_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job.py b/src/oci/data_catalog/models/job.py index e5d92b185a..43ce25b9cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_collection.py b/src/oci/data_catalog/models/job_collection.py index 10d8e34e2a..bf62685b41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_definition.py b/src/oci/data_catalog/models/job_definition.py index 243fffd1a7..57e8dfb959 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_definition_collection.py b/src/oci/data_catalog/models/job_definition_collection.py index 190d5c146f..024bb165c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 c6a8d613af..b7a537467b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_definition_scope.py b/src/oci/data_catalog/models/job_definition_scope.py index 963cb0fd72..eadc869871 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_definition_summary.py b/src/oci/data_catalog/models/job_definition_summary.py index a041544895..57c240a9f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_execution.py b/src/oci/data_catalog/models/job_execution.py index 090615c7ae..436e7a33d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_execution_collection.py b/src/oci/data_catalog/models/job_execution_collection.py index a4ad7d5396..dd8a0d44bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_execution_summary.py b/src/oci/data_catalog/models/job_execution_summary.py index 2a8b4affe0..e8e6d9cad7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_log.py b/src/oci/data_catalog/models/job_log.py index 206c01877f..4034390f0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_log_collection.py b/src/oci/data_catalog/models/job_log_collection.py index bfc6814d3b..f6ecc556f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_log_summary.py b/src/oci/data_catalog/models/job_log_summary.py index 66862a456d..5b49306790 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_metric.py b/src/oci/data_catalog/models/job_metric.py index 57794ceecd..a4e38ad2de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_metric_collection.py b/src/oci/data_catalog/models/job_metric_collection.py index 4dc6a63f39..9753f685ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_metric_summary.py b/src/oci/data_catalog/models/job_metric_summary.py index 1c240cce0a..173ada8be8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/job_summary.py b/src/oci/data_catalog/models/job_summary.py index dd49005612..3f4c3e60d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/lineage_object.py b/src/oci/data_catalog/models/lineage_object.py index 689e6b1360..ffb8e70338 100644 --- a/src/oci/data_catalog/models/lineage_object.py +++ b/src/oci/data_catalog/models/lineage_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/lineage_relationship.py b/src/oci/data_catalog/models/lineage_relationship.py index e9902e6b19..8233cc49a3 100644 --- a/src/oci/data_catalog/models/lineage_relationship.py +++ b/src/oci/data_catalog/models/lineage_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/metastore.py b/src/oci/data_catalog/models/metastore.py index 6b603dcbff..ef3cab49af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/metastore_summary.py b/src/oci/data_catalog/models/metastore_summary.py index 431e5f94ae..bf80c0dde0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/namespace.py b/src/oci/data_catalog/models/namespace.py index ac050e9c57..b7519c940f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/namespace_collection.py b/src/oci/data_catalog/models/namespace_collection.py index 6e0c96dccf..6f708eb889 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/namespace_summary.py b/src/oci/data_catalog/models/namespace_summary.py index 89a71e6120..04990b1eb1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/object_lineage.py b/src/oci/data_catalog/models/object_lineage.py index e4ecbaf5ff..2209c07686 100644 --- a/src/oci/data_catalog/models/object_lineage.py +++ b/src/oci/data_catalog/models/object_lineage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/object_lineage_request_details.py b/src/oci/data_catalog/models/object_lineage_request_details.py index 7aa6625752..8cf5dec608 100644 --- a/src/oci/data_catalog/models/object_lineage_request_details.py +++ b/src/oci/data_catalog/models/object_lineage_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/object_relationship.py b/src/oci/data_catalog/models/object_relationship.py index 0a761fcef1..0399f844bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/object_storage_object_reference.py b/src/oci/data_catalog/models/object_storage_object_reference.py index da6b60ac2b..1a13a68a9e 100644 --- a/src/oci/data_catalog/models/object_storage_object_reference.py +++ b/src/oci/data_catalog/models/object_storage_object_reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/parse_connection_details.py b/src/oci/data_catalog/models/parse_connection_details.py index 5dbc85b1e3..4567faf004 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/pattern.py b/src/oci/data_catalog/models/pattern.py index 57d3561a43..0ead1efabf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/pattern_collection.py b/src/oci/data_catalog/models/pattern_collection.py index afe0a28e58..b1b5cb30f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/pattern_summary.py b/src/oci/data_catalog/models/pattern_summary.py index ab0f5d4fab..28ac5a85b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/process_recommendation_details.py b/src/oci/data_catalog/models/process_recommendation_details.py index 3f22f8a786..3a8727ff1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/property_definition.py b/src/oci/data_catalog/models/property_definition.py index cdf67011d5..6d84f1b513 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/recommendation_collection.py b/src/oci/data_catalog/models/recommendation_collection.py index 107a5274ab..035b632283 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/recommendation_details.py b/src/oci/data_catalog/models/recommendation_details.py index 306c2e8a1b..51c5aa8d31 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/remove_resource_lock_details.py b/src/oci/data_catalog/models/remove_resource_lock_details.py index 06d2ad90d6..5bd7c68b91 100644 --- a/src/oci/data_catalog/models/remove_resource_lock_details.py +++ b/src/oci/data_catalog/models/remove_resource_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/resource_lock.py b/src/oci/data_catalog/models/resource_lock.py index 1a722c360d..4146cc8ee5 100644 --- a/src/oci/data_catalog/models/resource_lock.py +++ b/src/oci/data_catalog/models/resource_lock.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/rule_attribute.py b/src/oci/data_catalog/models/rule_attribute.py index e89584f7e2..2768e78f34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/rule_collection.py b/src/oci/data_catalog/models/rule_collection.py index 59168c9e08..a28f3e1362 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/rule_summary.py b/src/oci/data_catalog/models/rule_summary.py index db13bb4ef8..204937c99c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/search_criteria.py b/src/oci/data_catalog/models/search_criteria.py index 9fb7d99761..e0ec864106 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/search_result.py b/src/oci/data_catalog/models/search_result.py index a5d63eb621..08a0b2569a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/search_result_collection.py b/src/oci/data_catalog/models/search_result_collection.py index 86a10cbdf5..789f850a1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/search_tag_summary.py b/src/oci/data_catalog/models/search_tag_summary.py index ae7ee47c40..a920b56921 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/search_term_summary.py b/src/oci/data_catalog/models/search_term_summary.py index eb195b4af1..4fafcf4141 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/suggest_list_item.py b/src/oci/data_catalog/models/suggest_list_item.py index a41c7796bf..c916215747 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/suggest_results.py b/src/oci/data_catalog/models/suggest_results.py index 7d820ef45d..edd6601e10 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/term.py b/src/oci/data_catalog/models/term.py index 42cad200d1..1c1e671e20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/term_associated_object.py b/src/oci/data_catalog/models/term_associated_object.py index 60e39efa9c..781888b53a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/term_collection.py b/src/oci/data_catalog/models/term_collection.py index 1c48d093c5..4573098ee0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/term_relationship.py b/src/oci/data_catalog/models/term_relationship.py index ae192aa038..7880b74d17 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/term_relationship_collection.py b/src/oci/data_catalog/models/term_relationship_collection.py index 16ec903d8f..50fa699078 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/term_relationship_summary.py b/src/oci/data_catalog/models/term_relationship_summary.py index be364ee5c1..360eea25ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/term_summary.py b/src/oci/data_catalog/models/term_summary.py index bc6cead902..596bd280a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/type.py b/src/oci/data_catalog/models/type.py index 605276404e..1276ac5c5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/type_collection.py b/src/oci/data_catalog/models/type_collection.py index e74486d4fd..9f2a52a7a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 5a9fe7069e..7cbad467c0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/type_summary.py b/src/oci/data_catalog/models/type_summary.py index 52a1f51ce7..6439cd0a17 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_attribute_details.py b/src/oci/data_catalog/models/update_attribute_details.py index 9651b6b0ac..ab92425d03 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_catalog_details.py b/src/oci/data_catalog/models/update_catalog_details.py index adf30eaa10..644eca04eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 1430f76c3a..f27cc5221b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_connection_details.py b/src/oci/data_catalog/models/update_connection_details.py index 87522d31d7..f0b7ed62a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 acd30aa38c..263a13a966 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 fb1229726b..b34c957a3f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_entity_details.py b/src/oci/data_catalog/models/update_entity_details.py index 4f1df8f0ef..2998237dad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_folder_details.py b/src/oci/data_catalog/models/update_folder_details.py index f4112635c0..339c396165 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_glossary_details.py b/src/oci/data_catalog/models/update_glossary_details.py index 9e83694af7..5165b29f27 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 57adad4109..b503d00edb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_job_details.py b/src/oci/data_catalog/models/update_job_details.py index ff87342a92..871fed4847 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_metastore_details.py b/src/oci/data_catalog/models/update_metastore_details.py index 0eb76ea4ce..54583354f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_namespace_details.py b/src/oci/data_catalog/models/update_namespace_details.py index f2bdbf1f40..a6c5f6ad06 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_pattern_details.py b/src/oci/data_catalog/models/update_pattern_details.py index c73f3ba55b..5cba4c8f8b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/update_term_details.py b/src/oci/data_catalog/models/update_term_details.py index cc11954f61..83bfe5aa2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 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 882f92c226..d2b85ea67f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/upload_credentials_details.py b/src/oci/data_catalog/models/upload_credentials_details.py index 3afaea0375..d9b2c17e9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/validate_connection_details.py b/src/oci/data_catalog/models/validate_connection_details.py index af3c4aa4e0..3cb6ccfd73 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/validate_connection_result.py b/src/oci/data_catalog/models/validate_connection_result.py index 2072c992ac..93bee4b413 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/validate_pattern_details.py b/src/oci/data_catalog/models/validate_pattern_details.py index 0c29d6d2ee..67d6d16482 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/validate_pattern_result.py b/src/oci/data_catalog/models/validate_pattern_result.py index 460c466d1b..c82647f6e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/work_request.py b/src/oci/data_catalog/models/work_request.py index 23957c43de..c8fc83ae4b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/work_request_error.py b/src/oci/data_catalog/models/work_request_error.py index db663700f1..b3eef13cda 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/work_request_log.py b/src/oci/data_catalog/models/work_request_log.py index 0047600bd2..7378e58d12 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_catalog/models/work_request_resource.py b/src/oci/data_catalog/models/work_request_resource.py index fcc9d3123e..308928c34f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190325 diff --git a/src/oci/data_flow/__init__.py b/src/oci/data_flow/__init__.py index fd1bfa8219..af0b53cc95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/data_flow_client.py b/src/oci/data_flow/data_flow_client.py index 73c3d8260a..bf32ce4e03 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 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 9ae4d1111c..091813c175 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/__init__.py b/src/oci/data_flow/models/__init__.py index 525c5755a5..e515bdfbd4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/application.py b/src/oci/data_flow/models/application.py index 1eae557a8b..ed13c55920 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/application_log_config.py b/src/oci/data_flow/models/application_log_config.py index 290f74ab7c..3e57ba645e 100644 --- a/src/oci/data_flow/models/application_log_config.py +++ b/src/oci/data_flow/models/application_log_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/application_parameter.py b/src/oci/data_flow/models/application_parameter.py index 6f104f1031..bc90ebf214 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/application_summary.py b/src/oci/data_flow/models/application_summary.py index 86f687b3f9..78914d6c33 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 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 0ff56a240c..207e6098e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/change_pool_compartment_details.py b/src/oci/data_flow/models/change_pool_compartment_details.py index f0dd50f1b4..a63a8f8041 100644 --- a/src/oci/data_flow/models/change_pool_compartment_details.py +++ b/src/oci/data_flow/models/change_pool_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 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 9cc72658e3..cf9312ab3f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 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 02206df066..ace7e68a84 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/change_sql_endpoint_compartment_details.py b/src/oci/data_flow/models/change_sql_endpoint_compartment_details.py index 38d57c96d6..54e318e909 100644 --- a/src/oci/data_flow/models/change_sql_endpoint_compartment_details.py +++ b/src/oci/data_flow/models/change_sql_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/create_application_details.py b/src/oci/data_flow/models/create_application_details.py index bf7646d3dc..22ade315a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/create_pool_details.py b/src/oci/data_flow/models/create_pool_details.py index f0dd5f88c8..a10ecd29c7 100644 --- a/src/oci/data_flow/models/create_pool_details.py +++ b/src/oci/data_flow/models/create_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 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 74919f58f1..63e095d18b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/create_run_details.py b/src/oci/data_flow/models/create_run_details.py index f9c43ff22a..ba7aecca07 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/create_sql_endpoint_details.py b/src/oci/data_flow/models/create_sql_endpoint_details.py index 7f6623f68c..e6b6ed78c9 100644 --- a/src/oci/data_flow/models/create_sql_endpoint_details.py +++ b/src/oci/data_flow/models/create_sql_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/create_statement_details.py b/src/oci/data_flow/models/create_statement_details.py index 8dba32894e..8770947dbe 100644 --- a/src/oci/data_flow/models/create_statement_details.py +++ b/src/oci/data_flow/models/create_statement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/image_png_statement_output_data.py b/src/oci/data_flow/models/image_png_statement_output_data.py index 2cb118b52f..8d0a328648 100644 --- a/src/oci/data_flow/models/image_png_statement_output_data.py +++ b/src/oci/data_flow/models/image_png_statement_output_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/node_count.py b/src/oci/data_flow/models/node_count.py index 44bb8df203..9dfa1261b1 100644 --- a/src/oci/data_flow/models/node_count.py +++ b/src/oci/data_flow/models/node_count.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/pool.py b/src/oci/data_flow/models/pool.py index 92c923b1ca..8866207af9 100644 --- a/src/oci/data_flow/models/pool.py +++ b/src/oci/data_flow/models/pool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/pool_collection.py b/src/oci/data_flow/models/pool_collection.py index 4ac1f14c75..e2ee1e3097 100644 --- a/src/oci/data_flow/models/pool_collection.py +++ b/src/oci/data_flow/models/pool_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/pool_config.py b/src/oci/data_flow/models/pool_config.py index 8e1109f158..6474e7bffb 100644 --- a/src/oci/data_flow/models/pool_config.py +++ b/src/oci/data_flow/models/pool_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/pool_metrics.py b/src/oci/data_flow/models/pool_metrics.py index dbec70b192..c381ed70ca 100644 --- a/src/oci/data_flow/models/pool_metrics.py +++ b/src/oci/data_flow/models/pool_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/pool_schedule.py b/src/oci/data_flow/models/pool_schedule.py index eec694f67c..9dd13c6fe8 100644 --- a/src/oci/data_flow/models/pool_schedule.py +++ b/src/oci/data_flow/models/pool_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/pool_summary.py b/src/oci/data_flow/models/pool_summary.py index 66a7860f44..07e16b457e 100644 --- a/src/oci/data_flow/models/pool_summary.py +++ b/src/oci/data_flow/models/pool_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/private_endpoint.py b/src/oci/data_flow/models/private_endpoint.py index eb10a36fe9..d547636096 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/private_endpoint_collection.py b/src/oci/data_flow/models/private_endpoint_collection.py index ba5203f728..e6459115ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/private_endpoint_summary.py b/src/oci/data_flow/models/private_endpoint_summary.py index 19ae158295..67d3fe547e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/run.py b/src/oci/data_flow/models/run.py index cb2bc0b978..b7b78a39b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/run_log_summary.py b/src/oci/data_flow/models/run_log_summary.py index 7e8a278f04..c9a7208c65 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/run_summary.py b/src/oci/data_flow/models/run_summary.py index f44191c32d..257deec24f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/scan.py b/src/oci/data_flow/models/scan.py index 4b48e4bcb9..0f908bf170 100644 --- a/src/oci/data_flow/models/scan.py +++ b/src/oci/data_flow/models/scan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/secure_access_control_rule.py b/src/oci/data_flow/models/secure_access_control_rule.py index 61a444dfa2..c7d421853c 100644 --- a/src/oci/data_flow/models/secure_access_control_rule.py +++ b/src/oci/data_flow/models/secure_access_control_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/shape_config.py b/src/oci/data_flow/models/shape_config.py index f46557a209..db0945ed5e 100644 --- a/src/oci/data_flow/models/shape_config.py +++ b/src/oci/data_flow/models/shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/sql_endpoint.py b/src/oci/data_flow/models/sql_endpoint.py index 1d481f17d0..6b7b0968ec 100644 --- a/src/oci/data_flow/models/sql_endpoint.py +++ b/src/oci/data_flow/models/sql_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/sql_endpoint_collection.py b/src/oci/data_flow/models/sql_endpoint_collection.py index 1c581a1909..276b5cd939 100644 --- a/src/oci/data_flow/models/sql_endpoint_collection.py +++ b/src/oci/data_flow/models/sql_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/sql_endpoint_network_configuration.py b/src/oci/data_flow/models/sql_endpoint_network_configuration.py index 4ed26c2497..0c71a0c4c1 100644 --- a/src/oci/data_flow/models/sql_endpoint_network_configuration.py +++ b/src/oci/data_flow/models/sql_endpoint_network_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/sql_endpoint_secure_access_config.py b/src/oci/data_flow/models/sql_endpoint_secure_access_config.py index 2531c8a6e2..fb2da77e87 100644 --- a/src/oci/data_flow/models/sql_endpoint_secure_access_config.py +++ b/src/oci/data_flow/models/sql_endpoint_secure_access_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/sql_endpoint_summary.py b/src/oci/data_flow/models/sql_endpoint_summary.py index 4681960441..63dc63294f 100644 --- a/src/oci/data_flow/models/sql_endpoint_summary.py +++ b/src/oci/data_flow/models/sql_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/sql_endpoint_vcn_config.py b/src/oci/data_flow/models/sql_endpoint_vcn_config.py index 666b5f6fd8..73c05a1a64 100644 --- a/src/oci/data_flow/models/sql_endpoint_vcn_config.py +++ b/src/oci/data_flow/models/sql_endpoint_vcn_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/statement.py b/src/oci/data_flow/models/statement.py index 975c444414..af58cc3755 100644 --- a/src/oci/data_flow/models/statement.py +++ b/src/oci/data_flow/models/statement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/statement_collection.py b/src/oci/data_flow/models/statement_collection.py index 0f856343af..322e7024b3 100644 --- a/src/oci/data_flow/models/statement_collection.py +++ b/src/oci/data_flow/models/statement_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/statement_output.py b/src/oci/data_flow/models/statement_output.py index f882647f08..4a32fdb067 100644 --- a/src/oci/data_flow/models/statement_output.py +++ b/src/oci/data_flow/models/statement_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/statement_output_data.py b/src/oci/data_flow/models/statement_output_data.py index 5c6aeec156..97a048b02e 100644 --- a/src/oci/data_flow/models/statement_output_data.py +++ b/src/oci/data_flow/models/statement_output_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/statement_summary.py b/src/oci/data_flow/models/statement_summary.py index 74666545e4..bb5f806248 100644 --- a/src/oci/data_flow/models/statement_summary.py +++ b/src/oci/data_flow/models/statement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/text_html_statement_output_data.py b/src/oci/data_flow/models/text_html_statement_output_data.py index 7c9b7a99ea..a54b3a9f65 100644 --- a/src/oci/data_flow/models/text_html_statement_output_data.py +++ b/src/oci/data_flow/models/text_html_statement_output_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/text_plain_statement_output_data.py b/src/oci/data_flow/models/text_plain_statement_output_data.py index f8444aeb7a..c3dedd7330 100644 --- a/src/oci/data_flow/models/text_plain_statement_output_data.py +++ b/src/oci/data_flow/models/text_plain_statement_output_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/update_application_details.py b/src/oci/data_flow/models/update_application_details.py index 3fc97225ba..99fe585879 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/update_pool_details.py b/src/oci/data_flow/models/update_pool_details.py index 8da2f40a12..a794ca921a 100644 --- a/src/oci/data_flow/models/update_pool_details.py +++ b/src/oci/data_flow/models/update_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 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 5d89de988b..6893526078 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/update_run_details.py b/src/oci/data_flow/models/update_run_details.py index 7c4cd8ce36..2e425fdd23 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/update_sql_endpoint_details.py b/src/oci/data_flow/models/update_sql_endpoint_details.py index 5bcbb2570b..e9e7a80e32 100644 --- a/src/oci/data_flow/models/update_sql_endpoint_details.py +++ b/src/oci/data_flow/models/update_sql_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/work_request.py b/src/oci/data_flow/models/work_request.py index ade6bc9dad..ef13ef1eb8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/work_request_collection.py b/src/oci/data_flow/models/work_request_collection.py index ebc1166d61..e2e99ff812 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/work_request_error.py b/src/oci/data_flow/models/work_request_error.py index 22580f024d..c3171c3a99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 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 5bd653c60a..4c05dda3a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/work_request_log.py b/src/oci/data_flow/models/work_request_log.py index b5818e4f3a..5971d9c5e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 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 c9aa40a8f9..834f7a10ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/work_request_resource.py b/src/oci/data_flow/models/work_request_resource.py index 1188eaa3ae..dd6d9a5548 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_flow/models/work_request_summary.py b/src/oci/data_flow/models/work_request_summary.py index c95620979d..98fd173290 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200129 diff --git a/src/oci/data_integration/__init__.py b/src/oci/data_integration/__init__.py index 3aa8f4dd0e..877966c04e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/data_integration_client.py b/src/oci/data_integration/data_integration_client.py index 55c9dd8876..88153ecd7d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 848a34afee..804fb7a178 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/__init__.py b/src/oci/data_integration/models/__init__.py index 83c9c1adbe..bc0b375455 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/abstract_call_attribute.py b/src/oci/data_integration/models/abstract_call_attribute.py index 8287694463..33d2bc9951 100644 --- a/src/oci/data_integration/models/abstract_call_attribute.py +++ b/src/oci/data_integration/models/abstract_call_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 08934b4f15..5e4cb5d878 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/abstract_field.py b/src/oci/data_integration/models/abstract_field.py index b5fa5b5738..034fd134e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/abstract_format_attribute.py b/src/oci/data_integration/models/abstract_format_attribute.py index 33698dbb67..12334a62f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/abstract_formatted_text.py b/src/oci/data_integration/models/abstract_formatted_text.py index fee186b67d..02a70e5682 100644 --- a/src/oci/data_integration/models/abstract_formatted_text.py +++ b/src/oci/data_integration/models/abstract_formatted_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/abstract_frequency_details.py b/src/oci/data_integration/models/abstract_frequency_details.py index 1630a5902b..6daa140314 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/abstract_read_attribute.py b/src/oci/data_integration/models/abstract_read_attribute.py index 481ea88e8c..9003eecf6c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/abstract_write_attribute.py b/src/oci/data_integration/models/abstract_write_attribute.py index bbf35713c4..091d87bcb1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/aggregator.py b/src/oci/data_integration/models/aggregator.py index 76a6f2a958..85ec2d1c00 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/aggregator_summary.py b/src/oci/data_integration/models/aggregator_summary.py index b4e45a99c3..9210c686b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/application.py b/src/oci/data_integration/models/application.py index 5972e5f25f..0c9d047b58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/application_details.py b/src/oci/data_integration/models/application_details.py index dcab9f530c..a39c94eb75 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/application_summary.py b/src/oci/data_integration/models/application_summary.py index 3c68bbfedf..a3675fdcf9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/application_summary_collection.py b/src/oci/data_integration/models/application_summary_collection.py index 43616c934d..399ad0c7c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/array_type.py b/src/oci/data_integration/models/array_type.py index 1c201b5c75..af5e7d47c2 100644 --- a/src/oci/data_integration/models/array_type.py +++ b/src/oci/data_integration/models/array_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/auth_config.py b/src/oci/data_integration/models/auth_config.py index 9f01bc588b..49250e9ce9 100644 --- a/src/oci/data_integration/models/auth_config.py +++ b/src/oci/data_integration/models/auth_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/auth_details.py b/src/oci/data_integration/models/auth_details.py index 1fbbbb949d..6be074dd5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/avro_format_attribute.py b/src/oci/data_integration/models/avro_format_attribute.py index f0e67fd0d2..c532ddc51c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/base_type.py b/src/oci/data_integration/models/base_type.py index 22e9b55305..17270621eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/bicc_read_attributes.py b/src/oci/data_integration/models/bicc_read_attributes.py index 48d887acf3..d39842fa44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/bip_call_attribute.py b/src/oci/data_integration/models/bip_call_attribute.py index 04dd2788f2..92e429c225 100644 --- a/src/oci/data_integration/models/bip_call_attribute.py +++ b/src/oci/data_integration/models/bip_call_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/bip_read_attributes.py b/src/oci/data_integration/models/bip_read_attributes.py index fbcb546fa0..63168362d1 100644 --- a/src/oci/data_integration/models/bip_read_attributes.py +++ b/src/oci/data_integration/models/bip_read_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/bip_report_parameter_value.py b/src/oci/data_integration/models/bip_report_parameter_value.py index c7537371bf..297cbdca85 100644 --- a/src/oci/data_integration/models/bip_report_parameter_value.py +++ b/src/oci/data_integration/models/bip_report_parameter_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9e989ccf9f..8833d3860b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/change_compartment_details.py b/src/oci/data_integration/models/change_compartment_details.py index b975e3b697..a33fbfd012 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/change_dis_application_compartment_details.py b/src/oci/data_integration/models/change_dis_application_compartment_details.py index 6eaf520ab7..0b67590a7a 100644 --- a/src/oci/data_integration/models/change_dis_application_compartment_details.py +++ b/src/oci/data_integration/models/change_dis_application_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/child_reference.py b/src/oci/data_integration/models/child_reference.py index 58cf120654..f4ca8223f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/child_reference_detail.py b/src/oci/data_integration/models/child_reference_detail.py index a6c3a076b6..0c250f5f09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/composite_field_map.py b/src/oci/data_integration/models/composite_field_map.py index 225cc17445..6d8dfa007a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/composite_state.py b/src/oci/data_integration/models/composite_state.py index 37b4d722a1..5d2e967aed 100644 --- a/src/oci/data_integration/models/composite_state.py +++ b/src/oci/data_integration/models/composite_state.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/composite_type.py b/src/oci/data_integration/models/composite_type.py index e8c7d8643b..a424d1429a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/compression.py b/src/oci/data_integration/models/compression.py index 1c0cfe919d..92102725a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/conditional_composite_field_map.py b/src/oci/data_integration/models/conditional_composite_field_map.py index 07ec80f2b9..5ef8b94132 100644 --- a/src/oci/data_integration/models/conditional_composite_field_map.py +++ b/src/oci/data_integration/models/conditional_composite_field_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/conditional_input_link.py b/src/oci/data_integration/models/conditional_input_link.py index 6a57a51edf..e43e7ed9c0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/conditional_output_port.py b/src/oci/data_integration/models/conditional_output_port.py index 3bad4686b7..266cdf752f 100644 --- a/src/oci/data_integration/models/conditional_output_port.py +++ b/src/oci/data_integration/models/conditional_output_port.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/config_definition.py b/src/oci/data_integration/models/config_definition.py index 3be6588a01..2917927246 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/config_parameter_definition.py b/src/oci/data_integration/models/config_parameter_definition.py index 77c9183ff5..089a698b6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/config_parameter_value.py b/src/oci/data_integration/models/config_parameter_value.py index 1497254ef1..6abfcf6f05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/config_provider.py b/src/oci/data_integration/models/config_provider.py index 4f0a2a2595..75dbce15fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/config_values.py b/src/oci/data_integration/models/config_values.py index 19a7516751..58c4536231 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/configuration_details.py b/src/oci/data_integration/models/configuration_details.py index 7893fba1ab..736c932ab4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/configured_type.py b/src/oci/data_integration/models/configured_type.py index 7fa47b4fc3..02b7b0492f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection.py b/src/oci/data_integration/models/connection.py index 94fcee981a..80a57e4c8b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_details.py b/src/oci/data_integration/models/connection_details.py index 2328888649..c40a249679 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_adwc.py b/src/oci/data_integration/models/connection_from_adwc.py index 1697399c31..47370f69bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 a77c8a4230..c4a65e272f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 6d3cd80a9c..fcd3e80c36 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 0767c70706..359e26d669 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_atp.py b/src/oci/data_integration/models/connection_from_atp.py index b63771fbb3..815bb67e55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 e7b845ed7a..a43dcc0184 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_bicc.py b/src/oci/data_integration/models/connection_from_bicc.py index eb2229f34d..5d2b711da7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 368372c2bd..a380f01ad4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_bip.py b/src/oci/data_integration/models/connection_from_bip.py index c072045f1f..e8603c42e8 100644 --- a/src/oci/data_integration/models/connection_from_bip.py +++ b/src/oci/data_integration/models/connection_from_bip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_bip_details.py b/src/oci/data_integration/models/connection_from_bip_details.py index 5ef42cb75b..469b70ade1 100644 --- a/src/oci/data_integration/models/connection_from_bip_details.py +++ b/src/oci/data_integration/models/connection_from_bip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_hdfs.py b/src/oci/data_integration/models/connection_from_hdfs.py index 89b84dbc5a..e8cb58baed 100644 --- a/src/oci/data_integration/models/connection_from_hdfs.py +++ b/src/oci/data_integration/models/connection_from_hdfs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_hdfs_details.py b/src/oci/data_integration/models/connection_from_hdfs_details.py index e3526572d2..3d4a6c2460 100644 --- a/src/oci/data_integration/models/connection_from_hdfs_details.py +++ b/src/oci/data_integration/models/connection_from_hdfs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_jdbc.py b/src/oci/data_integration/models/connection_from_jdbc.py index 5be02d26c9..ae05585f64 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 6304d68429..9414c9c566 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_lake.py b/src/oci/data_integration/models/connection_from_lake.py index b97b552ba6..4a365196f4 100644 --- a/src/oci/data_integration/models/connection_from_lake.py +++ b/src/oci/data_integration/models/connection_from_lake.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_lake_details.py b/src/oci/data_integration/models/connection_from_lake_details.py index 8b012e11c2..f22a537e7e 100644 --- a/src/oci/data_integration/models/connection_from_lake_details.py +++ b/src/oci/data_integration/models/connection_from_lake_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 37304ac2e3..60c9b11c19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 d0959178a6..4d4980f5bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_my_sql_heat_wave.py b/src/oci/data_integration/models/connection_from_my_sql_heat_wave.py index 372291222e..bf30eac573 100644 --- a/src/oci/data_integration/models/connection_from_my_sql_heat_wave.py +++ b/src/oci/data_integration/models/connection_from_my_sql_heat_wave.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_my_sql_heat_wave_details.py b/src/oci/data_integration/models/connection_from_my_sql_heat_wave_details.py index be7e080fba..449e65fcfe 100644 --- a/src/oci/data_integration/models/connection_from_my_sql_heat_wave_details.py +++ b/src/oci/data_integration/models/connection_from_my_sql_heat_wave_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_o_auth2.py b/src/oci/data_integration/models/connection_from_o_auth2.py index 81bd344db6..4a17a76d27 100644 --- a/src/oci/data_integration/models/connection_from_o_auth2.py +++ b/src/oci/data_integration/models/connection_from_o_auth2.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_o_auth2_details.py b/src/oci/data_integration/models/connection_from_o_auth2_details.py index e063b80c64..0a74dca33a 100644 --- a/src/oci/data_integration/models/connection_from_o_auth2_details.py +++ b/src/oci/data_integration/models/connection_from_o_auth2_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 ee5026cfa9..0ac4cf92ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 4b77a536a1..9b78192b9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_oracle.py b/src/oci/data_integration/models/connection_from_oracle.py index b85c950850..10b96a7220 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 570688313a..d8b72439fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_oracle_ebs.py b/src/oci/data_integration/models/connection_from_oracle_ebs.py index 7751ddc8ff..d9b3509680 100644 --- a/src/oci/data_integration/models/connection_from_oracle_ebs.py +++ b/src/oci/data_integration/models/connection_from_oracle_ebs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_oracle_ebs_details.py b/src/oci/data_integration/models/connection_from_oracle_ebs_details.py index cd964a00f7..d746a81856 100644 --- a/src/oci/data_integration/models/connection_from_oracle_ebs_details.py +++ b/src/oci/data_integration/models/connection_from_oracle_ebs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_oracle_people_soft.py b/src/oci/data_integration/models/connection_from_oracle_people_soft.py index 0778ded34f..63cc24ec2d 100644 --- a/src/oci/data_integration/models/connection_from_oracle_people_soft.py +++ b/src/oci/data_integration/models/connection_from_oracle_people_soft.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_oracle_people_soft_details.py b/src/oci/data_integration/models/connection_from_oracle_people_soft_details.py index e8c6324eb4..be812b762d 100644 --- a/src/oci/data_integration/models/connection_from_oracle_people_soft_details.py +++ b/src/oci/data_integration/models/connection_from_oracle_people_soft_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_oracle_siebel.py b/src/oci/data_integration/models/connection_from_oracle_siebel.py index 570683317d..fb75d8c299 100644 --- a/src/oci/data_integration/models/connection_from_oracle_siebel.py +++ b/src/oci/data_integration/models/connection_from_oracle_siebel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_oracle_siebel_details.py b/src/oci/data_integration/models/connection_from_oracle_siebel_details.py index 19a2fec471..d6134d7bd9 100644 --- a/src/oci/data_integration/models/connection_from_oracle_siebel_details.py +++ b/src/oci/data_integration/models/connection_from_oracle_siebel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_rest_basic_auth.py b/src/oci/data_integration/models/connection_from_rest_basic_auth.py index 8bfeed2cdd..0197274537 100644 --- a/src/oci/data_integration/models/connection_from_rest_basic_auth.py +++ b/src/oci/data_integration/models/connection_from_rest_basic_auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_rest_basic_auth_details.py b/src/oci/data_integration/models/connection_from_rest_basic_auth_details.py index e5de336862..98144263c0 100644 --- a/src/oci/data_integration/models/connection_from_rest_basic_auth_details.py +++ b/src/oci/data_integration/models/connection_from_rest_basic_auth_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_rest_no_auth.py b/src/oci/data_integration/models/connection_from_rest_no_auth.py index d6f4822e1c..b1b1d00eb5 100644 --- a/src/oci/data_integration/models/connection_from_rest_no_auth.py +++ b/src/oci/data_integration/models/connection_from_rest_no_auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_from_rest_no_auth_details.py b/src/oci/data_integration/models/connection_from_rest_no_auth_details.py index 11e861c39e..9aefe94aba 100644 --- a/src/oci/data_integration/models/connection_from_rest_no_auth_details.py +++ b/src/oci/data_integration/models/connection_from_rest_no_auth_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_property.py b/src/oci/data_integration/models/connection_property.py index bc5f9db804..8c2ddde1de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary.py b/src/oci/data_integration/models/connection_summary.py index 33f80cd767..6c599799e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_collection.py b/src/oci/data_integration/models/connection_summary_collection.py index ff47350c73..8c63ec872c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 8248434959..60741a3d25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9c4b7b2ab0..f3cf8ea558 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 0aa21db7f9..7538aea2a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 d351debd77..815a4342c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_bip.py b/src/oci/data_integration/models/connection_summary_from_bip.py index 5f4d20d4ac..9b5dadd2de 100644 --- a/src/oci/data_integration/models/connection_summary_from_bip.py +++ b/src/oci/data_integration/models/connection_summary_from_bip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_hdfs.py b/src/oci/data_integration/models/connection_summary_from_hdfs.py index fad5158a6e..3916e4064c 100644 --- a/src/oci/data_integration/models/connection_summary_from_hdfs.py +++ b/src/oci/data_integration/models/connection_summary_from_hdfs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 f659539013..aeee19b2ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_lake.py b/src/oci/data_integration/models/connection_summary_from_lake.py index 9a3859a7ef..cd3af824c8 100644 --- a/src/oci/data_integration/models/connection_summary_from_lake.py +++ b/src/oci/data_integration/models/connection_summary_from_lake.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 3683dbac0a..c44ce7da63 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_my_sql_heat_wave.py b/src/oci/data_integration/models/connection_summary_from_my_sql_heat_wave.py index af0301f96d..9e7f4bda1b 100644 --- a/src/oci/data_integration/models/connection_summary_from_my_sql_heat_wave.py +++ b/src/oci/data_integration/models/connection_summary_from_my_sql_heat_wave.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_o_auth2.py b/src/oci/data_integration/models/connection_summary_from_o_auth2.py index b39081c6da..a2644e2533 100644 --- a/src/oci/data_integration/models/connection_summary_from_o_auth2.py +++ b/src/oci/data_integration/models/connection_summary_from_o_auth2.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9deae01ce3..44da9a0bb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 c90fe3575a..553ec7a2d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_oracle_ebs.py b/src/oci/data_integration/models/connection_summary_from_oracle_ebs.py index 10026fb8c5..39caa2323f 100644 --- a/src/oci/data_integration/models/connection_summary_from_oracle_ebs.py +++ b/src/oci/data_integration/models/connection_summary_from_oracle_ebs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_oracle_people_soft.py b/src/oci/data_integration/models/connection_summary_from_oracle_people_soft.py index 33d58f459a..2c33ab7255 100644 --- a/src/oci/data_integration/models/connection_summary_from_oracle_people_soft.py +++ b/src/oci/data_integration/models/connection_summary_from_oracle_people_soft.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_oracle_siebel.py b/src/oci/data_integration/models/connection_summary_from_oracle_siebel.py index c26f4fc777..d4865371a0 100644 --- a/src/oci/data_integration/models/connection_summary_from_oracle_siebel.py +++ b/src/oci/data_integration/models/connection_summary_from_oracle_siebel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_rest_basic_auth.py b/src/oci/data_integration/models/connection_summary_from_rest_basic_auth.py index a8e3b8b514..0721908406 100644 --- a/src/oci/data_integration/models/connection_summary_from_rest_basic_auth.py +++ b/src/oci/data_integration/models/connection_summary_from_rest_basic_auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_summary_from_rest_no_auth.py b/src/oci/data_integration/models/connection_summary_from_rest_no_auth.py index a0c8b9172c..0037f14404 100644 --- a/src/oci/data_integration/models/connection_summary_from_rest_no_auth.py +++ b/src/oci/data_integration/models/connection_summary_from_rest_no_auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_validation.py b/src/oci/data_integration/models/connection_validation.py index dfe84978aa..bed10df279 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connection_validation_summary.py b/src/oci/data_integration/models/connection_validation_summary.py index 28baef1252..9d5b7e7562 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 e88ab6243e..4791f45e51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/connector_attribute.py b/src/oci/data_integration/models/connector_attribute.py index dd25720bad..dc7f0c9bd7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/copy_conflict_resolution.py b/src/oci/data_integration/models/copy_conflict_resolution.py index 4c91ef053a..dd90645a58 100644 --- a/src/oci/data_integration/models/copy_conflict_resolution.py +++ b/src/oci/data_integration/models/copy_conflict_resolution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/copy_object_metadata_summary.py b/src/oci/data_integration/models/copy_object_metadata_summary.py index e1d4389555..093d55fbf7 100644 --- a/src/oci/data_integration/models/copy_object_metadata_summary.py +++ b/src/oci/data_integration/models/copy_object_metadata_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/copy_object_request.py b/src/oci/data_integration/models/copy_object_request.py index 5790131d84..567cd598be 100644 --- a/src/oci/data_integration/models/copy_object_request.py +++ b/src/oci/data_integration/models/copy_object_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/copy_object_request_summary.py b/src/oci/data_integration/models/copy_object_request_summary.py index 3f75078635..e2d462b19d 100644 --- a/src/oci/data_integration/models/copy_object_request_summary.py +++ b/src/oci/data_integration/models/copy_object_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/copy_object_request_summary_collection.py b/src/oci/data_integration/models/copy_object_request_summary_collection.py index a15812634c..29b4b3478d 100644 --- a/src/oci/data_integration/models/copy_object_request_summary_collection.py +++ b/src/oci/data_integration/models/copy_object_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/count_statistic.py b/src/oci/data_integration/models/count_statistic.py index fc38b80ba8..b4b3c78c32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/count_statistic_summary.py b/src/oci/data_integration/models/count_statistic_summary.py index b53c62b594..7d2bd5404b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_application_details.py b/src/oci/data_integration/models/create_application_details.py index 2d02caba4a..4d152f7148 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_config_provider.py b/src/oci/data_integration/models/create_config_provider.py index a30f2cacaf..d6db041565 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_details.py b/src/oci/data_integration/models/create_connection_details.py index e320af0428..fb861e37d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 624dae0a11..aef372bbba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 ce652539a7..8bef684230 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 5e4fdaa4bb..5df5ae3a57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 126b7b0aae..4006cfefd7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_bip.py b/src/oci/data_integration/models/create_connection_from_bip.py index 30b7c95214..6f9b9b21a1 100644 --- a/src/oci/data_integration/models/create_connection_from_bip.py +++ b/src/oci/data_integration/models/create_connection_from_bip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_hdfs.py b/src/oci/data_integration/models/create_connection_from_hdfs.py index 365b58e192..2d650a0f9a 100644 --- a/src/oci/data_integration/models/create_connection_from_hdfs.py +++ b/src/oci/data_integration/models/create_connection_from_hdfs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 8567ead761..92bd1e8b92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_lake.py b/src/oci/data_integration/models/create_connection_from_lake.py index c3aacf8a87..f618d6c189 100644 --- a/src/oci/data_integration/models/create_connection_from_lake.py +++ b/src/oci/data_integration/models/create_connection_from_lake.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 65238b6a3f..bf897c760b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_my_sql_heat_wave.py b/src/oci/data_integration/models/create_connection_from_my_sql_heat_wave.py index 2efcc17ba7..5be309f781 100644 --- a/src/oci/data_integration/models/create_connection_from_my_sql_heat_wave.py +++ b/src/oci/data_integration/models/create_connection_from_my_sql_heat_wave.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_o_auth2.py b/src/oci/data_integration/models/create_connection_from_o_auth2.py index 051afa8cf0..ec44a7094b 100644 --- a/src/oci/data_integration/models/create_connection_from_o_auth2.py +++ b/src/oci/data_integration/models/create_connection_from_o_auth2.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9473dc7766..984a6e9591 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 f409dc1cae..21bc48b7ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_oracle_ebs.py b/src/oci/data_integration/models/create_connection_from_oracle_ebs.py index 54966c9d43..36a13f22d5 100644 --- a/src/oci/data_integration/models/create_connection_from_oracle_ebs.py +++ b/src/oci/data_integration/models/create_connection_from_oracle_ebs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_oracle_people_soft.py b/src/oci/data_integration/models/create_connection_from_oracle_people_soft.py index d52bb096fb..88cf6a7eb8 100644 --- a/src/oci/data_integration/models/create_connection_from_oracle_people_soft.py +++ b/src/oci/data_integration/models/create_connection_from_oracle_people_soft.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_oracle_siebel.py b/src/oci/data_integration/models/create_connection_from_oracle_siebel.py index a0e65d97fb..f9479a3b15 100644 --- a/src/oci/data_integration/models/create_connection_from_oracle_siebel.py +++ b/src/oci/data_integration/models/create_connection_from_oracle_siebel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_rest_basic_auth.py b/src/oci/data_integration/models/create_connection_from_rest_basic_auth.py index 4042c913e8..f805b445a1 100644 --- a/src/oci/data_integration/models/create_connection_from_rest_basic_auth.py +++ b/src/oci/data_integration/models/create_connection_from_rest_basic_auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_connection_from_rest_no_auth.py b/src/oci/data_integration/models/create_connection_from_rest_no_auth.py index 666e0e672b..b1bd5b7acf 100644 --- a/src/oci/data_integration/models/create_connection_from_rest_no_auth.py +++ b/src/oci/data_integration/models/create_connection_from_rest_no_auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 fb0f1d4e39..ef575843cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_copy_object_request_details.py b/src/oci/data_integration/models/create_copy_object_request_details.py index 6fc67a7ea5..27c5c39fc0 100644 --- a/src/oci/data_integration/models/create_copy_object_request_details.py +++ b/src/oci/data_integration/models/create_copy_object_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 54a62440cc..565f698250 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 540cac5e4e..8a438775cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 21b931befd..32f2d4115a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 56d898da63..44f3d1dbdd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 b486a6d1c6..4e4b0fc5ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_data_asset_from_hdfs.py b/src/oci/data_integration/models/create_data_asset_from_hdfs.py index c277afb650..b91b7a5da4 100644 --- a/src/oci/data_integration/models/create_data_asset_from_hdfs.py +++ b/src/oci/data_integration/models/create_data_asset_from_hdfs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 467da218a3..c3190a3282 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_data_asset_from_lake.py b/src/oci/data_integration/models/create_data_asset_from_lake.py index d240320756..d54696f68a 100644 --- a/src/oci/data_integration/models/create_data_asset_from_lake.py +++ b/src/oci/data_integration/models/create_data_asset_from_lake.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 bf0b7730cc..65f5731239 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_data_asset_from_my_sql_heat_wave.py b/src/oci/data_integration/models/create_data_asset_from_my_sql_heat_wave.py index 4a1e6f4ee5..8ee183e41f 100644 --- a/src/oci/data_integration/models/create_data_asset_from_my_sql_heat_wave.py +++ b/src/oci/data_integration/models/create_data_asset_from_my_sql_heat_wave.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 0aa16c98cc..9f86f7ff6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 6c9a0e7406..1d8a262ad4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_data_asset_from_oracle_ebs.py b/src/oci/data_integration/models/create_data_asset_from_oracle_ebs.py index 008ae4a65b..7430c56146 100644 --- a/src/oci/data_integration/models/create_data_asset_from_oracle_ebs.py +++ b/src/oci/data_integration/models/create_data_asset_from_oracle_ebs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_data_asset_from_oracle_people_soft.py b/src/oci/data_integration/models/create_data_asset_from_oracle_people_soft.py index 88dda51176..429025ea29 100644 --- a/src/oci/data_integration/models/create_data_asset_from_oracle_people_soft.py +++ b/src/oci/data_integration/models/create_data_asset_from_oracle_people_soft.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_data_asset_from_oracle_siebel.py b/src/oci/data_integration/models/create_data_asset_from_oracle_siebel.py index 1b4eaedc3e..2ffd8d47fe 100644 --- a/src/oci/data_integration/models/create_data_asset_from_oracle_siebel.py +++ b/src/oci/data_integration/models/create_data_asset_from_oracle_siebel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_data_asset_from_rest.py b/src/oci/data_integration/models/create_data_asset_from_rest.py index 6335d5edd8..94f2cdf45d 100644 --- a/src/oci/data_integration/models/create_data_asset_from_rest.py +++ b/src/oci/data_integration/models/create_data_asset_from_rest.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 a0edac5344..4e7caef915 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 94055bf70c..88d42af9cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_detailed_description_details.py b/src/oci/data_integration/models/create_detailed_description_details.py index ed7253dddb..8e78f16dda 100644 --- a/src/oci/data_integration/models/create_detailed_description_details.py +++ b/src/oci/data_integration/models/create_detailed_description_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_dis_application_details.py b/src/oci/data_integration/models/create_dis_application_details.py index 556765054b..57c750985a 100644 --- a/src/oci/data_integration/models/create_dis_application_details.py +++ b/src/oci/data_integration/models/create_dis_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 c712fecf4a..4dfb86dc82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 fd07ed67bd..0b05445295 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_entity_shape_from_object.py b/src/oci/data_integration/models/create_entity_shape_from_object.py index a5ab6f474e..4286d4b7ee 100644 --- a/src/oci/data_integration/models/create_entity_shape_from_object.py +++ b/src/oci/data_integration/models/create_entity_shape_from_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 24c17065dc..08a797de39 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_export_request_details.py b/src/oci/data_integration/models/create_export_request_details.py index c02dc1ecf5..1862924083 100644 --- a/src/oci/data_integration/models/create_export_request_details.py +++ b/src/oci/data_integration/models/create_export_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 7f7bc176b4..b7c700a08b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 1d4b12f61d..e9243cfade 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_folder_details.py b/src/oci/data_integration/models/create_folder_details.py index 65cf583132..3c57616c21 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9de15a7aae..e395e68fe6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_import_request_details.py b/src/oci/data_integration/models/create_import_request_details.py index 42d8ce6aed..38137660c3 100644 --- a/src/oci/data_integration/models/create_import_request_details.py +++ b/src/oci/data_integration/models/create_import_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_patch_details.py b/src/oci/data_integration/models/create_patch_details.py index 98921db95d..586bb890e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_pipeline_details.py b/src/oci/data_integration/models/create_pipeline_details.py index d9983fbdb5..d1927752dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 3994e3b38c..36f548eed6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_project_details.py b/src/oci/data_integration/models/create_project_details.py index 2efa68846b..fa4bf1b52f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_schedule_details.py b/src/oci/data_integration/models/create_schedule_details.py index 933978674b..50f7468286 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 2cba1d56ee..e2eef74842 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_task_details.py b/src/oci/data_integration/models/create_task_details.py index dc73f621fc..91c67538a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 97b74d9203..1809e14690 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 ee192eaa2c..4910975301 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 887e97e38c..a40c7c48e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 c9cfc31184..e583a6850f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 76fec48054..6812d1b977 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 c02105f545..9d8c863318 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 a46d43682f..778c9d209c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 3f5c4be0a3..f8c24fd344 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 80216a8baf..8d45ec71c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 dff6a8a3f1..4a76e3b9ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 084813b27b..3a59b29ed9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 980bc71799..363d3854cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 eb556482f5..dd703f7b17 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 6ac41b7579..267807d55b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/create_workspace_details.py b/src/oci/data_integration/models/create_workspace_details.py index cfdf1505a3..e2f4397d83 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/csv_format_attribute.py b/src/oci/data_integration/models/csv_format_attribute.py index 26ec79e509..e353604f4f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/custom_frequency_details.py b/src/oci/data_integration/models/custom_frequency_details.py index 10c6caad29..e2b56c46cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/daily_frequency_details.py b/src/oci/data_integration/models/daily_frequency_details.py index 248f20f965..aa4b2e8fcb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset.py b/src/oci/data_integration/models/data_asset.py index e014d007c1..ca42ee684c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9f14400337..a530300041 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 bd2677531e..49ce9b1639 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 615c189319..7405bcd6a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 631fc9246a..bff61ba768 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_from_hdfs_details.py b/src/oci/data_integration/models/data_asset_from_hdfs_details.py index fc6c428ad0..4d373804ec 100644 --- a/src/oci/data_integration/models/data_asset_from_hdfs_details.py +++ b/src/oci/data_integration/models/data_asset_from_hdfs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 a5aee8eb7b..2d2c909858 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_from_lake_details.py b/src/oci/data_integration/models/data_asset_from_lake_details.py index 0a6551fc35..e13afc967e 100644 --- a/src/oci/data_integration/models/data_asset_from_lake_details.py +++ b/src/oci/data_integration/models/data_asset_from_lake_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 c3a2a00b71..18a76352f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_from_my_sql_heat_wave.py b/src/oci/data_integration/models/data_asset_from_my_sql_heat_wave.py index 02476c119b..98c336f422 100644 --- a/src/oci/data_integration/models/data_asset_from_my_sql_heat_wave.py +++ b/src/oci/data_integration/models/data_asset_from_my_sql_heat_wave.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 98d71b4785..cfe491f4b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 0fe00eacd3..5cfe69c666 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_from_oracle_ebs_details.py b/src/oci/data_integration/models/data_asset_from_oracle_ebs_details.py index 2cb18fa74f..7de3b3dfd7 100644 --- a/src/oci/data_integration/models/data_asset_from_oracle_ebs_details.py +++ b/src/oci/data_integration/models/data_asset_from_oracle_ebs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_from_oracle_people_soft_details.py b/src/oci/data_integration/models/data_asset_from_oracle_people_soft_details.py index 105e396935..03b83763f3 100644 --- a/src/oci/data_integration/models/data_asset_from_oracle_people_soft_details.py +++ b/src/oci/data_integration/models/data_asset_from_oracle_people_soft_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_from_oracle_siebel_details.py b/src/oci/data_integration/models/data_asset_from_oracle_siebel_details.py index fa7621c029..6eb7178df0 100644 --- a/src/oci/data_integration/models/data_asset_from_oracle_siebel_details.py +++ b/src/oci/data_integration/models/data_asset_from_oracle_siebel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_from_rest_details.py b/src/oci/data_integration/models/data_asset_from_rest_details.py index 3ae681617b..e582789c00 100644 --- a/src/oci/data_integration/models/data_asset_from_rest_details.py +++ b/src/oci/data_integration/models/data_asset_from_rest_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_summary.py b/src/oci/data_integration/models/data_asset_summary.py index 214554864e..ad23be141b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 173f93263c..137a3ccb47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 487d815f22..ed17150a02 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 4bcbc0e5f3..c96ae4b57e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 09579f5c09..634d4861df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 91a01ad986..3d3081a268 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_summary_from_hdfs.py b/src/oci/data_integration/models/data_asset_summary_from_hdfs.py index 2c56755331..dc0588ad77 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_hdfs.py +++ b/src/oci/data_integration/models/data_asset_summary_from_hdfs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 105f9c8e67..17341f69e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_summary_from_lake.py b/src/oci/data_integration/models/data_asset_summary_from_lake.py index 45f17394ca..5c6107aef4 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_lake.py +++ b/src/oci/data_integration/models/data_asset_summary_from_lake.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 bc88ecdff9..f6046f2430 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_summary_from_my_sql_heat_wave.py b/src/oci/data_integration/models/data_asset_summary_from_my_sql_heat_wave.py index 70f3fcca89..84996faadd 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_my_sql_heat_wave.py +++ b/src/oci/data_integration/models/data_asset_summary_from_my_sql_heat_wave.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 e66229d634..37bd38edc6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 dac0f8b2a0..11f5db5436 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_summary_from_oracle_ebs.py b/src/oci/data_integration/models/data_asset_summary_from_oracle_ebs.py index 3f269de597..2d3986da32 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_oracle_ebs.py +++ b/src/oci/data_integration/models/data_asset_summary_from_oracle_ebs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_summary_from_oracle_people_soft.py b/src/oci/data_integration/models/data_asset_summary_from_oracle_people_soft.py index 0702294609..bb486f94af 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_oracle_people_soft.py +++ b/src/oci/data_integration/models/data_asset_summary_from_oracle_people_soft.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_summary_from_oracle_siebel.py b/src/oci/data_integration/models/data_asset_summary_from_oracle_siebel.py index 58f0e9952f..6a37066583 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_oracle_siebel.py +++ b/src/oci/data_integration/models/data_asset_summary_from_oracle_siebel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_asset_summary_from_rest.py b/src/oci/data_integration/models/data_asset_summary_from_rest.py index 7e9637aa06..2412180cc9 100644 --- a/src/oci/data_integration/models/data_asset_summary_from_rest.py +++ b/src/oci/data_integration/models/data_asset_summary_from_rest.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_entity.py b/src/oci/data_integration/models/data_entity.py index 87324f292b..6c7d7387aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_entity_details.py b/src/oci/data_integration/models/data_entity_details.py index 9ecaf349d9..fd8e5d0b40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 cfa775ede2..61996082ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 7572b41a29..1179560ffd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9ad5e3a8c8..36b2bbc13b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 deaec4660b..d3be829797 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_entity_from_object.py b/src/oci/data_integration/models/data_entity_from_object.py index d535c4e404..c5433c11a9 100644 --- a/src/oci/data_integration/models/data_entity_from_object.py +++ b/src/oci/data_integration/models/data_entity_from_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_entity_from_object_entity_details.py b/src/oci/data_integration/models/data_entity_from_object_entity_details.py index 6d486c340b..52735259d6 100644 --- a/src/oci/data_integration/models/data_entity_from_object_entity_details.py +++ b/src/oci/data_integration/models/data_entity_from_object_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 80560c691c..843af7cfed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 821904784b..063729e548 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 3b79599db7..44f4df8c37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 cf778c01c3..78c26f93bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 b26d9d8bae..bb6dc13752 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 5c6215bd5f..646d1680f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_entity_summary.py b/src/oci/data_integration/models/data_entity_summary.py index d1026cb743..40fa725be4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 8a74deeb51..058359a967 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 cbfb2d3bc0..53e0f7ef05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 0598f8a44c..e6ad230e4d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_entity_summary_from_object.py b/src/oci/data_integration/models/data_entity_summary_from_object.py index c7e3ebdc5e..543678ca16 100644 --- a/src/oci/data_integration/models/data_entity_summary_from_object.py +++ b/src/oci/data_integration/models/data_entity_summary_from_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 ee5870abbb..91bf674244 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 07f08c5d78..75040b95cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 1c706aa271..9bd6081bd9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_flow.py b/src/oci/data_integration/models/data_flow.py index f8c5c7bf5b..02d52215e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_flow_details.py b/src/oci/data_integration/models/data_flow_details.py index 6f032ba6db..6fd5d999d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_flow_summary.py b/src/oci/data_integration/models/data_flow_summary.py index 95be6ac451..b400106ba2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 d1c47ec2ba..bee737ff79 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_flow_validation.py b/src/oci/data_integration/models/data_flow_validation.py index 730f772ad1..014b63d9fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 18724dbb1a..62c60771a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 7831982ce9..902aae7d07 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_format.py b/src/oci/data_integration/models/data_format.py index b72a416897..126b3b7b21 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/data_type.py b/src/oci/data_integration/models/data_type.py index 241f8d309a..a289b954e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dataflow_application.py b/src/oci/data_integration/models/dataflow_application.py index d9089d47b9..d95b638b07 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/decision_operator.py b/src/oci/data_integration/models/decision_operator.py index 4b3b154dc2..f8bcea27e3 100644 --- a/src/oci/data_integration/models/decision_operator.py +++ b/src/oci/data_integration/models/decision_operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/decision_output_port.py b/src/oci/data_integration/models/decision_output_port.py index bb94d77214..c251577a2b 100644 --- a/src/oci/data_integration/models/decision_output_port.py +++ b/src/oci/data_integration/models/decision_output_port.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dependent_object.py b/src/oci/data_integration/models/dependent_object.py index 717943aef6..d47414129d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dependent_object_summary.py b/src/oci/data_integration/models/dependent_object_summary.py index f22a45cad8..d8577662fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 3a9af39464..89e8d3859d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/derived_entity.py b/src/oci/data_integration/models/derived_entity.py index 6e79fa9f83..61cfc34667 100644 --- a/src/oci/data_integration/models/derived_entity.py +++ b/src/oci/data_integration/models/derived_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/derived_field.py b/src/oci/data_integration/models/derived_field.py index d5fb211de4..44dd0b499f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/derived_type.py b/src/oci/data_integration/models/derived_type.py index e4048d6452..0fd221f29f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/detailed_description.py b/src/oci/data_integration/models/detailed_description.py index 97fc4ab635..692385cb10 100644 --- a/src/oci/data_integration/models/detailed_description.py +++ b/src/oci/data_integration/models/detailed_description.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/direct_field_map.py b/src/oci/data_integration/models/direct_field_map.py index bead459725..a52c59bd6e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9f5add2938..7e2608499a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dis_application.py b/src/oci/data_integration/models/dis_application.py index af34739d90..9f0204736b 100644 --- a/src/oci/data_integration/models/dis_application.py +++ b/src/oci/data_integration/models/dis_application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dis_application_summary.py b/src/oci/data_integration/models/dis_application_summary.py index d071893373..2461641c53 100644 --- a/src/oci/data_integration/models/dis_application_summary.py +++ b/src/oci/data_integration/models/dis_application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dis_application_summary_collection.py b/src/oci/data_integration/models/dis_application_summary_collection.py index b69d95bd62..a5eec053cd 100644 --- a/src/oci/data_integration/models/dis_application_summary_collection.py +++ b/src/oci/data_integration/models/dis_application_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/distinct.py b/src/oci/data_integration/models/distinct.py index a7ed91e844..f33f0f1959 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dynamic_input_field.py b/src/oci/data_integration/models/dynamic_input_field.py index 573c743d0e..7da5b0ad1a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dynamic_proxy_field.py b/src/oci/data_integration/models/dynamic_proxy_field.py index 9d4174fb37..abd7672574 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dynamic_type.py b/src/oci/data_integration/models/dynamic_type.py index a6198aae89..1083abb4db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/dynamic_type_handler.py b/src/oci/data_integration/models/dynamic_type_handler.py index 73a202f75f..33f74ca462 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/end_operator.py b/src/oci/data_integration/models/end_operator.py index bba66ffe81..3380bfc579 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/enriched_entity.py b/src/oci/data_integration/models/enriched_entity.py index cd0cf4fb37..02f8e85aba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/entity_shape.py b/src/oci/data_integration/models/entity_shape.py index d82146b27f..c518792fd8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 89b1aa1cde..f040c63458 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/entity_shape_from_object.py b/src/oci/data_integration/models/entity_shape_from_object.py index cee050694d..a0b3119745 100644 --- a/src/oci/data_integration/models/entity_shape_from_object.py +++ b/src/oci/data_integration/models/entity_shape_from_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 d32287fc55..9e8803016a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/error_details.py b/src/oci/data_integration/models/error_details.py index a3abd4dc3d..f580970e51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 071de6fe30..5bc4764a83 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/export_object_metadata_summary.py b/src/oci/data_integration/models/export_object_metadata_summary.py index 175d34090e..fc604404e4 100644 --- a/src/oci/data_integration/models/export_object_metadata_summary.py +++ b/src/oci/data_integration/models/export_object_metadata_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/export_request.py b/src/oci/data_integration/models/export_request.py index 7ebffbea8b..bf33ca383f 100644 --- a/src/oci/data_integration/models/export_request.py +++ b/src/oci/data_integration/models/export_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/export_request_summary.py b/src/oci/data_integration/models/export_request_summary.py index ecd58e8e8a..9ceee926d6 100644 --- a/src/oci/data_integration/models/export_request_summary.py +++ b/src/oci/data_integration/models/export_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/export_request_summary_collection.py b/src/oci/data_integration/models/export_request_summary_collection.py index 7c0bb595fe..6bc5b54c6d 100644 --- a/src/oci/data_integration/models/export_request_summary_collection.py +++ b/src/oci/data_integration/models/export_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/expression.py b/src/oci/data_integration/models/expression.py index e48da50a7d..86f7a4df25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/expression_operator.py b/src/oci/data_integration/models/expression_operator.py index a218ac73ae..65f606e342 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/external_publication.py b/src/oci/data_integration/models/external_publication.py index b909a36e3b..592e298c62 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/external_publication_summary.py b/src/oci/data_integration/models/external_publication_summary.py index 7443416b38..f890678640 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 01916618d0..60f2272194 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/external_publication_validation.py b/src/oci/data_integration/models/external_publication_validation.py index 4c59cdc74f..c1848cfeef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 2428014f90..97f761dfdd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 8b45170449..a62a40c9d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/external_storage.py b/src/oci/data_integration/models/external_storage.py index 317089e3c8..8c20eb8aab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/field_map.py b/src/oci/data_integration/models/field_map.py index 34c655fcc6..4f5896ff7b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/field_map_wrapper.py b/src/oci/data_integration/models/field_map_wrapper.py index 2a6b4ae30d..027567884a 100644 --- a/src/oci/data_integration/models/field_map_wrapper.py +++ b/src/oci/data_integration/models/field_map_wrapper.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/filter.py b/src/oci/data_integration/models/filter.py index 320d3bc18b..3478ae71be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/filter_push.py b/src/oci/data_integration/models/filter_push.py index d69516d912..efa59ff863 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/flatten.py b/src/oci/data_integration/models/flatten.py index a1b4590a8e..f92672edf1 100644 --- a/src/oci/data_integration/models/flatten.py +++ b/src/oci/data_integration/models/flatten.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/flatten_details.py b/src/oci/data_integration/models/flatten_details.py index c7ced44cec..59f440fa6c 100644 --- a/src/oci/data_integration/models/flatten_details.py +++ b/src/oci/data_integration/models/flatten_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/flatten_projection_preferences.py b/src/oci/data_integration/models/flatten_projection_preferences.py index 9306c5510c..12bc2583e5 100644 --- a/src/oci/data_integration/models/flatten_projection_preferences.py +++ b/src/oci/data_integration/models/flatten_projection_preferences.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/flatten_type_handler.py b/src/oci/data_integration/models/flatten_type_handler.py index 0eae5bf4f3..4d23ae4795 100644 --- a/src/oci/data_integration/models/flatten_type_handler.py +++ b/src/oci/data_integration/models/flatten_type_handler.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/flow_node.py b/src/oci/data_integration/models/flow_node.py index 3259e5f80d..76bd208d57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/flow_port.py b/src/oci/data_integration/models/flow_port.py index e60e13d578..caa6cee3d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/flow_port_link.py b/src/oci/data_integration/models/flow_port_link.py index 69a120af38..fd52319956 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/folder.py b/src/oci/data_integration/models/folder.py index efd5b7131f..1cebe4b046 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/folder_details.py b/src/oci/data_integration/models/folder_details.py index 56c1da6597..49da4bb6d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/folder_summary.py b/src/oci/data_integration/models/folder_summary.py index 932543700a..21fdfc1e7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/folder_summary_collection.py b/src/oci/data_integration/models/folder_summary_collection.py index 078ac1f8ef..2fd6f8e539 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/foreign_key.py b/src/oci/data_integration/models/foreign_key.py index d9b718689e..e293b8ca70 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/function.py b/src/oci/data_integration/models/function.py index 7de1b2beb6..67be3e55ba 100644 --- a/src/oci/data_integration/models/function.py +++ b/src/oci/data_integration/models/function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/function_configuration_definition.py b/src/oci/data_integration/models/function_configuration_definition.py index a39b520848..44d535651c 100644 --- a/src/oci/data_integration/models/function_configuration_definition.py +++ b/src/oci/data_integration/models/function_configuration_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/function_library.py b/src/oci/data_integration/models/function_library.py index 10a289cebd..70783173e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/function_library_details.py b/src/oci/data_integration/models/function_library_details.py index a4cd169b94..3f77abc486 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/function_library_summary.py b/src/oci/data_integration/models/function_library_summary.py index e0874402c3..35c31653d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 b210cde8bb..b94a2007d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/function_signature.py b/src/oci/data_integration/models/function_signature.py index ebfa31d5f1..e574a7da4d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/generic_rest_api_attributes.py b/src/oci/data_integration/models/generic_rest_api_attributes.py index 315728ffa0..d128e518fd 100644 --- a/src/oci/data_integration/models/generic_rest_api_attributes.py +++ b/src/oci/data_integration/models/generic_rest_api_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/generic_rest_call_attribute.py b/src/oci/data_integration/models/generic_rest_call_attribute.py index 9dda9cba62..02579a7a28 100644 --- a/src/oci/data_integration/models/generic_rest_call_attribute.py +++ b/src/oci/data_integration/models/generic_rest_call_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/grouped_name_pattern_rule.py b/src/oci/data_integration/models/grouped_name_pattern_rule.py index 6fcc527f6f..934f452f2e 100644 --- a/src/oci/data_integration/models/grouped_name_pattern_rule.py +++ b/src/oci/data_integration/models/grouped_name_pattern_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/hourly_frequency_details.py b/src/oci/data_integration/models/hourly_frequency_details.py index 83b18b8e73..cbabf59147 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/import_conflict_resolution.py b/src/oci/data_integration/models/import_conflict_resolution.py index d3142d694e..3ba4294bbc 100644 --- a/src/oci/data_integration/models/import_conflict_resolution.py +++ b/src/oci/data_integration/models/import_conflict_resolution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/import_object_metadata_summary.py b/src/oci/data_integration/models/import_object_metadata_summary.py index 158b247683..5e98bd451f 100644 --- a/src/oci/data_integration/models/import_object_metadata_summary.py +++ b/src/oci/data_integration/models/import_object_metadata_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/import_request.py b/src/oci/data_integration/models/import_request.py index e8e1fd2444..f9d3d2fc23 100644 --- a/src/oci/data_integration/models/import_request.py +++ b/src/oci/data_integration/models/import_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/import_request_summary.py b/src/oci/data_integration/models/import_request_summary.py index 7004bf1aa3..19d96423d1 100644 --- a/src/oci/data_integration/models/import_request_summary.py +++ b/src/oci/data_integration/models/import_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/import_request_summary_collection.py b/src/oci/data_integration/models/import_request_summary_collection.py index 8e7193bc56..4d09157516 100644 --- a/src/oci/data_integration/models/import_request_summary_collection.py +++ b/src/oci/data_integration/models/import_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/incremental_data_entity_clause.py b/src/oci/data_integration/models/incremental_data_entity_clause.py index 0f4bf66bab..cac8ed6a01 100644 --- a/src/oci/data_integration/models/incremental_data_entity_clause.py +++ b/src/oci/data_integration/models/incremental_data_entity_clause.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/incremental_field_clause.py b/src/oci/data_integration/models/incremental_field_clause.py index bdb6c9b3dc..ba2dff9bea 100644 --- a/src/oci/data_integration/models/incremental_field_clause.py +++ b/src/oci/data_integration/models/incremental_field_clause.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/incremental_read_config.py b/src/oci/data_integration/models/incremental_read_config.py index 1c55d833de..7b602289fe 100644 --- a/src/oci/data_integration/models/incremental_read_config.py +++ b/src/oci/data_integration/models/incremental_read_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/input_field.py b/src/oci/data_integration/models/input_field.py index 25f816197c..8588800282 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/input_link.py b/src/oci/data_integration/models/input_link.py index 16edfec445..8819253837 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/input_port.py b/src/oci/data_integration/models/input_port.py index 2b411b41d0..7ed1460fd4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/input_proxy_field.py b/src/oci/data_integration/models/input_proxy_field.py index 9bd3b8f686..82dd930819 100644 --- a/src/oci/data_integration/models/input_proxy_field.py +++ b/src/oci/data_integration/models/input_proxy_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/intersect.py b/src/oci/data_integration/models/intersect.py index 2fe2763168..52dccd07b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/java_type.py b/src/oci/data_integration/models/java_type.py index 5532ddc11a..53d9087056 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/join.py b/src/oci/data_integration/models/join.py index ed6d073314..2fbe3856d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/joiner.py b/src/oci/data_integration/models/joiner.py index 8e1d5dbe58..a6f8b4b791 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/json_format_attribute.py b/src/oci/data_integration/models/json_format_attribute.py index d1ffa19424..afa1d92d6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/json_text.py b/src/oci/data_integration/models/json_text.py index b5c4ee599c..0c6d227a87 100644 --- a/src/oci/data_integration/models/json_text.py +++ b/src/oci/data_integration/models/json_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/key.py b/src/oci/data_integration/models/key.py index 4eda8e29d2..d59c347d19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/key_attribute.py b/src/oci/data_integration/models/key_attribute.py index 9e5ff48528..116b93fcef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/key_range.py b/src/oci/data_integration/models/key_range.py index 461963eb3e..fd7091d0c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 5bab0b93e4..8f3f4c159b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/last_run_details.py b/src/oci/data_integration/models/last_run_details.py index 629fe10d0e..5c7df681dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/lookup.py b/src/oci/data_integration/models/lookup.py index 64ba66908f..c0672b6b9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/macro_field.py b/src/oci/data_integration/models/macro_field.py index 5a8b493e6e..86d6affde9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/macro_pivot_field.py b/src/oci/data_integration/models/macro_pivot_field.py index 82c756feec..b10cf58712 100644 --- a/src/oci/data_integration/models/macro_pivot_field.py +++ b/src/oci/data_integration/models/macro_pivot_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/map_type.py b/src/oci/data_integration/models/map_type.py index 397394671b..4b95f36d4c 100644 --- a/src/oci/data_integration/models/map_type.py +++ b/src/oci/data_integration/models/map_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/materialized_composite_type.py b/src/oci/data_integration/models/materialized_composite_type.py index 8075f2075e..bbaf36f433 100644 --- a/src/oci/data_integration/models/materialized_composite_type.py +++ b/src/oci/data_integration/models/materialized_composite_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/materialized_dynamic_field.py b/src/oci/data_integration/models/materialized_dynamic_field.py index 06245e8294..89a107bd3a 100644 --- a/src/oci/data_integration/models/materialized_dynamic_field.py +++ b/src/oci/data_integration/models/materialized_dynamic_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/merge_operator.py b/src/oci/data_integration/models/merge_operator.py index 759f4e09c0..7e4f6b0f73 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/message.py b/src/oci/data_integration/models/message.py index 30a655e50f..831ff1141e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/minus.py b/src/oci/data_integration/models/minus.py index a5c78f4a5b..d9d6ab7f9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/monthly_frequency_details.py b/src/oci/data_integration/models/monthly_frequency_details.py index ed2b235e84..565d2d8030 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 35578205de..644ebc2815 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/name_list_rule.py b/src/oci/data_integration/models/name_list_rule.py index 5cf2bef13b..954447c0c0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/name_pattern_rule.py b/src/oci/data_integration/models/name_pattern_rule.py index 96dd2ad969..b4a3772b77 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/named_entity_map.py b/src/oci/data_integration/models/named_entity_map.py index 39eede0b1d..2c6386a706 100644 --- a/src/oci/data_integration/models/named_entity_map.py +++ b/src/oci/data_integration/models/named_entity_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/native_shape_field.py b/src/oci/data_integration/models/native_shape_field.py index 21315c3a91..5b1cf67d5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/object_metadata.py b/src/oci/data_integration/models/object_metadata.py index e9538f8672..953178af88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 441c521b76..accd65e3a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 7c50204f49..8b4be5c480 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/oci_function.py b/src/oci/data_integration/models/oci_function.py index 1a9de9b2ab..1d2793c274 100644 --- a/src/oci/data_integration/models/oci_function.py +++ b/src/oci/data_integration/models/oci_function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 644a953e22..e8bcccfc95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/operation.py b/src/oci/data_integration/models/operation.py index 5455a267b7..675ad4628c 100644 --- a/src/oci/data_integration/models/operation.py +++ b/src/oci/data_integration/models/operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/operation_from_api.py b/src/oci/data_integration/models/operation_from_api.py index 9095fc445d..aba825bfa9 100644 --- a/src/oci/data_integration/models/operation_from_api.py +++ b/src/oci/data_integration/models/operation_from_api.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/operation_from_procedure.py b/src/oci/data_integration/models/operation_from_procedure.py index 135eff925a..aed4d1ea62 100644 --- a/src/oci/data_integration/models/operation_from_procedure.py +++ b/src/oci/data_integration/models/operation_from_procedure.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/operator.py b/src/oci/data_integration/models/operator.py index 46657bb64e..a3f2163e43 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 5c6793547e..e736868674 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 54b48c69bd..1f9db1f905 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 bb44216f3f..9e998d8fdb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 5e1df7d3ff..99c8df11e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/oracle_read_attribute.py b/src/oci/data_integration/models/oracle_read_attribute.py index a63a79672b..9b9a5efc8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/oracle_read_attributes.py b/src/oci/data_integration/models/oracle_read_attributes.py index b362aed865..664e7ce77f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/oracle_write_attribute.py b/src/oci/data_integration/models/oracle_write_attribute.py index 2845b13a22..0132a6fc9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/oracle_write_attributes.py b/src/oci/data_integration/models/oracle_write_attributes.py index 617964ff65..f5d183e83f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/output_field.py b/src/oci/data_integration/models/output_field.py index 3ce0f88524..126ce38253 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/output_link.py b/src/oci/data_integration/models/output_link.py index 1a75c0a505..226111b2dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/output_port.py b/src/oci/data_integration/models/output_port.py index 25eb5b65a5..8f1c152d84 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/parameter.py b/src/oci/data_integration/models/parameter.py index adc2160d07..cb13fbe204 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/parameter_value.py b/src/oci/data_integration/models/parameter_value.py index efbb7633bd..5b10c66449 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/parent_reference.py b/src/oci/data_integration/models/parent_reference.py index 8af6d5f84e..f583d0859e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/parquet_format_attribute.py b/src/oci/data_integration/models/parquet_format_attribute.py index 970ab4e7cc..fbf57db681 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/partition_config.py b/src/oci/data_integration/models/partition_config.py index addcbb003f..e9b5cee324 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/patch.py b/src/oci/data_integration/models/patch.py index 0babd0353c..85ab8b6e5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/patch_change_summary.py b/src/oci/data_integration/models/patch_change_summary.py index 5be4d99d5d..7f6e581031 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 490246bf4d..5ab1bcb44f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/patch_object_metadata.py b/src/oci/data_integration/models/patch_object_metadata.py index 59b33ffcad..4a1545c412 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/patch_summary.py b/src/oci/data_integration/models/patch_summary.py index db65cf3756..d6d3050c56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/patch_summary_collection.py b/src/oci/data_integration/models/patch_summary_collection.py index 57061a3f9d..ff54fef67a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/pipeline.py b/src/oci/data_integration/models/pipeline.py index b06f25dee9..70ee1ce6e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/pipeline_summary.py b/src/oci/data_integration/models/pipeline_summary.py index f8824e1dd7..a30a4ae696 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/pipeline_summary_collection.py b/src/oci/data_integration/models/pipeline_summary_collection.py index 8d748fb794..5c42ff30e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/pipeline_validation.py b/src/oci/data_integration/models/pipeline_validation.py index c467e10301..5f4824ca88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/pipeline_validation_summary.py b/src/oci/data_integration/models/pipeline_validation_summary.py index 07df83fa98..435988db61 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 610a67262f..f8072c48ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/pivot.py b/src/oci/data_integration/models/pivot.py index f2c7f3f0e2..9d1eccedc9 100644 --- a/src/oci/data_integration/models/pivot.py +++ b/src/oci/data_integration/models/pivot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/pivot_field.py b/src/oci/data_integration/models/pivot_field.py index 27ccba3826..4e0bab8e1b 100644 --- a/src/oci/data_integration/models/pivot_field.py +++ b/src/oci/data_integration/models/pivot_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/pivot_keys.py b/src/oci/data_integration/models/pivot_keys.py index eb9dfe9330..b43bf9582b 100644 --- a/src/oci/data_integration/models/pivot_keys.py +++ b/src/oci/data_integration/models/pivot_keys.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/poll_rest_call_config.py b/src/oci/data_integration/models/poll_rest_call_config.py index a013500a18..8ae0511288 100644 --- a/src/oci/data_integration/models/poll_rest_call_config.py +++ b/src/oci/data_integration/models/poll_rest_call_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/primary_key.py b/src/oci/data_integration/models/primary_key.py index 58344ffd74..83e9207c68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/project.py b/src/oci/data_integration/models/project.py index c03e8dbc4c..63e065e8f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/project_details.py b/src/oci/data_integration/models/project_details.py index 3be06ed35d..ef8b42ee45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/project_summary.py b/src/oci/data_integration/models/project_summary.py index 13085a4075..9ea3fcebab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/project_summary_collection.py b/src/oci/data_integration/models/project_summary_collection.py index 4354898b5a..307350744b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/projection.py b/src/oci/data_integration/models/projection.py index 0d03963df3..adecd1696b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/projection_rule.py b/src/oci/data_integration/models/projection_rule.py index ea01d8acc1..45acb20693 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/proxy_field.py b/src/oci/data_integration/models/proxy_field.py index 61101367c2..61dc956565 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/published_object.py b/src/oci/data_integration/models/published_object.py index 87edfc8c4a..c4c35ffedc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 c6f4d830f4..8e17dce747 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 a79c05b7f5..938284ada1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 2bb0b85391..f69741d61c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 483ca620df..def44051d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/published_object_summary.py b/src/oci/data_integration/models/published_object_summary.py index 630b3139fa..3ff3b35eea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 e369dc0511..b180105047 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 e94dd4bcd3..60dc0dc655 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 1813718c8e..0735eee8d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/push_down_operation.py b/src/oci/data_integration/models/push_down_operation.py index 2eb894cf74..e1dd837326 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/query.py b/src/oci/data_integration/models/query.py index 5e873b4c5d..b666b85f2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/read_operation_config.py b/src/oci/data_integration/models/read_operation_config.py index d37f239341..3359cb79a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/reference.py b/src/oci/data_integration/models/reference.py index c5e6184e0d..71e5d3400c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/reference_summary.py b/src/oci/data_integration/models/reference_summary.py index c0afd3fcb9..5834ef72b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/reference_summary_collection.py b/src/oci/data_integration/models/reference_summary_collection.py index a944c3395a..9891be0a6c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/reference_used_by.py b/src/oci/data_integration/models/reference_used_by.py index 66b1fa391a..5a10b3a03e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/referenced_data_object.py b/src/oci/data_integration/models/referenced_data_object.py index af1df0f09a..04322ba814 100644 --- a/src/oci/data_integration/models/referenced_data_object.py +++ b/src/oci/data_integration/models/referenced_data_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/referenced_data_object_from_api.py b/src/oci/data_integration/models/referenced_data_object_from_api.py index 40f13e5b3f..18971f9117 100644 --- a/src/oci/data_integration/models/referenced_data_object_from_api.py +++ b/src/oci/data_integration/models/referenced_data_object_from_api.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/referenced_data_object_from_procedure.py b/src/oci/data_integration/models/referenced_data_object_from_procedure.py index 542c8c0ce5..cad93b175e 100644 --- a/src/oci/data_integration/models/referenced_data_object_from_procedure.py +++ b/src/oci/data_integration/models/referenced_data_object_from_procedure.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/registry_metadata.py b/src/oci/data_integration/models/registry_metadata.py index 02030dfcb5..51f74e1090 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/rename_rule.py b/src/oci/data_integration/models/rename_rule.py index 8234092d44..a0c550901e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/resource_configuration.py b/src/oci/data_integration/models/resource_configuration.py index 74dc0bebf9..48567d91f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/resource_principal_auth_config.py b/src/oci/data_integration/models/resource_principal_auth_config.py index 8cc80332d0..d592a7452a 100644 --- a/src/oci/data_integration/models/resource_principal_auth_config.py +++ b/src/oci/data_integration/models/resource_principal_auth_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/rest_call_config.py b/src/oci/data_integration/models/rest_call_config.py index aff35a61c2..70d6fe0211 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/root_object.py b/src/oci/data_integration/models/root_object.py index 5edfced566..be23ede61a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/rule_based_entity_map.py b/src/oci/data_integration/models/rule_based_entity_map.py index 21e269d428..1316283add 100644 --- a/src/oci/data_integration/models/rule_based_entity_map.py +++ b/src/oci/data_integration/models/rule_based_entity_map.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 156507c10e..65d0e303f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/rule_type_config.py b/src/oci/data_integration/models/rule_type_config.py index f3051c2dc5..7c6019a187 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/runtime_operator.py b/src/oci/data_integration/models/runtime_operator.py index cf4f94f2a8..0b9a63a68b 100644 --- a/src/oci/data_integration/models/runtime_operator.py +++ b/src/oci/data_integration/models/runtime_operator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/runtime_operator_summary.py b/src/oci/data_integration/models/runtime_operator_summary.py index 936be49df6..b0dd848655 100644 --- a/src/oci/data_integration/models/runtime_operator_summary.py +++ b/src/oci/data_integration/models/runtime_operator_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/runtime_operator_summary_collection.py b/src/oci/data_integration/models/runtime_operator_summary_collection.py index 4c799ce5c0..943acbca93 100644 --- a/src/oci/data_integration/models/runtime_operator_summary_collection.py +++ b/src/oci/data_integration/models/runtime_operator_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/runtime_pipeline.py b/src/oci/data_integration/models/runtime_pipeline.py index 811874e86a..0d3194ea96 100644 --- a/src/oci/data_integration/models/runtime_pipeline.py +++ b/src/oci/data_integration/models/runtime_pipeline.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/runtime_pipeline_summary.py b/src/oci/data_integration/models/runtime_pipeline_summary.py index 8c1c66ce0f..8bb2a900fc 100644 --- a/src/oci/data_integration/models/runtime_pipeline_summary.py +++ b/src/oci/data_integration/models/runtime_pipeline_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/runtime_pipeline_summary_collection.py b/src/oci/data_integration/models/runtime_pipeline_summary_collection.py index 9bb480943e..1a72a0b9e3 100644 --- a/src/oci/data_integration/models/runtime_pipeline_summary_collection.py +++ b/src/oci/data_integration/models/runtime_pipeline_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/schedule.py b/src/oci/data_integration/models/schedule.py index 13d7fcc41a..c76c64e517 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/schedule_summary.py b/src/oci/data_integration/models/schedule_summary.py index f53583c44f..6a71dd61cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/schedule_summary_collection.py b/src/oci/data_integration/models/schedule_summary_collection.py index c70d24f178..6386ab1ecd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/schema.py b/src/oci/data_integration/models/schema.py index 7a084b8821..1d0b8aa4f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/schema_drift_config.py b/src/oci/data_integration/models/schema_drift_config.py index ad9032d02f..4ab9a23c24 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/schema_summary.py b/src/oci/data_integration/models/schema_summary.py index 7ef416d048..49adb878e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/schema_summary_collection.py b/src/oci/data_integration/models/schema_summary_collection.py index a8d6768311..aa865928c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/scope_reference.py b/src/oci/data_integration/models/scope_reference.py index 61c078f60f..e1f4021733 100644 --- a/src/oci/data_integration/models/scope_reference.py +++ b/src/oci/data_integration/models/scope_reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/script.py b/src/oci/data_integration/models/script.py index 177817272b..b4f7d78913 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/secret_config.py b/src/oci/data_integration/models/secret_config.py index 13edba46ff..130af2bc6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/select.py b/src/oci/data_integration/models/select.py index b2beb4c412..5bdd96b674 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/sensitive_attribute.py b/src/oci/data_integration/models/sensitive_attribute.py index cacf457cf9..c4db04cfae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/shape.py b/src/oci/data_integration/models/shape.py index 36caae03f9..514f4fc305 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/shape_details.py b/src/oci/data_integration/models/shape_details.py index 571618a738..7e90a0283b 100644 --- a/src/oci/data_integration/models/shape_details.py +++ b/src/oci/data_integration/models/shape_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/shape_field.py b/src/oci/data_integration/models/shape_field.py index eda02f85bc..2d720296aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/sort.py b/src/oci/data_integration/models/sort.py index 6f4664d3f7..2fa99822b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/sort_clause.py b/src/oci/data_integration/models/sort_clause.py index dedb9d276a..ca42204ff5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/sort_key.py b/src/oci/data_integration/models/sort_key.py index 54fd6acf49..eab2265200 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/sort_key_rule.py b/src/oci/data_integration/models/sort_key_rule.py index c3eab82b62..36cdf19833 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/sort_oper.py b/src/oci/data_integration/models/sort_oper.py index 72f4de6762..c8fe80568a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/source.py b/src/oci/data_integration/models/source.py index f262a37c0f..9cc65b4eb2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/source_application_info.py b/src/oci/data_integration/models/source_application_info.py index 99f60ee2a1..55127e52de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/split.py b/src/oci/data_integration/models/split.py index cde525fc80..6f3109d98a 100644 --- a/src/oci/data_integration/models/split.py +++ b/src/oci/data_integration/models/split.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/start_operator.py b/src/oci/data_integration/models/start_operator.py index fb6e112051..313cea1a8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/state.py b/src/oci/data_integration/models/state.py index 0c7ca15c0b..c682008abe 100644 --- a/src/oci/data_integration/models/state.py +++ b/src/oci/data_integration/models/state.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/structured_type.py b/src/oci/data_integration/models/structured_type.py index 521847deb8..a252b29eab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/target.py b/src/oci/data_integration/models/target.py index cd55d481ca..e0311012b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task.py b/src/oci/data_integration/models/task.py index 8a1d1bab8d..a39b83d06a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 b01bdd02a5..24c0b9b1b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 5cf4e0a3d5..f2617e546e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 67542645b8..76da4210da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 8cd684a23d..e599e89cc6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 72a95c6532..0ef914db9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 4d256d6a45..8b423923c2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_operator.py b/src/oci/data_integration/models/task_operator.py index 965e0edf28..ba2d95ab9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_run.py b/src/oci/data_integration/models/task_run.py index 647ebedcd4..9edd3eda57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_run_details.py b/src/oci/data_integration/models/task_run_details.py index d5c34466b8..4fbe15fafb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_run_lineage_details.py b/src/oci/data_integration/models/task_run_lineage_details.py index e313527230..a80baf2ee4 100644 --- a/src/oci/data_integration/models/task_run_lineage_details.py +++ b/src/oci/data_integration/models/task_run_lineage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_run_lineage_summary.py b/src/oci/data_integration/models/task_run_lineage_summary.py index 620a166312..b3bb6979c0 100644 --- a/src/oci/data_integration/models/task_run_lineage_summary.py +++ b/src/oci/data_integration/models/task_run_lineage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_run_lineage_summary_collection.py b/src/oci/data_integration/models/task_run_lineage_summary_collection.py index 1994f3f9e2..9b7b70bfba 100644 --- a/src/oci/data_integration/models/task_run_lineage_summary_collection.py +++ b/src/oci/data_integration/models/task_run_lineage_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 34ec83db9a..94ecc2b378 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_run_summary.py b/src/oci/data_integration/models/task_run_summary.py index 98d3d159fe..0de6e69166 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 2170274ce0..c100b48972 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_schedule.py b/src/oci/data_integration/models/task_schedule.py index 438bab38c4..55551cac69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_schedule_summary.py b/src/oci/data_integration/models/task_schedule_summary.py index 2e9f545b71..b4a592b288 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 f887c7cb09..e7fead09f1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_summary.py b/src/oci/data_integration/models/task_summary.py index 9525b3d7f5..9337b4fa13 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_summary_collection.py b/src/oci/data_integration/models/task_summary_collection.py index e6a1921395..9e090f2407 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 dde43fc936..68223b0f20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 c3e4ddc968..30ebf72adf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 346dd941bc..f8ed88d7d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 da7742b692..1fd91f5f55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 5d264d569b..3bad1ed706 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 64316c358b..f2ceb01758 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_validation.py b/src/oci/data_integration/models/task_validation.py index aed79f4b8f..3f0c154035 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/task_validation_summary.py b/src/oci/data_integration/models/task_validation_summary.py index f2d3a3655b..4a274c9fe1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 ab2973e3e0..7fd231e2ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/template.py b/src/oci/data_integration/models/template.py index 0b8541cdc8..7d5efabcd9 100644 --- a/src/oci/data_integration/models/template.py +++ b/src/oci/data_integration/models/template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/template_summary.py b/src/oci/data_integration/models/template_summary.py index 185881b7e0..fefb0166f3 100644 --- a/src/oci/data_integration/models/template_summary.py +++ b/src/oci/data_integration/models/template_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/template_summary_collection.py b/src/oci/data_integration/models/template_summary_collection.py index bfa25cd1d7..d12761599d 100644 --- a/src/oci/data_integration/models/template_summary_collection.py +++ b/src/oci/data_integration/models/template_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/time.py b/src/oci/data_integration/models/time.py index 85c3f56948..196d7b861d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/type_library.py b/src/oci/data_integration/models/type_library.py index 8686939409..88367d6802 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/type_list_rule.py b/src/oci/data_integration/models/type_list_rule.py index 4d9402e1fb..97d1251737 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/type_system.py b/src/oci/data_integration/models/type_system.py index e9db8fe9c5..463899baf3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/typed_expression.py b/src/oci/data_integration/models/typed_expression.py index e52fe9cda2..024062dc83 100644 --- a/src/oci/data_integration/models/typed_expression.py +++ b/src/oci/data_integration/models/typed_expression.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 20980f62c9..faf5ee5377 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/typed_object.py b/src/oci/data_integration/models/typed_object.py index f4b8ef4827..419e1c0ed6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/typed_object_wrapper.py b/src/oci/data_integration/models/typed_object_wrapper.py index 3549498e0c..bc07138ec3 100644 --- a/src/oci/data_integration/models/typed_object_wrapper.py +++ b/src/oci/data_integration/models/typed_object_wrapper.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/ui_properties.py b/src/oci/data_integration/models/ui_properties.py index af281aaf69..5260ce4bc5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/union.py b/src/oci/data_integration/models/union.py index c171d18a37..0c014eb956 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/unique_data_key.py b/src/oci/data_integration/models/unique_data_key.py index a6df7b7059..7bc7952864 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/unique_key.py b/src/oci/data_integration/models/unique_key.py index 12d41d0cc8..d98c149c2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_application_details.py b/src/oci/data_integration/models/update_application_details.py index 4d42a87d25..905a00d32a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_details.py b/src/oci/data_integration/models/update_connection_details.py index 7ec004a38c..d1efd04078 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 b319e4f6ad..f1a3ec2138 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 d24adf3ca5..96e6e4a0fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 a0afbc82e9..4a9ba65313 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 04fbcc41c6..97d084b779 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_bip.py b/src/oci/data_integration/models/update_connection_from_bip.py index 9b0330823f..034d2a487b 100644 --- a/src/oci/data_integration/models/update_connection_from_bip.py +++ b/src/oci/data_integration/models/update_connection_from_bip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_hdfs.py b/src/oci/data_integration/models/update_connection_from_hdfs.py index a23cd993e4..ba01b272b3 100644 --- a/src/oci/data_integration/models/update_connection_from_hdfs.py +++ b/src/oci/data_integration/models/update_connection_from_hdfs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 487aea9c82..e671c5deb4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_lake.py b/src/oci/data_integration/models/update_connection_from_lake.py index 06ca7e0959..d20b29be69 100644 --- a/src/oci/data_integration/models/update_connection_from_lake.py +++ b/src/oci/data_integration/models/update_connection_from_lake.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9bbd35fbfe..f2b7a5c536 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_my_sql_heat_wave.py b/src/oci/data_integration/models/update_connection_from_my_sql_heat_wave.py index 9e1b3fa74a..e8d5875c77 100644 --- a/src/oci/data_integration/models/update_connection_from_my_sql_heat_wave.py +++ b/src/oci/data_integration/models/update_connection_from_my_sql_heat_wave.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_o_auth2.py b/src/oci/data_integration/models/update_connection_from_o_auth2.py index 079d6f9c22..10b6a6f0bc 100644 --- a/src/oci/data_integration/models/update_connection_from_o_auth2.py +++ b/src/oci/data_integration/models/update_connection_from_o_auth2.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 fd83bb39a2..104d37de5c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 b802e60db9..8b8f5eda99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_oracle_ebs.py b/src/oci/data_integration/models/update_connection_from_oracle_ebs.py index d8da74ea9a..b31bfbf197 100644 --- a/src/oci/data_integration/models/update_connection_from_oracle_ebs.py +++ b/src/oci/data_integration/models/update_connection_from_oracle_ebs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_oracle_people_soft.py b/src/oci/data_integration/models/update_connection_from_oracle_people_soft.py index b36ee52ef7..ee7c84141e 100644 --- a/src/oci/data_integration/models/update_connection_from_oracle_people_soft.py +++ b/src/oci/data_integration/models/update_connection_from_oracle_people_soft.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_oracle_siebel.py b/src/oci/data_integration/models/update_connection_from_oracle_siebel.py index e382195b7e..de11db66c6 100644 --- a/src/oci/data_integration/models/update_connection_from_oracle_siebel.py +++ b/src/oci/data_integration/models/update_connection_from_oracle_siebel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_rest_basic_auth.py b/src/oci/data_integration/models/update_connection_from_rest_basic_auth.py index b0053db4d4..fd058a1a35 100644 --- a/src/oci/data_integration/models/update_connection_from_rest_basic_auth.py +++ b/src/oci/data_integration/models/update_connection_from_rest_basic_auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_connection_from_rest_no_auth.py b/src/oci/data_integration/models/update_connection_from_rest_no_auth.py index 25ab054840..544abed045 100644 --- a/src/oci/data_integration/models/update_connection_from_rest_no_auth.py +++ b/src/oci/data_integration/models/update_connection_from_rest_no_auth.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_copy_object_request_details.py b/src/oci/data_integration/models/update_copy_object_request_details.py index 8149c65355..c3aadafd0e 100644 --- a/src/oci/data_integration/models/update_copy_object_request_details.py +++ b/src/oci/data_integration/models/update_copy_object_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 6d178f6052..5bf7057e46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 6058f8885d..ed9e34a253 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 f5b5812148..ae327193bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 3ea834780b..5a7f88ad29 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 0121f9d9bb..5f30f17a19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_data_asset_from_hdfs.py b/src/oci/data_integration/models/update_data_asset_from_hdfs.py index 94fc377c29..77e4efb972 100644 --- a/src/oci/data_integration/models/update_data_asset_from_hdfs.py +++ b/src/oci/data_integration/models/update_data_asset_from_hdfs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 e7806f887a..4883f1ba88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_data_asset_from_lake.py b/src/oci/data_integration/models/update_data_asset_from_lake.py index 5ef8f85cb3..851e85bca5 100644 --- a/src/oci/data_integration/models/update_data_asset_from_lake.py +++ b/src/oci/data_integration/models/update_data_asset_from_lake.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 6033a596e2..d13b59e3fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_data_asset_from_my_sql_heat_wave.py b/src/oci/data_integration/models/update_data_asset_from_my_sql_heat_wave.py index 94652e4b56..25c66da9b7 100644 --- a/src/oci/data_integration/models/update_data_asset_from_my_sql_heat_wave.py +++ b/src/oci/data_integration/models/update_data_asset_from_my_sql_heat_wave.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 b2c54203ff..2404644db6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 0206d5ed73..3db62d243a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_data_asset_from_oracle_ebs.py b/src/oci/data_integration/models/update_data_asset_from_oracle_ebs.py index d03eaef819..2e83087187 100644 --- a/src/oci/data_integration/models/update_data_asset_from_oracle_ebs.py +++ b/src/oci/data_integration/models/update_data_asset_from_oracle_ebs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_data_asset_from_oracle_people_soft.py b/src/oci/data_integration/models/update_data_asset_from_oracle_people_soft.py index d80c6e15c8..207c21e35a 100644 --- a/src/oci/data_integration/models/update_data_asset_from_oracle_people_soft.py +++ b/src/oci/data_integration/models/update_data_asset_from_oracle_people_soft.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_data_asset_from_oracle_siebel.py b/src/oci/data_integration/models/update_data_asset_from_oracle_siebel.py index e7144ad452..dea9541579 100644 --- a/src/oci/data_integration/models/update_data_asset_from_oracle_siebel.py +++ b/src/oci/data_integration/models/update_data_asset_from_oracle_siebel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_data_asset_from_rest.py b/src/oci/data_integration/models/update_data_asset_from_rest.py index 185f276d23..bcd2beb166 100644 --- a/src/oci/data_integration/models/update_data_asset_from_rest.py +++ b/src/oci/data_integration/models/update_data_asset_from_rest.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 8a7a15a868..3b8bbe06fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_detailed_description_details.py b/src/oci/data_integration/models/update_detailed_description_details.py index f15e94d2fb..dca6bd1f71 100644 --- a/src/oci/data_integration/models/update_detailed_description_details.py +++ b/src/oci/data_integration/models/update_detailed_description_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_dis_application_details.py b/src/oci/data_integration/models/update_dis_application_details.py index 7a489f9168..b0f8719021 100644 --- a/src/oci/data_integration/models/update_dis_application_details.py +++ b/src/oci/data_integration/models/update_dis_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_export_request_details.py b/src/oci/data_integration/models/update_export_request_details.py index b610fe9c84..191bc4596b 100644 --- a/src/oci/data_integration/models/update_export_request_details.py +++ b/src/oci/data_integration/models/update_export_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 70ff1fe1ef..2ad53ba606 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_folder_details.py b/src/oci/data_integration/models/update_folder_details.py index 2b094bd11e..6f9783911c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 d85d63c294..62791b8fb0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_import_request_details.py b/src/oci/data_integration/models/update_import_request_details.py index 408b61fa72..f19e8a1969 100644 --- a/src/oci/data_integration/models/update_import_request_details.py +++ b/src/oci/data_integration/models/update_import_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_pipeline_details.py b/src/oci/data_integration/models/update_pipeline_details.py index d91db92687..4e6f651d4e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_project_details.py b/src/oci/data_integration/models/update_project_details.py index e7fa68777c..292adaa5eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_reference_details.py b/src/oci/data_integration/models/update_reference_details.py index 23ac423c04..eb294af6a7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_schedule_details.py b/src/oci/data_integration/models/update_schedule_details.py index 9c5fcb81a7..d573450567 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_task_details.py b/src/oci/data_integration/models/update_task_details.py index 71fcb861fc..1bf9b2b072 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 e89cda074c..d77519d952 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 386be1bf39..c3aca352da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 3ffeadbd32..9263ff835f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 42fc8b1acd..c6f7565626 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 9c90290901..0e9b00242c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 bdf173ac28..af2ae61bf0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 41a8fc6052..51e34a75a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 2e1282272f..15803c40eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 87b0dad3e1..3425d778f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/update_workspace_details.py b/src/oci/data_integration/models/update_workspace_details.py index 2b8ce9c093..10df653a34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/user_defined_function.py b/src/oci/data_integration/models/user_defined_function.py index 4800d98239..705fe0fefd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 29e6d1e2c1..302e3be32a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 afa9fcaf62..23c39d88eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 96ae836035..30458a6298 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 967afcc295..54d877ce5c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 c5cf368c5e..07e4859f22 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 b621d4945d..182f679481 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/validation_message.py b/src/oci/data_integration/models/validation_message.py index 5bf8e0cb77..8ab33d9282 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/variable.py b/src/oci/data_integration/models/variable.py index a3a2290c07..e1520777d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/weekly_frequency_details.py b/src/oci/data_integration/models/weekly_frequency_details.py index c9c72c08a3..ce709010d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/work_request.py b/src/oci/data_integration/models/work_request.py index 3fd9e4a5a9..d316b47824 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/work_request_error.py b/src/oci/data_integration/models/work_request_error.py index 85f4d45400..796e27557c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 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 d31e984ede..3544c3f2a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/work_request_resource.py b/src/oci/data_integration/models/work_request_resource.py index 074cc167f7..0f873acd0d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/work_request_summary.py b/src/oci/data_integration/models/work_request_summary.py index 179b35badc..b64f78949b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/workspace.py b/src/oci/data_integration/models/workspace.py index 319f9df075..0177787c15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/workspace_summary.py b/src/oci/data_integration/models/workspace_summary.py index 89853ae0d6..430e124c54 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_integration/models/write_operation_config.py b/src/oci/data_integration/models/write_operation_config.py index ac1a227dd5..efd6995c92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200430 diff --git a/src/oci/data_labeling_service/__init__.py b/src/oci/data_labeling_service/__init__.py index cb560e331b..3ca9cb3044 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 d3fe44b5c2..dd9165d6e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 8c8d1ddf10..3c2dc4b151 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/__init__.py b/src/oci/data_labeling_service/models/__init__.py index 7cb0035283..8088c2fb8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 874a3c5965..d04d7814a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/annotation_format.py b/src/oci/data_labeling_service/models/annotation_format.py index 48d28551fb..b17771cb51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 a35c8b6d51..123da387f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 6ad8e7fdf5..49cbf0d74b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 96cb53e0f1..f532a71302 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 df575c5efb..f5fadd6783 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/dataset.py b/src/oci/data_labeling_service/models/dataset.py index eaffd5621e..f2d36775b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/dataset_collection.py b/src/oci/data_labeling_service/models/dataset_collection.py index 8459961abd..177a86b240 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 c3e8e21176..6793b34740 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 7c8d4aa803..e6254148d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/dataset_summary.py b/src/oci/data_labeling_service/models/dataset_summary.py index f46eb8c80f..9bf9c17c6e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/delimited_file_type_metadata.py b/src/oci/data_labeling_service/models/delimited_file_type_metadata.py index ab615297cb..1af0860f35 100644 --- a/src/oci/data_labeling_service/models/delimited_file_type_metadata.py +++ b/src/oci/data_labeling_service/models/delimited_file_type_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 45c0564c59..4c2cb76c10 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/export_format.py b/src/oci/data_labeling_service/models/export_format.py index ecd4c0a412..b26cb1b615 100644 --- a/src/oci/data_labeling_service/models/export_format.py +++ b/src/oci/data_labeling_service/models/export_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 9a029c6c17..1de47f55f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 000ce2910a..a34aa21b92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/import_format.py b/src/oci/data_labeling_service/models/import_format.py index f93e9a026d..372779fe91 100644 --- a/src/oci/data_labeling_service/models/import_format.py +++ b/src/oci/data_labeling_service/models/import_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/import_metadata_path.py b/src/oci/data_labeling_service/models/import_metadata_path.py index 5ae047acfc..0277fd2e74 100644 --- a/src/oci/data_labeling_service/models/import_metadata_path.py +++ b/src/oci/data_labeling_service/models/import_metadata_path.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/import_pre_annotated_data_details.py b/src/oci/data_labeling_service/models/import_pre_annotated_data_details.py index 6cbbc8d0fc..07988d7964 100644 --- a/src/oci/data_labeling_service/models/import_pre_annotated_data_details.py +++ b/src/oci/data_labeling_service/models/import_pre_annotated_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/initial_import_dataset_configuration.py b/src/oci/data_labeling_service/models/initial_import_dataset_configuration.py index 3c0c69ec5a..0a7c1ee9af 100644 --- a/src/oci/data_labeling_service/models/initial_import_dataset_configuration.py +++ b/src/oci/data_labeling_service/models/initial_import_dataset_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 3d2e85b1e2..af4c2fa634 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/label.py b/src/oci/data_labeling_service/models/label.py index f89eb7752d..81c0f5b2af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/label_set.py b/src/oci/data_labeling_service/models/label_set.py index 6e92a2d214..c58a015b90 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/object_storage_import_metadata_path.py b/src/oci/data_labeling_service/models/object_storage_import_metadata_path.py index f04efe59fa..559dd549c7 100644 --- a/src/oci/data_labeling_service/models/object_storage_import_metadata_path.py +++ b/src/oci/data_labeling_service/models/object_storage_import_metadata_path.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 c47f9eae80..1f16c79891 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 64dfb4153c..4cd747392e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 cac04fe608..900103804c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 abd5951db6..8df0a3101d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 d341dc844e..2117b6014d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 b0f6fa28ef..70a99562ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 bcf353bf3b..7a9abf15be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/text_file_type_metadata.py b/src/oci/data_labeling_service/models/text_file_type_metadata.py index eb2074eaa9..4d3f4d6c2d 100644 --- a/src/oci/data_labeling_service/models/text_file_type_metadata.py +++ b/src/oci/data_labeling_service/models/text_file_type_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 483a089c6c..fc8921e7d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service/models/work_request.py b/src/oci/data_labeling_service/models/work_request.py index ec4ad3d5a1..0d2e29f3f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 d66d1ce7ef..087cb169b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 2c1e1839d0..4c5615d17e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 54c527484d..4199a5dd5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 1068ed3efe..f0ba99bbf9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 a713ec42b6..527e911280 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 0d8fb0061d..1674c45d25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 9751665d7b..864fe715c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/__init__.py b/src/oci/data_labeling_service_dataplane/__init__.py index 5b2b9ac4e7..240032453c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 5579c0f502..0d8a4992a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 bd05d8170a..a25388ac42 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/__init__.py b/src/oci/data_labeling_service_dataplane/models/__init__.py index c71870efae..2fef0f7a18 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/annotation.py b/src/oci/data_labeling_service_dataplane/models/annotation.py index 781bfabb34..3888723f3c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 8943c9bf72..d37a44a6e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 f6be072017..65089d7afe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 0e83c67412..8e91f35d99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 52c8bd3413..7fd18154b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 b9b191a15c..9ce0873152 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 01cf402738..fb01f9bab1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 8883be46a5..1d5d46dbf2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 78df51e438..c373d0782d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 c4aa9484c7..23534f21f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 48ef57b09c..0c2807dc97 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/dataset.py b/src/oci/data_labeling_service_dataplane/models/dataset.py index d9002930a2..c724998beb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 17f377ce8c..50cf37cf46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 4ad8ec152f..1798e67799 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/delimited_file_type_metadata.py b/src/oci/data_labeling_service_dataplane/models/delimited_file_type_metadata.py index 5c32f23d64..42e7ae26f7 100644 --- a/src/oci/data_labeling_service_dataplane/models/delimited_file_type_metadata.py +++ b/src/oci/data_labeling_service_dataplane/models/delimited_file_type_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 22e7ec50ed..27d0f7dfb9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/document_entity_metadata.py b/src/oci/data_labeling_service_dataplane/models/document_entity_metadata.py index e0061ac1b8..741479d2fb 100644 --- a/src/oci/data_labeling_service_dataplane/models/document_entity_metadata.py +++ b/src/oci/data_labeling_service_dataplane/models/document_entity_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/document_metadata.py b/src/oci/data_labeling_service_dataplane/models/document_metadata.py index 7f641a8346..d05a37ca63 100644 --- a/src/oci/data_labeling_service_dataplane/models/document_metadata.py +++ b/src/oci/data_labeling_service_dataplane/models/document_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/entity.py b/src/oci/data_labeling_service_dataplane/models/entity.py index ff9570d68d..cad62bc30e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 67c0c3c641..bf464ec95c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 16bd07aeb4..8b9f4a749a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/image_metadata.py b/src/oci/data_labeling_service_dataplane/models/image_metadata.py index 4fc7f6a2eb..5e47618df8 100644 --- a/src/oci/data_labeling_service_dataplane/models/image_metadata.py +++ b/src/oci/data_labeling_service_dataplane/models/image_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 9b69ef91ac..e46440e6cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/import_format.py b/src/oci/data_labeling_service_dataplane/models/import_format.py index f93e9a026d..372779fe91 100644 --- a/src/oci/data_labeling_service_dataplane/models/import_format.py +++ b/src/oci/data_labeling_service_dataplane/models/import_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/import_metadata_path.py b/src/oci/data_labeling_service_dataplane/models/import_metadata_path.py index 3bec232444..e055c37b76 100644 --- a/src/oci/data_labeling_service_dataplane/models/import_metadata_path.py +++ b/src/oci/data_labeling_service_dataplane/models/import_metadata_path.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/initial_import_dataset_configuration.py b/src/oci/data_labeling_service_dataplane/models/initial_import_dataset_configuration.py index 6d5ca9a87e..04550e075a 100644 --- a/src/oci/data_labeling_service_dataplane/models/initial_import_dataset_configuration.py +++ b/src/oci/data_labeling_service_dataplane/models/initial_import_dataset_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 3d2e85b1e2..af4c2fa634 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/key_value_selection_entity.py b/src/oci/data_labeling_service_dataplane/models/key_value_selection_entity.py index f27ce788c7..8635335cc9 100644 --- a/src/oci/data_labeling_service_dataplane/models/key_value_selection_entity.py +++ b/src/oci/data_labeling_service_dataplane/models/key_value_selection_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/label.py b/src/oci/data_labeling_service_dataplane/models/label.py index f7885c7116..d34791caf7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 f52b464b22..167f980340 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 31c4ee7541..40decddbbf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 b469376733..9907834103 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 4d45e27623..613adba5bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/object_storage_import_metadata_path.py b/src/oci/data_labeling_service_dataplane/models/object_storage_import_metadata_path.py index 9acaee6d54..b199c10e02 100644 --- a/src/oci/data_labeling_service_dataplane/models/object_storage_import_metadata_path.py +++ b/src/oci/data_labeling_service_dataplane/models/object_storage_import_metadata_path.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 27710f9ae5..2577587ca1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/record.py b/src/oci/data_labeling_service_dataplane/models/record.py index 439b89a6c5..01c69a44fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 5f410c0542..2af2734a7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 912a7c69c3..9451413a87 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 f2874fe30d..269b61a5d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 8bc5e95c47..c6960ee968 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/record_metadata.py b/src/oci/data_labeling_service_dataplane/models/record_metadata.py index 433a4ae751..b1f58f6dd3 100644 --- a/src/oci/data_labeling_service_dataplane/models/record_metadata.py +++ b/src/oci/data_labeling_service_dataplane/models/record_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 de7e279889..64ddc970ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 dd091e78fe..17d4f1d69a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 bec711d1c4..827d4233e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/text_file_type_metadata.py b/src/oci/data_labeling_service_dataplane/models/text_file_type_metadata.py index 8ee7a2c8ca..981b431c77 100644 --- a/src/oci/data_labeling_service_dataplane/models/text_file_type_metadata.py +++ b/src/oci/data_labeling_service_dataplane/models/text_file_type_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_labeling_service_dataplane/models/text_metadata.py b/src/oci/data_labeling_service_dataplane/models/text_metadata.py index a9419c2572..832870538a 100644 --- a/src/oci/data_labeling_service_dataplane/models/text_metadata.py +++ b/src/oci/data_labeling_service_dataplane/models/text_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 f7cff62eb8..40dbf36790 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 3a43b6c2b0..e43c9a91fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 0dcde78881..e725c8008b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 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 a7f5497ae2..92596a13f3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211001 diff --git a/src/oci/data_safe/__init__.py b/src/oci/data_safe/__init__.py index 4f4bca04fc..b1f15ff0ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/data_safe_client.py b/src/oci/data_safe/data_safe_client.py index 880b08ae99..c6b92ff080 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 aaaab775d4..711352b443 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/__init__.py b/src/oci/data_safe/models/__init__.py index 7d1e4829cf..1a547aed4c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 8e6880b1f4..80f792c0eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert.py b/src/oci/data_safe/models/alert.py index cb40eba876..ddc1280540 100644 --- a/src/oci/data_safe/models/alert.py +++ b/src/oci/data_safe/models/alert.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_aggregation_items.py b/src/oci/data_safe/models/alert_aggregation_items.py index 6e055e880c..3a78858889 100644 --- a/src/oci/data_safe/models/alert_aggregation_items.py +++ b/src/oci/data_safe/models/alert_aggregation_items.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_analytics_collection.py b/src/oci/data_safe/models/alert_analytics_collection.py index 199e2f46ff..9840950a50 100644 --- a/src/oci/data_safe/models/alert_analytics_collection.py +++ b/src/oci/data_safe/models/alert_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_collection.py b/src/oci/data_safe/models/alert_collection.py index 53bc47b0ab..750feed999 100644 --- a/src/oci/data_safe/models/alert_collection.py +++ b/src/oci/data_safe/models/alert_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_policy.py b/src/oci/data_safe/models/alert_policy.py index 7cd24e6d11..a99e2df775 100644 --- a/src/oci/data_safe/models/alert_policy.py +++ b/src/oci/data_safe/models/alert_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_policy_collection.py b/src/oci/data_safe/models/alert_policy_collection.py index fed3c9f435..4dc1e0ad9c 100644 --- a/src/oci/data_safe/models/alert_policy_collection.py +++ b/src/oci/data_safe/models/alert_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_policy_rule.py b/src/oci/data_safe/models/alert_policy_rule.py index 4bdf5f2634..ae9642acc7 100644 --- a/src/oci/data_safe/models/alert_policy_rule.py +++ b/src/oci/data_safe/models/alert_policy_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_policy_rule_collection.py b/src/oci/data_safe/models/alert_policy_rule_collection.py index 75acd18c2f..b42293a5d3 100644 --- a/src/oci/data_safe/models/alert_policy_rule_collection.py +++ b/src/oci/data_safe/models/alert_policy_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_policy_rule_summary.py b/src/oci/data_safe/models/alert_policy_rule_summary.py index 050e19d007..7534c2e3f9 100644 --- a/src/oci/data_safe/models/alert_policy_rule_summary.py +++ b/src/oci/data_safe/models/alert_policy_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_policy_summary.py b/src/oci/data_safe/models/alert_policy_summary.py index d7dca2f225..c7ebdda78d 100644 --- a/src/oci/data_safe/models/alert_policy_summary.py +++ b/src/oci/data_safe/models/alert_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alert_summary.py b/src/oci/data_safe/models/alert_summary.py index aca8924032..396c015d7b 100644 --- a/src/oci/data_safe/models/alert_summary.py +++ b/src/oci/data_safe/models/alert_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alerts_aggregation_dimension.py b/src/oci/data_safe/models/alerts_aggregation_dimension.py index 909bce8671..55294714b5 100644 --- a/src/oci/data_safe/models/alerts_aggregation_dimension.py +++ b/src/oci/data_safe/models/alerts_aggregation_dimension.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/alerts_update_details.py b/src/oci/data_safe/models/alerts_update_details.py index cbd9c55f91..48033aed72 100644 --- a/src/oci/data_safe/models/alerts_update_details.py +++ b/src/oci/data_safe/models/alerts_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/apply_discovery_job_results_details.py b/src/oci/data_safe/models/apply_discovery_job_results_details.py index 285c277ae1..04639aa1b8 100644 --- a/src/oci/data_safe/models/apply_discovery_job_results_details.py +++ b/src/oci/data_safe/models/apply_discovery_job_results_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/apply_sdm_masking_policy_difference_details.py b/src/oci/data_safe/models/apply_sdm_masking_policy_difference_details.py index 1d7a6e3881..091e1834ff 100644 --- a/src/oci/data_safe/models/apply_sdm_masking_policy_difference_details.py +++ b/src/oci/data_safe/models/apply_sdm_masking_policy_difference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_archive_retrieval.py b/src/oci/data_safe/models/audit_archive_retrieval.py index a4a0b04eff..2e2ede42f8 100644 --- a/src/oci/data_safe/models/audit_archive_retrieval.py +++ b/src/oci/data_safe/models/audit_archive_retrieval.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_archive_retrieval_collection.py b/src/oci/data_safe/models/audit_archive_retrieval_collection.py index b7fde050ee..833025175b 100644 --- a/src/oci/data_safe/models/audit_archive_retrieval_collection.py +++ b/src/oci/data_safe/models/audit_archive_retrieval_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_archive_retrieval_summary.py b/src/oci/data_safe/models/audit_archive_retrieval_summary.py index 2a0af9eedf..5f4abb166e 100644 --- a/src/oci/data_safe/models/audit_archive_retrieval_summary.py +++ b/src/oci/data_safe/models/audit_archive_retrieval_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_conditions.py b/src/oci/data_safe/models/audit_conditions.py index 1cdd3f65b5..b5dc24fb2a 100644 --- a/src/oci/data_safe/models/audit_conditions.py +++ b/src/oci/data_safe/models/audit_conditions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_event_aggregation_dimensions.py b/src/oci/data_safe/models/audit_event_aggregation_dimensions.py index 26d19d6f7f..e0718bc577 100644 --- a/src/oci/data_safe/models/audit_event_aggregation_dimensions.py +++ b/src/oci/data_safe/models/audit_event_aggregation_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_event_aggregation_items.py b/src/oci/data_safe/models/audit_event_aggregation_items.py index 876b1f890b..a1da9b30ca 100644 --- a/src/oci/data_safe/models/audit_event_aggregation_items.py +++ b/src/oci/data_safe/models/audit_event_aggregation_items.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_event_analytics_collection.py b/src/oci/data_safe/models/audit_event_analytics_collection.py index 70422e29d7..3cb83d0134 100644 --- a/src/oci/data_safe/models/audit_event_analytics_collection.py +++ b/src/oci/data_safe/models/audit_event_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_event_collection.py b/src/oci/data_safe/models/audit_event_collection.py index d2dcccf2fa..8fbd823c3a 100644 --- a/src/oci/data_safe/models/audit_event_collection.py +++ b/src/oci/data_safe/models/audit_event_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_event_summary.py b/src/oci/data_safe/models/audit_event_summary.py index 6ed0bedfce..aa013df20e 100644 --- a/src/oci/data_safe/models/audit_event_summary.py +++ b/src/oci/data_safe/models/audit_event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_policy.py b/src/oci/data_safe/models/audit_policy.py index 51d6f5a32f..4deeacdd0f 100644 --- a/src/oci/data_safe/models/audit_policy.py +++ b/src/oci/data_safe/models/audit_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_policy_aggregation_items.py b/src/oci/data_safe/models/audit_policy_aggregation_items.py index 7d7b6d7102..4cdd05ee2f 100644 --- a/src/oci/data_safe/models/audit_policy_aggregation_items.py +++ b/src/oci/data_safe/models/audit_policy_aggregation_items.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_policy_analytic_collection.py b/src/oci/data_safe/models/audit_policy_analytic_collection.py index 4215282949..c29f8057d7 100644 --- a/src/oci/data_safe/models/audit_policy_analytic_collection.py +++ b/src/oci/data_safe/models/audit_policy_analytic_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_policy_collection.py b/src/oci/data_safe/models/audit_policy_collection.py index e7867621e5..cb67310901 100644 --- a/src/oci/data_safe/models/audit_policy_collection.py +++ b/src/oci/data_safe/models/audit_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_policy_dimensions.py b/src/oci/data_safe/models/audit_policy_dimensions.py index da6eaaf999..7a115b5c95 100644 --- a/src/oci/data_safe/models/audit_policy_dimensions.py +++ b/src/oci/data_safe/models/audit_policy_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_policy_summary.py b/src/oci/data_safe/models/audit_policy_summary.py index 5e6dfc4b87..a4a57f01a1 100644 --- a/src/oci/data_safe/models/audit_policy_summary.py +++ b/src/oci/data_safe/models/audit_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_profile.py b/src/oci/data_safe/models/audit_profile.py index ac1ae9a7a8..9c235353ca 100644 --- a/src/oci/data_safe/models/audit_profile.py +++ b/src/oci/data_safe/models/audit_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_profile_aggregation_items.py b/src/oci/data_safe/models/audit_profile_aggregation_items.py index 1577beb0fc..b9711404e1 100644 --- a/src/oci/data_safe/models/audit_profile_aggregation_items.py +++ b/src/oci/data_safe/models/audit_profile_aggregation_items.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_profile_analytic_collection.py b/src/oci/data_safe/models/audit_profile_analytic_collection.py index 534463422d..41b20e615a 100644 --- a/src/oci/data_safe/models/audit_profile_analytic_collection.py +++ b/src/oci/data_safe/models/audit_profile_analytic_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_profile_collection.py b/src/oci/data_safe/models/audit_profile_collection.py index 1bbe7bac7d..72db5f1be8 100644 --- a/src/oci/data_safe/models/audit_profile_collection.py +++ b/src/oci/data_safe/models/audit_profile_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_profile_dimensions.py b/src/oci/data_safe/models/audit_profile_dimensions.py index 14066a883e..3a4f7546d1 100644 --- a/src/oci/data_safe/models/audit_profile_dimensions.py +++ b/src/oci/data_safe/models/audit_profile_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_profile_summary.py b/src/oci/data_safe/models/audit_profile_summary.py index 7afbb90501..4d76ab3e63 100644 --- a/src/oci/data_safe/models/audit_profile_summary.py +++ b/src/oci/data_safe/models/audit_profile_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_specification.py b/src/oci/data_safe/models/audit_specification.py index 306fbfc491..b4918b9c44 100644 --- a/src/oci/data_safe/models/audit_specification.py +++ b/src/oci/data_safe/models/audit_specification.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_trail.py b/src/oci/data_safe/models/audit_trail.py index fe7cb05a51..a4de88e38a 100644 --- a/src/oci/data_safe/models/audit_trail.py +++ b/src/oci/data_safe/models/audit_trail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_trail_aggregation_items.py b/src/oci/data_safe/models/audit_trail_aggregation_items.py index 473d6549b0..bf119d32ec 100644 --- a/src/oci/data_safe/models/audit_trail_aggregation_items.py +++ b/src/oci/data_safe/models/audit_trail_aggregation_items.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_trail_analytic_collection.py b/src/oci/data_safe/models/audit_trail_analytic_collection.py index fbbef77fce..c46f08b0bc 100644 --- a/src/oci/data_safe/models/audit_trail_analytic_collection.py +++ b/src/oci/data_safe/models/audit_trail_analytic_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_trail_collection.py b/src/oci/data_safe/models/audit_trail_collection.py index 4ce32c5606..20472bc0ae 100644 --- a/src/oci/data_safe/models/audit_trail_collection.py +++ b/src/oci/data_safe/models/audit_trail_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_trail_dimensions.py b/src/oci/data_safe/models/audit_trail_dimensions.py index f85cbb3a72..de3cbb4914 100644 --- a/src/oci/data_safe/models/audit_trail_dimensions.py +++ b/src/oci/data_safe/models/audit_trail_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/audit_trail_summary.py b/src/oci/data_safe/models/audit_trail_summary.py index bb9f4b201c..300dc1e221 100644 --- a/src/oci/data_safe/models/audit_trail_summary.py +++ b/src/oci/data_safe/models/audit_trail_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/autonomous_database_details.py b/src/oci/data_safe/models/autonomous_database_details.py index 69c15c66a2..d85c9f2b17 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/available_audit_volume_collection.py b/src/oci/data_safe/models/available_audit_volume_collection.py index 3dac713985..2fe45ce760 100644 --- a/src/oci/data_safe/models/available_audit_volume_collection.py +++ b/src/oci/data_safe/models/available_audit_volume_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/available_audit_volume_summary.py b/src/oci/data_safe/models/available_audit_volume_summary.py index 960e268773..bbb5687f80 100644 --- a/src/oci/data_safe/models/available_audit_volume_summary.py +++ b/src/oci/data_safe/models/available_audit_volume_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/bulk_create_sql_firewall_allowed_sqls_details.py b/src/oci/data_safe/models/bulk_create_sql_firewall_allowed_sqls_details.py index 4b08a37838..079c376a8e 100644 --- a/src/oci/data_safe/models/bulk_create_sql_firewall_allowed_sqls_details.py +++ b/src/oci/data_safe/models/bulk_create_sql_firewall_allowed_sqls_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/bulk_delete_sql_firewall_allowed_sqls_details.py b/src/oci/data_safe/models/bulk_delete_sql_firewall_allowed_sqls_details.py index ecd67959bf..50aa586b61 100644 --- a/src/oci/data_safe/models/bulk_delete_sql_firewall_allowed_sqls_details.py +++ b/src/oci/data_safe/models/bulk_delete_sql_firewall_allowed_sqls_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/calculate_audit_volume_available_details.py b/src/oci/data_safe/models/calculate_audit_volume_available_details.py index fc96477d64..55406ca218 100644 --- a/src/oci/data_safe/models/calculate_audit_volume_available_details.py +++ b/src/oci/data_safe/models/calculate_audit_volume_available_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/calculate_audit_volume_collected_details.py b/src/oci/data_safe/models/calculate_audit_volume_collected_details.py index 1d096453b6..6d815e03a0 100644 --- a/src/oci/data_safe/models/calculate_audit_volume_collected_details.py +++ b/src/oci/data_safe/models/calculate_audit_volume_collected_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_alert_compartment_details.py b/src/oci/data_safe/models/change_alert_compartment_details.py index 17582832c0..56eeba844c 100644 --- a/src/oci/data_safe/models/change_alert_compartment_details.py +++ b/src/oci/data_safe/models/change_alert_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_alert_policy_compartment_details.py b/src/oci/data_safe/models/change_alert_policy_compartment_details.py index 54d25cbbc4..e007eb2e43 100644 --- a/src/oci/data_safe/models/change_alert_policy_compartment_details.py +++ b/src/oci/data_safe/models/change_alert_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_audit_archive_retrieval_compartment_details.py b/src/oci/data_safe/models/change_audit_archive_retrieval_compartment_details.py index fb5f992316..8f5d82b1b0 100644 --- a/src/oci/data_safe/models/change_audit_archive_retrieval_compartment_details.py +++ b/src/oci/data_safe/models/change_audit_archive_retrieval_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_audit_policy_compartment_details.py b/src/oci/data_safe/models/change_audit_policy_compartment_details.py index e4faf586fd..6e6b041485 100644 --- a/src/oci/data_safe/models/change_audit_policy_compartment_details.py +++ b/src/oci/data_safe/models/change_audit_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_audit_profile_compartment_details.py b/src/oci/data_safe/models/change_audit_profile_compartment_details.py index 1a2acfc36e..b155dbbd6a 100644 --- a/src/oci/data_safe/models/change_audit_profile_compartment_details.py +++ b/src/oci/data_safe/models/change_audit_profile_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 79663934c2..d50b080203 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_database_security_config_compartment_details.py b/src/oci/data_safe/models/change_database_security_config_compartment_details.py index f8bd0d6039..e8fc2e06de 100644 --- a/src/oci/data_safe/models/change_database_security_config_compartment_details.py +++ b/src/oci/data_safe/models/change_database_security_config_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_discovery_job_compartment_details.py b/src/oci/data_safe/models/change_discovery_job_compartment_details.py index c991aaf264..f73e216ba2 100644 --- a/src/oci/data_safe/models/change_discovery_job_compartment_details.py +++ b/src/oci/data_safe/models/change_discovery_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_library_masking_format_compartment_details.py b/src/oci/data_safe/models/change_library_masking_format_compartment_details.py index 21d862eca2..f616ffa902 100644 --- a/src/oci/data_safe/models/change_library_masking_format_compartment_details.py +++ b/src/oci/data_safe/models/change_library_masking_format_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_masking_policy_compartment_details.py b/src/oci/data_safe/models/change_masking_policy_compartment_details.py index 6c95e275b2..d88b281529 100644 --- a/src/oci/data_safe/models/change_masking_policy_compartment_details.py +++ b/src/oci/data_safe/models/change_masking_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_masking_policy_health_report_compartment_details.py b/src/oci/data_safe/models/change_masking_policy_health_report_compartment_details.py index 71c0df3029..ed9f8d3d5d 100644 --- a/src/oci/data_safe/models/change_masking_policy_health_report_compartment_details.py +++ b/src/oci/data_safe/models/change_masking_policy_health_report_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 3ec72c3ebc..387b671f03 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_report_compartment_details.py b/src/oci/data_safe/models/change_report_compartment_details.py index 74be6ab14a..35284da513 100644 --- a/src/oci/data_safe/models/change_report_compartment_details.py +++ b/src/oci/data_safe/models/change_report_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_report_definition_compartment_details.py b/src/oci/data_safe/models/change_report_definition_compartment_details.py index 167bceb5a6..8deca49700 100644 --- a/src/oci/data_safe/models/change_report_definition_compartment_details.py +++ b/src/oci/data_safe/models/change_report_definition_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_retention_details.py b/src/oci/data_safe/models/change_retention_details.py index aa2f1f5062..3011e7e122 100644 --- a/src/oci/data_safe/models/change_retention_details.py +++ b/src/oci/data_safe/models/change_retention_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_sdm_masking_policy_difference_compartment_details.py b/src/oci/data_safe/models/change_sdm_masking_policy_difference_compartment_details.py index cfef87a1db..bdef7ea53c 100644 --- a/src/oci/data_safe/models/change_sdm_masking_policy_difference_compartment_details.py +++ b/src/oci/data_safe/models/change_sdm_masking_policy_difference_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 ec561dbb76..0eb6df29ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_security_policy_compartment_details.py b/src/oci/data_safe/models/change_security_policy_compartment_details.py index 0a30352788..c081e6cb5d 100644 --- a/src/oci/data_safe/models/change_security_policy_compartment_details.py +++ b/src/oci/data_safe/models/change_security_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_security_policy_deployment_compartment_details.py b/src/oci/data_safe/models/change_security_policy_deployment_compartment_details.py index 3f937ea367..d540afd494 100644 --- a/src/oci/data_safe/models/change_security_policy_deployment_compartment_details.py +++ b/src/oci/data_safe/models/change_security_policy_deployment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_sensitive_data_model_compartment_details.py b/src/oci/data_safe/models/change_sensitive_data_model_compartment_details.py index c9342270b8..a3caf39789 100644 --- a/src/oci/data_safe/models/change_sensitive_data_model_compartment_details.py +++ b/src/oci/data_safe/models/change_sensitive_data_model_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_sensitive_type_compartment_details.py b/src/oci/data_safe/models/change_sensitive_type_compartment_details.py index 79d8d071d6..1929d153d4 100644 --- a/src/oci/data_safe/models/change_sensitive_type_compartment_details.py +++ b/src/oci/data_safe/models/change_sensitive_type_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_sql_collection_compartment_details.py b/src/oci/data_safe/models/change_sql_collection_compartment_details.py index cdd489bdd5..1bfccb537d 100644 --- a/src/oci/data_safe/models/change_sql_collection_compartment_details.py +++ b/src/oci/data_safe/models/change_sql_collection_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_sql_firewall_policy_compartment_details.py b/src/oci/data_safe/models/change_sql_firewall_policy_compartment_details.py index 4f73f1335f..8971333348 100644 --- a/src/oci/data_safe/models/change_sql_firewall_policy_compartment_details.py +++ b/src/oci/data_safe/models/change_sql_firewall_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/change_target_alert_policy_association_compartment_details.py b/src/oci/data_safe/models/change_target_alert_policy_association_compartment_details.py index fd2e4b1ad0..8dfecc073b 100644 --- a/src/oci/data_safe/models/change_target_alert_policy_association_compartment_details.py +++ b/src/oci/data_safe/models/change_target_alert_policy_association_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 2425d945ab..b5f647d26a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 5ffb8289b7..698b97a161 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/collected_audit_volume_collection.py b/src/oci/data_safe/models/collected_audit_volume_collection.py index 5e35609582..7a14a3f4ab 100644 --- a/src/oci/data_safe/models/collected_audit_volume_collection.py +++ b/src/oci/data_safe/models/collected_audit_volume_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/collected_audit_volume_summary.py b/src/oci/data_safe/models/collected_audit_volume_summary.py index f7efc10e9f..a7a493b02a 100644 --- a/src/oci/data_safe/models/collected_audit_volume_summary.py +++ b/src/oci/data_safe/models/collected_audit_volume_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/column.py b/src/oci/data_safe/models/column.py index 25d70c8a6c..750cb23707 100644 --- a/src/oci/data_safe/models/column.py +++ b/src/oci/data_safe/models/column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/column_filter.py b/src/oci/data_safe/models/column_filter.py index cea5245b06..32f2ab4321 100644 --- a/src/oci/data_safe/models/column_filter.py +++ b/src/oci/data_safe/models/column_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/column_sorting.py b/src/oci/data_safe/models/column_sorting.py index 8f39d7876b..b75c4b7429 100644 --- a/src/oci/data_safe/models/column_sorting.py +++ b/src/oci/data_safe/models/column_sorting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/column_source_details.py b/src/oci/data_safe/models/column_source_details.py index 7c3f6313aa..5505c30d65 100644 --- a/src/oci/data_safe/models/column_source_details.py +++ b/src/oci/data_safe/models/column_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/column_source_from_sdm_details.py b/src/oci/data_safe/models/column_source_from_sdm_details.py index 729ac10039..17edc192f9 100644 --- a/src/oci/data_safe/models/column_source_from_sdm_details.py +++ b/src/oci/data_safe/models/column_source_from_sdm_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/column_source_from_target_details.py b/src/oci/data_safe/models/column_source_from_target_details.py index 98745163da..3da7ee9885 100644 --- a/src/oci/data_safe/models/column_source_from_target_details.py +++ b/src/oci/data_safe/models/column_source_from_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/column_summary.py b/src/oci/data_safe/models/column_summary.py index cabb06bd3d..585720e81a 100644 --- a/src/oci/data_safe/models/column_summary.py +++ b/src/oci/data_safe/models/column_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 526bcef838..284dc00228 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 27d65277ca..3ed0540627 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/compatible_formats_for_data_types.py b/src/oci/data_safe/models/compatible_formats_for_data_types.py index ab5f425c95..c58e128af2 100644 --- a/src/oci/data_safe/models/compatible_formats_for_data_types.py +++ b/src/oci/data_safe/models/compatible_formats_for_data_types.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/compatible_formats_for_sensitive_types.py b/src/oci/data_safe/models/compatible_formats_for_sensitive_types.py index 68e4682482..f746a947ad 100644 --- a/src/oci/data_safe/models/compatible_formats_for_sensitive_types.py +++ b/src/oci/data_safe/models/compatible_formats_for_sensitive_types.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/connection_option.py b/src/oci/data_safe/models/connection_option.py index 48a503c875..b90506ed0d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_alert_policy_details.py b/src/oci/data_safe/models/create_alert_policy_details.py index 140172451f..5316dca2e2 100644 --- a/src/oci/data_safe/models/create_alert_policy_details.py +++ b/src/oci/data_safe/models/create_alert_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_alert_policy_rule_details.py b/src/oci/data_safe/models/create_alert_policy_rule_details.py index ec75663973..bae9faf2b7 100644 --- a/src/oci/data_safe/models/create_alert_policy_rule_details.py +++ b/src/oci/data_safe/models/create_alert_policy_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_audit_archive_retrieval_details.py b/src/oci/data_safe/models/create_audit_archive_retrieval_details.py index 2eb7b3617f..f4ed660e70 100644 --- a/src/oci/data_safe/models/create_audit_archive_retrieval_details.py +++ b/src/oci/data_safe/models/create_audit_archive_retrieval_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_audit_policy_details.py b/src/oci/data_safe/models/create_audit_policy_details.py index a2550eafd4..00f0198e48 100644 --- a/src/oci/data_safe/models/create_audit_policy_details.py +++ b/src/oci/data_safe/models/create_audit_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_audit_profile_details.py b/src/oci/data_safe/models/create_audit_profile_details.py index 69ca29a0f7..1eee331c7b 100644 --- a/src/oci/data_safe/models/create_audit_profile_details.py +++ b/src/oci/data_safe/models/create_audit_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_column_source_details.py b/src/oci/data_safe/models/create_column_source_details.py index b5a99c12a8..9cc85a1e2e 100644 --- a/src/oci/data_safe/models/create_column_source_details.py +++ b/src/oci/data_safe/models/create_column_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_column_source_from_sdm_details.py b/src/oci/data_safe/models/create_column_source_from_sdm_details.py index 8e86bfc95d..0ad5f907da 100644 --- a/src/oci/data_safe/models/create_column_source_from_sdm_details.py +++ b/src/oci/data_safe/models/create_column_source_from_sdm_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_column_source_from_target_details.py b/src/oci/data_safe/models/create_column_source_from_target_details.py index 34ad7df817..6b1ef1b54e 100644 --- a/src/oci/data_safe/models/create_column_source_from_target_details.py +++ b/src/oci/data_safe/models/create_column_source_from_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 e18e996d12..3f802ff260 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_discovery_job_details.py b/src/oci/data_safe/models/create_discovery_job_details.py index b352297246..bffc4fc2c6 100644 --- a/src/oci/data_safe/models/create_discovery_job_details.py +++ b/src/oci/data_safe/models/create_discovery_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_library_masking_format_details.py b/src/oci/data_safe/models/create_library_masking_format_details.py index 41746c5e3a..56a364726e 100644 --- a/src/oci/data_safe/models/create_library_masking_format_details.py +++ b/src/oci/data_safe/models/create_library_masking_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_masking_column_details.py b/src/oci/data_safe/models/create_masking_column_details.py index 2696d57c9e..eefe992b80 100644 --- a/src/oci/data_safe/models/create_masking_column_details.py +++ b/src/oci/data_safe/models/create_masking_column_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_masking_policy_details.py b/src/oci/data_safe/models/create_masking_policy_details.py index 326562435f..0ca9892051 100644 --- a/src/oci/data_safe/models/create_masking_policy_details.py +++ b/src/oci/data_safe/models/create_masking_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 cca325fe70..1e89e925f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_peer_target_database_details.py b/src/oci/data_safe/models/create_peer_target_database_details.py index 2ff29aa348..cfa06ea3cd 100644 --- a/src/oci/data_safe/models/create_peer_target_database_details.py +++ b/src/oci/data_safe/models/create_peer_target_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_report_definition_details.py b/src/oci/data_safe/models/create_report_definition_details.py index 4513952137..d9c7cf5d5d 100644 --- a/src/oci/data_safe/models/create_report_definition_details.py +++ b/src/oci/data_safe/models/create_report_definition_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_sdm_masking_policy_difference_details.py b/src/oci/data_safe/models/create_sdm_masking_policy_difference_details.py index 84ebbb9ffa..6e81a58895 100644 --- a/src/oci/data_safe/models/create_sdm_masking_policy_difference_details.py +++ b/src/oci/data_safe/models/create_sdm_masking_policy_difference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 a83fdffd90..b4b3104327 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_sensitive_category_details.py b/src/oci/data_safe/models/create_sensitive_category_details.py index c64dc18af1..9bba4407e1 100644 --- a/src/oci/data_safe/models/create_sensitive_category_details.py +++ b/src/oci/data_safe/models/create_sensitive_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_sensitive_column_details.py b/src/oci/data_safe/models/create_sensitive_column_details.py index 00abdf15f0..1ee2bedeb9 100644 --- a/src/oci/data_safe/models/create_sensitive_column_details.py +++ b/src/oci/data_safe/models/create_sensitive_column_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_sensitive_data_model_details.py b/src/oci/data_safe/models/create_sensitive_data_model_details.py index c1957a1536..11b473a09b 100644 --- a/src/oci/data_safe/models/create_sensitive_data_model_details.py +++ b/src/oci/data_safe/models/create_sensitive_data_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_sensitive_type_details.py b/src/oci/data_safe/models/create_sensitive_type_details.py index 6c059e0f83..3a6b1588f8 100644 --- a/src/oci/data_safe/models/create_sensitive_type_details.py +++ b/src/oci/data_safe/models/create_sensitive_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_sensitive_type_pattern_details.py b/src/oci/data_safe/models/create_sensitive_type_pattern_details.py index 369a793495..b7af2f8ef1 100644 --- a/src/oci/data_safe/models/create_sensitive_type_pattern_details.py +++ b/src/oci/data_safe/models/create_sensitive_type_pattern_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_sql_collection_details.py b/src/oci/data_safe/models/create_sql_collection_details.py index 751c251101..4830e6424f 100644 --- a/src/oci/data_safe/models/create_sql_collection_details.py +++ b/src/oci/data_safe/models/create_sql_collection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/create_target_alert_policy_association_details.py b/src/oci/data_safe/models/create_target_alert_policy_association_details.py index b296924664..c327f51f1e 100644 --- a/src/oci/data_safe/models/create_target_alert_policy_association_details.py +++ b/src/oci/data_safe/models/create_target_alert_policy_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 90b3dea061..648f1a5ca7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 e3b0c23c41..c377c9ac95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/credentials.py b/src/oci/data_safe/models/credentials.py index 7a5c8b3466..be6ea962cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/data_safe_configuration.py b/src/oci/data_safe/models/data_safe_configuration.py index 5f3f0b0edb..9bd48c3d8a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 7998559a57..ed62c08c4f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 6c4834e78f..d832b66736 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 c9c27c71b6..37f84b1853 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_details.py b/src/oci/data_safe/models/database_details.py index 45240beae8..1209cd19d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_security_config.py b/src/oci/data_safe/models/database_security_config.py index ed9b54c3bf..35b9894cf3 100644 --- a/src/oci/data_safe/models/database_security_config.py +++ b/src/oci/data_safe/models/database_security_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_security_config_collection.py b/src/oci/data_safe/models/database_security_config_collection.py index 668ff9a68c..742513e19e 100644 --- a/src/oci/data_safe/models/database_security_config_collection.py +++ b/src/oci/data_safe/models/database_security_config_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_security_config_summary.py b/src/oci/data_safe/models/database_security_config_summary.py index 5ae658d0b2..bbdbe9f26d 100644 --- a/src/oci/data_safe/models/database_security_config_summary.py +++ b/src/oci/data_safe/models/database_security_config_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_table_access_entry.py b/src/oci/data_safe/models/database_table_access_entry.py index d226263b4a..b0f2ebcca9 100644 --- a/src/oci/data_safe/models/database_table_access_entry.py +++ b/src/oci/data_safe/models/database_table_access_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_table_access_entry_collection.py b/src/oci/data_safe/models/database_table_access_entry_collection.py index 0bd7bebbd2..ea18d9e648 100644 --- a/src/oci/data_safe/models/database_table_access_entry_collection.py +++ b/src/oci/data_safe/models/database_table_access_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_table_access_entry_summary.py b/src/oci/data_safe/models/database_table_access_entry_summary.py index a8ecb225cf..b5933be4a2 100644 --- a/src/oci/data_safe/models/database_table_access_entry_summary.py +++ b/src/oci/data_safe/models/database_table_access_entry_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_view_access_entry.py b/src/oci/data_safe/models/database_view_access_entry.py index 9f881ba2fc..385864cd3b 100644 --- a/src/oci/data_safe/models/database_view_access_entry.py +++ b/src/oci/data_safe/models/database_view_access_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_view_access_entry_collection.py b/src/oci/data_safe/models/database_view_access_entry_collection.py index e593800f53..e8d2685b3a 100644 --- a/src/oci/data_safe/models/database_view_access_entry_collection.py +++ b/src/oci/data_safe/models/database_view_access_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/database_view_access_entry_summary.py b/src/oci/data_safe/models/database_view_access_entry_summary.py index ed45186e0e..69d4a05886 100644 --- a/src/oci/data_safe/models/database_view_access_entry_summary.py +++ b/src/oci/data_safe/models/database_view_access_entry_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/delete_rows_format_entry.py b/src/oci/data_safe/models/delete_rows_format_entry.py index 0fd105a715..4d4a0c233e 100644 --- a/src/oci/data_safe/models/delete_rows_format_entry.py +++ b/src/oci/data_safe/models/delete_rows_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/deterministic_encryption_date_format_entry.py b/src/oci/data_safe/models/deterministic_encryption_date_format_entry.py index d29f2ccf2d..1eff171575 100644 --- a/src/oci/data_safe/models/deterministic_encryption_date_format_entry.py +++ b/src/oci/data_safe/models/deterministic_encryption_date_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/deterministic_encryption_format_entry.py b/src/oci/data_safe/models/deterministic_encryption_format_entry.py index 0e58d0a390..856027172b 100644 --- a/src/oci/data_safe/models/deterministic_encryption_format_entry.py +++ b/src/oci/data_safe/models/deterministic_encryption_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/deterministic_substitution_format_entry.py b/src/oci/data_safe/models/deterministic_substitution_format_entry.py index 735bf5eb5e..840960682e 100644 --- a/src/oci/data_safe/models/deterministic_substitution_format_entry.py +++ b/src/oci/data_safe/models/deterministic_substitution_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/difference_column.py b/src/oci/data_safe/models/difference_column.py index 4b0bdd843d..920354998b 100644 --- a/src/oci/data_safe/models/difference_column.py +++ b/src/oci/data_safe/models/difference_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/difference_column_summary.py b/src/oci/data_safe/models/difference_column_summary.py index 2684c1f173..406c406c83 100644 --- a/src/oci/data_safe/models/difference_column_summary.py +++ b/src/oci/data_safe/models/difference_column_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/diffs.py b/src/oci/data_safe/models/diffs.py index 6d671ebf43..188c33d792 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/dimensions.py b/src/oci/data_safe/models/dimensions.py index cc329119bf..808ffe6e9b 100644 --- a/src/oci/data_safe/models/dimensions.py +++ b/src/oci/data_safe/models/dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/discovery_analytics_collection.py b/src/oci/data_safe/models/discovery_analytics_collection.py index 9c06a58a9f..d5c41bc861 100644 --- a/src/oci/data_safe/models/discovery_analytics_collection.py +++ b/src/oci/data_safe/models/discovery_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/discovery_analytics_summary.py b/src/oci/data_safe/models/discovery_analytics_summary.py index e596afaf6c..dd012c6551 100644 --- a/src/oci/data_safe/models/discovery_analytics_summary.py +++ b/src/oci/data_safe/models/discovery_analytics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/discovery_job.py b/src/oci/data_safe/models/discovery_job.py index 822f622bc8..0ebbe0272e 100644 --- a/src/oci/data_safe/models/discovery_job.py +++ b/src/oci/data_safe/models/discovery_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/discovery_job_collection.py b/src/oci/data_safe/models/discovery_job_collection.py index 050ce9f8fd..61f5f4bd05 100644 --- a/src/oci/data_safe/models/discovery_job_collection.py +++ b/src/oci/data_safe/models/discovery_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/discovery_job_result.py b/src/oci/data_safe/models/discovery_job_result.py index 2f9361beca..4c37cde39f 100644 --- a/src/oci/data_safe/models/discovery_job_result.py +++ b/src/oci/data_safe/models/discovery_job_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/discovery_job_result_collection.py b/src/oci/data_safe/models/discovery_job_result_collection.py index 453014441f..6d5c84962a 100644 --- a/src/oci/data_safe/models/discovery_job_result_collection.py +++ b/src/oci/data_safe/models/discovery_job_result_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/discovery_job_result_summary.py b/src/oci/data_safe/models/discovery_job_result_summary.py index 169bd3e898..7108852784 100644 --- a/src/oci/data_safe/models/discovery_job_result_summary.py +++ b/src/oci/data_safe/models/discovery_job_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/discovery_job_summary.py b/src/oci/data_safe/models/discovery_job_summary.py index e7e37525ca..2483d39938 100644 --- a/src/oci/data_safe/models/discovery_job_summary.py +++ b/src/oci/data_safe/models/discovery_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/download_discovery_report_details.py b/src/oci/data_safe/models/download_discovery_report_details.py index 37e2f79d98..f717e00ee5 100644 --- a/src/oci/data_safe/models/download_discovery_report_details.py +++ b/src/oci/data_safe/models/download_discovery_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/download_masking_log_details.py b/src/oci/data_safe/models/download_masking_log_details.py index f4ce2e6f31..3f73b98a82 100644 --- a/src/oci/data_safe/models/download_masking_log_details.py +++ b/src/oci/data_safe/models/download_masking_log_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/download_masking_policy_details.py b/src/oci/data_safe/models/download_masking_policy_details.py index a39423d332..5a957ac16c 100644 --- a/src/oci/data_safe/models/download_masking_policy_details.py +++ b/src/oci/data_safe/models/download_masking_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/download_masking_report_details.py b/src/oci/data_safe/models/download_masking_report_details.py index dafc6b60a0..a6cc368fd5 100644 --- a/src/oci/data_safe/models/download_masking_report_details.py +++ b/src/oci/data_safe/models/download_masking_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 f963053f6d..0e09096fd4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/download_sensitive_data_model_details.py b/src/oci/data_safe/models/download_sensitive_data_model_details.py index ab4dd17da8..ae326cdffe 100644 --- a/src/oci/data_safe/models/download_sensitive_data_model_details.py +++ b/src/oci/data_safe/models/download_sensitive_data_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 265158514d..b965dd4440 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/enable_conditions.py b/src/oci/data_safe/models/enable_conditions.py index 0cf8eae9a2..118a39fd4e 100644 --- a/src/oci/data_safe/models/enable_conditions.py +++ b/src/oci/data_safe/models/enable_conditions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 12ceebd470..2d43ad170a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/entry_details.py b/src/oci/data_safe/models/entry_details.py index 4b8d5eda21..57ec9aab3d 100644 --- a/src/oci/data_safe/models/entry_details.py +++ b/src/oci/data_safe/models/entry_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/finding.py b/src/oci/data_safe/models/finding.py index 9aee42058a..da7167ec5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/finding_analytics_collection.py b/src/oci/data_safe/models/finding_analytics_collection.py index 97ec3685e1..a0c6052c9e 100644 --- a/src/oci/data_safe/models/finding_analytics_collection.py +++ b/src/oci/data_safe/models/finding_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/finding_analytics_dimensions.py b/src/oci/data_safe/models/finding_analytics_dimensions.py index f1862d056a..aa18aed8d7 100644 --- a/src/oci/data_safe/models/finding_analytics_dimensions.py +++ b/src/oci/data_safe/models/finding_analytics_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/finding_analytics_summary.py b/src/oci/data_safe/models/finding_analytics_summary.py index 2de2e7aec4..f0f7852c15 100644 --- a/src/oci/data_safe/models/finding_analytics_summary.py +++ b/src/oci/data_safe/models/finding_analytics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/finding_summary.py b/src/oci/data_safe/models/finding_summary.py index d6dc94432c..d391894288 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/findings_change_audit_log_collection.py b/src/oci/data_safe/models/findings_change_audit_log_collection.py index 5dbbc10b1b..71ffd24339 100644 --- a/src/oci/data_safe/models/findings_change_audit_log_collection.py +++ b/src/oci/data_safe/models/findings_change_audit_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/findings_change_audit_log_summary.py b/src/oci/data_safe/models/findings_change_audit_log_summary.py index bbe234ae76..3efbf1679d 100644 --- a/src/oci/data_safe/models/findings_change_audit_log_summary.py +++ b/src/oci/data_safe/models/findings_change_audit_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/firewall_policy_entry_details.py b/src/oci/data_safe/models/firewall_policy_entry_details.py index 3653634d5b..6bb6c1506f 100644 --- a/src/oci/data_safe/models/firewall_policy_entry_details.py +++ b/src/oci/data_safe/models/firewall_policy_entry_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/fixed_number_format_entry.py b/src/oci/data_safe/models/fixed_number_format_entry.py index 316cd158d3..a59b4d3661 100644 --- a/src/oci/data_safe/models/fixed_number_format_entry.py +++ b/src/oci/data_safe/models/fixed_number_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/fixed_string_format_entry.py b/src/oci/data_safe/models/fixed_string_format_entry.py index 87cc775750..1637aad358 100644 --- a/src/oci/data_safe/models/fixed_string_format_entry.py +++ b/src/oci/data_safe/models/fixed_string_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/format_entry.py b/src/oci/data_safe/models/format_entry.py index e4bdb6f0fa..96a5009fcd 100644 --- a/src/oci/data_safe/models/format_entry.py +++ b/src/oci/data_safe/models/format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/format_summary.py b/src/oci/data_safe/models/format_summary.py index 7f3d99c361..e8990b4cf9 100644 --- a/src/oci/data_safe/models/format_summary.py +++ b/src/oci/data_safe/models/format_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/formats_for_data_type.py b/src/oci/data_safe/models/formats_for_data_type.py index 34d2f61930..e2756d024a 100644 --- a/src/oci/data_safe/models/formats_for_data_type.py +++ b/src/oci/data_safe/models/formats_for_data_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/formats_for_sensitive_type.py b/src/oci/data_safe/models/formats_for_sensitive_type.py index d8066f30cf..f9f8bc72fc 100644 --- a/src/oci/data_safe/models/formats_for_sensitive_type.py +++ b/src/oci/data_safe/models/formats_for_sensitive_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/generate_discovery_report_for_download_details.py b/src/oci/data_safe/models/generate_discovery_report_for_download_details.py index e15adc97ff..ffc9ce132f 100644 --- a/src/oci/data_safe/models/generate_discovery_report_for_download_details.py +++ b/src/oci/data_safe/models/generate_discovery_report_for_download_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/generate_health_report_details.py b/src/oci/data_safe/models/generate_health_report_details.py index 72859853f7..1aaa421bbe 100644 --- a/src/oci/data_safe/models/generate_health_report_details.py +++ b/src/oci/data_safe/models/generate_health_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/generate_masking_policy_for_download_details.py b/src/oci/data_safe/models/generate_masking_policy_for_download_details.py index 563f759989..3401c8ea6b 100644 --- a/src/oci/data_safe/models/generate_masking_policy_for_download_details.py +++ b/src/oci/data_safe/models/generate_masking_policy_for_download_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/generate_masking_report_for_download_details.py b/src/oci/data_safe/models/generate_masking_report_for_download_details.py index 2e02149b12..a0c0b52afc 100644 --- a/src/oci/data_safe/models/generate_masking_report_for_download_details.py +++ b/src/oci/data_safe/models/generate_masking_report_for_download_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 42fa71dae7..7e575b2a8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/generate_report_details.py b/src/oci/data_safe/models/generate_report_details.py index 9f39df533a..1a80148a23 100644 --- a/src/oci/data_safe/models/generate_report_details.py +++ b/src/oci/data_safe/models/generate_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 1224fd45b3..42a5f797ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/generate_sensitive_data_model_for_download_details.py b/src/oci/data_safe/models/generate_sensitive_data_model_for_download_details.py index de4b920bed..21a3b5e4a5 100644 --- a/src/oci/data_safe/models/generate_sensitive_data_model_for_download_details.py +++ b/src/oci/data_safe/models/generate_sensitive_data_model_for_download_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 2dbf936d46..fcb3a7ca88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/global_settings.py b/src/oci/data_safe/models/global_settings.py index 49c024e02a..7be8a108fb 100644 --- a/src/oci/data_safe/models/global_settings.py +++ b/src/oci/data_safe/models/global_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/grant_summary.py b/src/oci/data_safe/models/grant_summary.py index d85535da99..7347ae2b4c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/initialization_parameter.py b/src/oci/data_safe/models/initialization_parameter.py index d4b7cb32b4..3951ca0062 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/installed_database_details.py b/src/oci/data_safe/models/installed_database_details.py index 05a1ffed25..b870c5dcb5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/library_masking_format.py b/src/oci/data_safe/models/library_masking_format.py index 851a5d31b4..4e5b2d56b9 100644 --- a/src/oci/data_safe/models/library_masking_format.py +++ b/src/oci/data_safe/models/library_masking_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/library_masking_format_collection.py b/src/oci/data_safe/models/library_masking_format_collection.py index f8bba57f80..4f47c6ba37 100644 --- a/src/oci/data_safe/models/library_masking_format_collection.py +++ b/src/oci/data_safe/models/library_masking_format_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/library_masking_format_entry.py b/src/oci/data_safe/models/library_masking_format_entry.py index 507069d1fd..c0c449a4ac 100644 --- a/src/oci/data_safe/models/library_masking_format_entry.py +++ b/src/oci/data_safe/models/library_masking_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/library_masking_format_summary.py b/src/oci/data_safe/models/library_masking_format_summary.py index b0c5d5060f..887c4d3a88 100644 --- a/src/oci/data_safe/models/library_masking_format_summary.py +++ b/src/oci/data_safe/models/library_masking_format_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/list_selection_mode.py b/src/oci/data_safe/models/list_selection_mode.py index 3ad9052e21..2c127a94f5 100644 --- a/src/oci/data_safe/models/list_selection_mode.py +++ b/src/oci/data_safe/models/list_selection_mode.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/mask_data_details.py b/src/oci/data_safe/models/mask_data_details.py index 4aa208e385..4ba7175e82 100644 --- a/src/oci/data_safe/models/mask_data_details.py +++ b/src/oci/data_safe/models/mask_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masked_column_collection.py b/src/oci/data_safe/models/masked_column_collection.py index 8b456dfe6c..903e59a239 100644 --- a/src/oci/data_safe/models/masked_column_collection.py +++ b/src/oci/data_safe/models/masked_column_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masked_column_summary.py b/src/oci/data_safe/models/masked_column_summary.py index 1dc2b6463c..7c832dd8eb 100644 --- a/src/oci/data_safe/models/masked_column_summary.py +++ b/src/oci/data_safe/models/masked_column_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_analytics_collection.py b/src/oci/data_safe/models/masking_analytics_collection.py index 4f097f3ea3..12e1100150 100644 --- a/src/oci/data_safe/models/masking_analytics_collection.py +++ b/src/oci/data_safe/models/masking_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_analytics_dimensions.py b/src/oci/data_safe/models/masking_analytics_dimensions.py index 1788044761..8a728df567 100644 --- a/src/oci/data_safe/models/masking_analytics_dimensions.py +++ b/src/oci/data_safe/models/masking_analytics_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_analytics_summary.py b/src/oci/data_safe/models/masking_analytics_summary.py index b89bea6172..2a22c029a8 100644 --- a/src/oci/data_safe/models/masking_analytics_summary.py +++ b/src/oci/data_safe/models/masking_analytics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_column.py b/src/oci/data_safe/models/masking_column.py index 40e092b8c0..99066cefe7 100644 --- a/src/oci/data_safe/models/masking_column.py +++ b/src/oci/data_safe/models/masking_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_column_collection.py b/src/oci/data_safe/models/masking_column_collection.py index 40796756e6..0c24280d02 100644 --- a/src/oci/data_safe/models/masking_column_collection.py +++ b/src/oci/data_safe/models/masking_column_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_column_summary.py b/src/oci/data_safe/models/masking_column_summary.py index bc2b12bbc3..31dd308ca1 100644 --- a/src/oci/data_safe/models/masking_column_summary.py +++ b/src/oci/data_safe/models/masking_column_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_format.py b/src/oci/data_safe/models/masking_format.py index 0c14ac2f32..5d0b8cb44d 100644 --- a/src/oci/data_safe/models/masking_format.py +++ b/src/oci/data_safe/models/masking_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_object_collection.py b/src/oci/data_safe/models/masking_object_collection.py index 45153d6da5..69c9c23604 100644 --- a/src/oci/data_safe/models/masking_object_collection.py +++ b/src/oci/data_safe/models/masking_object_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_object_summary.py b/src/oci/data_safe/models/masking_object_summary.py index b299bfdb3e..35a9e31bbf 100644 --- a/src/oci/data_safe/models/masking_object_summary.py +++ b/src/oci/data_safe/models/masking_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_policy.py b/src/oci/data_safe/models/masking_policy.py index 588018924b..f85dfe61a2 100644 --- a/src/oci/data_safe/models/masking_policy.py +++ b/src/oci/data_safe/models/masking_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_policy_collection.py b/src/oci/data_safe/models/masking_policy_collection.py index 7d57f3c2cb..09d601274a 100644 --- a/src/oci/data_safe/models/masking_policy_collection.py +++ b/src/oci/data_safe/models/masking_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_policy_health_report.py b/src/oci/data_safe/models/masking_policy_health_report.py index 89c9f159da..fa06868533 100644 --- a/src/oci/data_safe/models/masking_policy_health_report.py +++ b/src/oci/data_safe/models/masking_policy_health_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_policy_health_report_collection.py b/src/oci/data_safe/models/masking_policy_health_report_collection.py index 4d60b0f1e5..55763fb80c 100644 --- a/src/oci/data_safe/models/masking_policy_health_report_collection.py +++ b/src/oci/data_safe/models/masking_policy_health_report_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_policy_health_report_log_collection.py b/src/oci/data_safe/models/masking_policy_health_report_log_collection.py index 752a7d9943..fc0d6413ea 100644 --- a/src/oci/data_safe/models/masking_policy_health_report_log_collection.py +++ b/src/oci/data_safe/models/masking_policy_health_report_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_policy_health_report_log_summary.py b/src/oci/data_safe/models/masking_policy_health_report_log_summary.py index 4928d4b828..d5df3a9217 100644 --- a/src/oci/data_safe/models/masking_policy_health_report_log_summary.py +++ b/src/oci/data_safe/models/masking_policy_health_report_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_policy_health_report_summary.py b/src/oci/data_safe/models/masking_policy_health_report_summary.py index c9aa4ba3db..4eddec1103 100644 --- a/src/oci/data_safe/models/masking_policy_health_report_summary.py +++ b/src/oci/data_safe/models/masking_policy_health_report_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_policy_summary.py b/src/oci/data_safe/models/masking_policy_summary.py index 0ee2649db3..49453a9ecf 100644 --- a/src/oci/data_safe/models/masking_policy_summary.py +++ b/src/oci/data_safe/models/masking_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_report.py b/src/oci/data_safe/models/masking_report.py index d3aa2907e3..9ed74caf2c 100644 --- a/src/oci/data_safe/models/masking_report.py +++ b/src/oci/data_safe/models/masking_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_report_collection.py b/src/oci/data_safe/models/masking_report_collection.py index aff9dc53ad..96cb72178b 100644 --- a/src/oci/data_safe/models/masking_report_collection.py +++ b/src/oci/data_safe/models/masking_report_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_report_summary.py b/src/oci/data_safe/models/masking_report_summary.py index 9b28c15c50..e5e4983ee6 100644 --- a/src/oci/data_safe/models/masking_report_summary.py +++ b/src/oci/data_safe/models/masking_report_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_schema_collection.py b/src/oci/data_safe/models/masking_schema_collection.py index cb1dcd4d36..a01724ece7 100644 --- a/src/oci/data_safe/models/masking_schema_collection.py +++ b/src/oci/data_safe/models/masking_schema_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/masking_schema_summary.py b/src/oci/data_safe/models/masking_schema_summary.py index 64277c7910..18336d7b63 100644 --- a/src/oci/data_safe/models/masking_schema_summary.py +++ b/src/oci/data_safe/models/masking_schema_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/modified_attributes.py b/src/oci/data_safe/models/modified_attributes.py index a58445e506..c18708f5c7 100644 --- a/src/oci/data_safe/models/modified_attributes.py +++ b/src/oci/data_safe/models/modified_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/modify_global_settings_details.py b/src/oci/data_safe/models/modify_global_settings_details.py index 6f28b87fa6..a08da979bf 100644 --- a/src/oci/data_safe/models/modify_global_settings_details.py +++ b/src/oci/data_safe/models/modify_global_settings_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/null_value_format_entry.py b/src/oci/data_safe/models/null_value_format_entry.py index e748565946..4304b1f2aa 100644 --- a/src/oci/data_safe/models/null_value_format_entry.py +++ b/src/oci/data_safe/models/null_value_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/on_prem_connector.py b/src/oci/data_safe/models/on_prem_connector.py index d6a714cf7c..23d6d965e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 95879a4db7..95122d20c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/on_premise_connector.py b/src/oci/data_safe/models/on_premise_connector.py index f49a0a4033..c6a68d36dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_alert_policy_rule_details.py b/src/oci/data_safe/models/patch_alert_policy_rule_details.py index b4f55a81d5..fea570c687 100644 --- a/src/oci/data_safe/models/patch_alert_policy_rule_details.py +++ b/src/oci/data_safe/models/patch_alert_policy_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_alerts_details.py b/src/oci/data_safe/models/patch_alerts_details.py index 9acc9a492a..158f202c9e 100644 --- a/src/oci/data_safe/models/patch_alerts_details.py +++ b/src/oci/data_safe/models/patch_alerts_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_discovery_job_result_details.py b/src/oci/data_safe/models/patch_discovery_job_result_details.py index b3a46078d8..924a83dbee 100644 --- a/src/oci/data_safe/models/patch_discovery_job_result_details.py +++ b/src/oci/data_safe/models/patch_discovery_job_result_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_insert_instruction.py b/src/oci/data_safe/models/patch_insert_instruction.py index 731eba5db6..c9e626bdce 100644 --- a/src/oci/data_safe/models/patch_insert_instruction.py +++ b/src/oci/data_safe/models/patch_insert_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_instruction.py b/src/oci/data_safe/models/patch_instruction.py index cf6a31add7..a918e65b40 100644 --- a/src/oci/data_safe/models/patch_instruction.py +++ b/src/oci/data_safe/models/patch_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_masking_columns_details.py b/src/oci/data_safe/models/patch_masking_columns_details.py index dc2f43e627..b5e4088c0b 100644 --- a/src/oci/data_safe/models/patch_masking_columns_details.py +++ b/src/oci/data_safe/models/patch_masking_columns_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_merge_instruction.py b/src/oci/data_safe/models/patch_merge_instruction.py index e78e84239d..e5310ac5be 100644 --- a/src/oci/data_safe/models/patch_merge_instruction.py +++ b/src/oci/data_safe/models/patch_merge_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_remove_instruction.py b/src/oci/data_safe/models/patch_remove_instruction.py index 7e20801d99..0c4b80f05c 100644 --- a/src/oci/data_safe/models/patch_remove_instruction.py +++ b/src/oci/data_safe/models/patch_remove_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_sdm_masking_policy_difference_columns_details.py b/src/oci/data_safe/models/patch_sdm_masking_policy_difference_columns_details.py index a6153d29d3..990398eeb1 100644 --- a/src/oci/data_safe/models/patch_sdm_masking_policy_difference_columns_details.py +++ b/src/oci/data_safe/models/patch_sdm_masking_policy_difference_columns_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_sensitive_column_details.py b/src/oci/data_safe/models/patch_sensitive_column_details.py index 5b801adf2b..ae71fc70d1 100644 --- a/src/oci/data_safe/models/patch_sensitive_column_details.py +++ b/src/oci/data_safe/models/patch_sensitive_column_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_sql_firewall_allowed_sql_details.py b/src/oci/data_safe/models/patch_sql_firewall_allowed_sql_details.py index 8280612f1c..671d83ba1a 100644 --- a/src/oci/data_safe/models/patch_sql_firewall_allowed_sql_details.py +++ b/src/oci/data_safe/models/patch_sql_firewall_allowed_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/patch_target_alert_policy_association_details.py b/src/oci/data_safe/models/patch_target_alert_policy_association_details.py index 5c253eb0a9..3a021e27f1 100644 --- a/src/oci/data_safe/models/patch_target_alert_policy_association_details.py +++ b/src/oci/data_safe/models/patch_target_alert_policy_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/pattern_format_entry.py b/src/oci/data_safe/models/pattern_format_entry.py index 716cadd9ac..59486daf2d 100644 --- a/src/oci/data_safe/models/pattern_format_entry.py +++ b/src/oci/data_safe/models/pattern_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/peer_target_database.py b/src/oci/data_safe/models/peer_target_database.py index f6886e1081..781536834b 100644 --- a/src/oci/data_safe/models/peer_target_database.py +++ b/src/oci/data_safe/models/peer_target_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/peer_target_database_collection.py b/src/oci/data_safe/models/peer_target_database_collection.py index 5fc79388e1..fd8902d03c 100644 --- a/src/oci/data_safe/models/peer_target_database_collection.py +++ b/src/oci/data_safe/models/peer_target_database_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/peer_target_database_summary.py b/src/oci/data_safe/models/peer_target_database_summary.py index bf014f1e7c..e156918440 100644 --- a/src/oci/data_safe/models/peer_target_database_summary.py +++ b/src/oci/data_safe/models/peer_target_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/ppf_format_entry.py b/src/oci/data_safe/models/ppf_format_entry.py index b90f222bb1..75cf70e5a1 100644 --- a/src/oci/data_safe/models/ppf_format_entry.py +++ b/src/oci/data_safe/models/ppf_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/preserve_original_data_format_entry.py b/src/oci/data_safe/models/preserve_original_data_format_entry.py index 5a0f216cbd..fd298fe24c 100644 --- a/src/oci/data_safe/models/preserve_original_data_format_entry.py +++ b/src/oci/data_safe/models/preserve_original_data_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/private_endpoint.py b/src/oci/data_safe/models/private_endpoint.py index 9fc4fc910d..89e4341e83 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/profile.py b/src/oci/data_safe/models/profile.py index 2f3db4afd0..096621e1ce 100644 --- a/src/oci/data_safe/models/profile.py +++ b/src/oci/data_safe/models/profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/profile_aggregation.py b/src/oci/data_safe/models/profile_aggregation.py index 301b2491ea..07656e203e 100644 --- a/src/oci/data_safe/models/profile_aggregation.py +++ b/src/oci/data_safe/models/profile_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/profile_details.py b/src/oci/data_safe/models/profile_details.py index d86bc228be..649e31272c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/profile_summary.py b/src/oci/data_safe/models/profile_summary.py index 2e6ece0fe0..253aeb6faf 100644 --- a/src/oci/data_safe/models/profile_summary.py +++ b/src/oci/data_safe/models/profile_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/provision_audit_conditions.py b/src/oci/data_safe/models/provision_audit_conditions.py index 2c8df15ca7..e7364f6f03 100644 --- a/src/oci/data_safe/models/provision_audit_conditions.py +++ b/src/oci/data_safe/models/provision_audit_conditions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/provision_audit_policy_details.py b/src/oci/data_safe/models/provision_audit_policy_details.py index e5a5e77f14..2d39c48431 100644 --- a/src/oci/data_safe/models/provision_audit_policy_details.py +++ b/src/oci/data_safe/models/provision_audit_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/random_date_format_entry.py b/src/oci/data_safe/models/random_date_format_entry.py index 2b2de7853c..6491a11166 100644 --- a/src/oci/data_safe/models/random_date_format_entry.py +++ b/src/oci/data_safe/models/random_date_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/random_decimal_number_format_entry.py b/src/oci/data_safe/models/random_decimal_number_format_entry.py index 6b3cc1e3ba..988d4f614f 100644 --- a/src/oci/data_safe/models/random_decimal_number_format_entry.py +++ b/src/oci/data_safe/models/random_decimal_number_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/random_digits_format_entry.py b/src/oci/data_safe/models/random_digits_format_entry.py index fbc5b92524..58b183ca55 100644 --- a/src/oci/data_safe/models/random_digits_format_entry.py +++ b/src/oci/data_safe/models/random_digits_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/random_list_format_entry.py b/src/oci/data_safe/models/random_list_format_entry.py index bb7bd1edeb..e68d95799e 100644 --- a/src/oci/data_safe/models/random_list_format_entry.py +++ b/src/oci/data_safe/models/random_list_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/random_number_format_entry.py b/src/oci/data_safe/models/random_number_format_entry.py index 7d5a1d3257..e6908d43d7 100644 --- a/src/oci/data_safe/models/random_number_format_entry.py +++ b/src/oci/data_safe/models/random_number_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/random_string_format_entry.py b/src/oci/data_safe/models/random_string_format_entry.py index db113ecd61..e236c9b4fb 100644 --- a/src/oci/data_safe/models/random_string_format_entry.py +++ b/src/oci/data_safe/models/random_string_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/random_substitution_format_entry.py b/src/oci/data_safe/models/random_substitution_format_entry.py index 534ff3c10f..6c3e389adb 100644 --- a/src/oci/data_safe/models/random_substitution_format_entry.py +++ b/src/oci/data_safe/models/random_substitution_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/references.py b/src/oci/data_safe/models/references.py index e895e0c485..77e80f5276 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/regular_expression_format_entry.py b/src/oci/data_safe/models/regular_expression_format_entry.py index db64da3a35..edcc36da0d 100644 --- a/src/oci/data_safe/models/regular_expression_format_entry.py +++ b/src/oci/data_safe/models/regular_expression_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/report.py b/src/oci/data_safe/models/report.py index e96d5cbcdd..562af28d87 100644 --- a/src/oci/data_safe/models/report.py +++ b/src/oci/data_safe/models/report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/report_collection.py b/src/oci/data_safe/models/report_collection.py index 2c16a7823a..4f23d1d605 100644 --- a/src/oci/data_safe/models/report_collection.py +++ b/src/oci/data_safe/models/report_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/report_definition.py b/src/oci/data_safe/models/report_definition.py index 5af34b83e2..864f845dae 100644 --- a/src/oci/data_safe/models/report_definition.py +++ b/src/oci/data_safe/models/report_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/report_definition_collection.py b/src/oci/data_safe/models/report_definition_collection.py index cede0117d5..585767043a 100644 --- a/src/oci/data_safe/models/report_definition_collection.py +++ b/src/oci/data_safe/models/report_definition_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/report_definition_summary.py b/src/oci/data_safe/models/report_definition_summary.py index f0b30f7fca..4e9a21b66d 100644 --- a/src/oci/data_safe/models/report_definition_summary.py +++ b/src/oci/data_safe/models/report_definition_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/report_details.py b/src/oci/data_safe/models/report_details.py index cf346f8683..56f58cd7ea 100644 --- a/src/oci/data_safe/models/report_details.py +++ b/src/oci/data_safe/models/report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/report_summary.py b/src/oci/data_safe/models/report_summary.py index 88fe344e89..a795823f58 100644 --- a/src/oci/data_safe/models/report_summary.py +++ b/src/oci/data_safe/models/report_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/role_grant_path_collection.py b/src/oci/data_safe/models/role_grant_path_collection.py index d819109f75..eba6c5dd80 100644 --- a/src/oci/data_safe/models/role_grant_path_collection.py +++ b/src/oci/data_safe/models/role_grant_path_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/role_grant_path_summary.py b/src/oci/data_safe/models/role_grant_path_summary.py index 147b9f5c93..f98b373f0f 100644 --- a/src/oci/data_safe/models/role_grant_path_summary.py +++ b/src/oci/data_safe/models/role_grant_path_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/role_summary.py b/src/oci/data_safe/models/role_summary.py index 556d30eec9..4628c9b257 100644 --- a/src/oci/data_safe/models/role_summary.py +++ b/src/oci/data_safe/models/role_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 32cb0da71d..30cc5ff5a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 7a2cc8ad48..892effed74 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/schedule_audit_report_details.py b/src/oci/data_safe/models/schedule_audit_report_details.py index 9acdf49276..1670387a3d 100644 --- a/src/oci/data_safe/models/schedule_audit_report_details.py +++ b/src/oci/data_safe/models/schedule_audit_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/schedule_report_details.py b/src/oci/data_safe/models/schedule_report_details.py index 549e617ac8..6427c5d6d6 100644 --- a/src/oci/data_safe/models/schedule_report_details.py +++ b/src/oci/data_safe/models/schedule_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/schema_summary.py b/src/oci/data_safe/models/schema_summary.py index 8fa3aaa3be..f06ad1eef7 100644 --- a/src/oci/data_safe/models/schema_summary.py +++ b/src/oci/data_safe/models/schema_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/scim_query_selection_mode.py b/src/oci/data_safe/models/scim_query_selection_mode.py index fac36f6405..2a68fbdaac 100644 --- a/src/oci/data_safe/models/scim_query_selection_mode.py +++ b/src/oci/data_safe/models/scim_query_selection_mode.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sdm_masking_policy_difference.py b/src/oci/data_safe/models/sdm_masking_policy_difference.py index 295f209204..612108004f 100644 --- a/src/oci/data_safe/models/sdm_masking_policy_difference.py +++ b/src/oci/data_safe/models/sdm_masking_policy_difference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sdm_masking_policy_difference_collection.py b/src/oci/data_safe/models/sdm_masking_policy_difference_collection.py index 72db2c3f0d..504402c79f 100644 --- a/src/oci/data_safe/models/sdm_masking_policy_difference_collection.py +++ b/src/oci/data_safe/models/sdm_masking_policy_difference_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sdm_masking_policy_difference_column_collection.py b/src/oci/data_safe/models/sdm_masking_policy_difference_column_collection.py index cd1bd58568..ab51855fb8 100644 --- a/src/oci/data_safe/models/sdm_masking_policy_difference_column_collection.py +++ b/src/oci/data_safe/models/sdm_masking_policy_difference_column_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sdm_masking_policy_difference_summary.py b/src/oci/data_safe/models/sdm_masking_policy_difference_summary.py index 3a2a7391ca..c3476c4b4f 100644 --- a/src/oci/data_safe/models/sdm_masking_policy_difference_summary.py +++ b/src/oci/data_safe/models/sdm_masking_policy_difference_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/section_statistics.py b/src/oci/data_safe/models/section_statistics.py index 8374f445f2..b6d3a98792 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_assessment.py b/src/oci/data_safe/models/security_assessment.py index d64a1a0eb4..836a5c0ce0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 02ea7ab752..4cd53ec247 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_assessment_comparison.py b/src/oci/data_safe/models/security_assessment_comparison.py index 99dcd5c694..b2cae58c85 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 efcac2eb0f..c373393d62 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_assessment_statistics.py b/src/oci/data_safe/models/security_assessment_statistics.py index 3ad0be97af..eb9a953b3b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_assessment_summary.py b/src/oci/data_safe/models/security_assessment_summary.py index 56d970a071..01bd451d9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_feature_analytics_collection.py b/src/oci/data_safe/models/security_feature_analytics_collection.py index aa9e80aa0d..c88cac69a8 100644 --- a/src/oci/data_safe/models/security_feature_analytics_collection.py +++ b/src/oci/data_safe/models/security_feature_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_feature_analytics_dimensions.py b/src/oci/data_safe/models/security_feature_analytics_dimensions.py index c8ca273646..4ef2b5b41c 100644 --- a/src/oci/data_safe/models/security_feature_analytics_dimensions.py +++ b/src/oci/data_safe/models/security_feature_analytics_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_feature_analytics_summary.py b/src/oci/data_safe/models/security_feature_analytics_summary.py index 9e877712d5..c1e9029f65 100644 --- a/src/oci/data_safe/models/security_feature_analytics_summary.py +++ b/src/oci/data_safe/models/security_feature_analytics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_feature_collection.py b/src/oci/data_safe/models/security_feature_collection.py index 80feec3575..c579b23a8b 100644 --- a/src/oci/data_safe/models/security_feature_collection.py +++ b/src/oci/data_safe/models/security_feature_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_feature_summary.py b/src/oci/data_safe/models/security_feature_summary.py index 5759bc2ccc..5d5a635cde 100644 --- a/src/oci/data_safe/models/security_feature_summary.py +++ b/src/oci/data_safe/models/security_feature_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy.py b/src/oci/data_safe/models/security_policy.py index 9fb5506063..3ca4641bbd 100644 --- a/src/oci/data_safe/models/security_policy.py +++ b/src/oci/data_safe/models/security_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_collection.py b/src/oci/data_safe/models/security_policy_collection.py index 75687e3989..f0b3d23f33 100644 --- a/src/oci/data_safe/models/security_policy_collection.py +++ b/src/oci/data_safe/models/security_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_deployment.py b/src/oci/data_safe/models/security_policy_deployment.py index 59e3794073..c517e6826d 100644 --- a/src/oci/data_safe/models/security_policy_deployment.py +++ b/src/oci/data_safe/models/security_policy_deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_deployment_collection.py b/src/oci/data_safe/models/security_policy_deployment_collection.py index 3f0fc3787e..28146a79c0 100644 --- a/src/oci/data_safe/models/security_policy_deployment_collection.py +++ b/src/oci/data_safe/models/security_policy_deployment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_deployment_summary.py b/src/oci/data_safe/models/security_policy_deployment_summary.py index 8386a1d3ad..d95a24e7bb 100644 --- a/src/oci/data_safe/models/security_policy_deployment_summary.py +++ b/src/oci/data_safe/models/security_policy_deployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_entry_state.py b/src/oci/data_safe/models/security_policy_entry_state.py index b85f4a7dbd..21ecd6de66 100644 --- a/src/oci/data_safe/models/security_policy_entry_state.py +++ b/src/oci/data_safe/models/security_policy_entry_state.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_entry_state_collection.py b/src/oci/data_safe/models/security_policy_entry_state_collection.py index cc801de132..36b2c243e8 100644 --- a/src/oci/data_safe/models/security_policy_entry_state_collection.py +++ b/src/oci/data_safe/models/security_policy_entry_state_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_entry_state_summary.py b/src/oci/data_safe/models/security_policy_entry_state_summary.py index ce4ab23836..2bb355cb78 100644 --- a/src/oci/data_safe/models/security_policy_entry_state_summary.py +++ b/src/oci/data_safe/models/security_policy_entry_state_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_report.py b/src/oci/data_safe/models/security_policy_report.py index 99eb5e8612..54dece1f0f 100644 --- a/src/oci/data_safe/models/security_policy_report.py +++ b/src/oci/data_safe/models/security_policy_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_report_collection.py b/src/oci/data_safe/models/security_policy_report_collection.py index 9cb3e6b328..fb6c0a2fd6 100644 --- a/src/oci/data_safe/models/security_policy_report_collection.py +++ b/src/oci/data_safe/models/security_policy_report_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_report_summary.py b/src/oci/data_safe/models/security_policy_report_summary.py index f81d7d6795..1d0bed84ec 100644 --- a/src/oci/data_safe/models/security_policy_report_summary.py +++ b/src/oci/data_safe/models/security_policy_report_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/security_policy_summary.py b/src/oci/data_safe/models/security_policy_summary.py index 49fd048cb9..4739701d6a 100644 --- a/src/oci/data_safe/models/security_policy_summary.py +++ b/src/oci/data_safe/models/security_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/selection_details.py b/src/oci/data_safe/models/selection_details.py index b5b4afbd95..c7ecce218a 100644 --- a/src/oci/data_safe/models/selection_details.py +++ b/src/oci/data_safe/models/selection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_category.py b/src/oci/data_safe/models/sensitive_category.py index 2b002ed220..108aa2c86d 100644 --- a/src/oci/data_safe/models/sensitive_category.py +++ b/src/oci/data_safe/models/sensitive_category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_column.py b/src/oci/data_safe/models/sensitive_column.py index 56f05ac8f3..83d96e4218 100644 --- a/src/oci/data_safe/models/sensitive_column.py +++ b/src/oci/data_safe/models/sensitive_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_column_collection.py b/src/oci/data_safe/models/sensitive_column_collection.py index 62ab41be7a..98738a2499 100644 --- a/src/oci/data_safe/models/sensitive_column_collection.py +++ b/src/oci/data_safe/models/sensitive_column_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_column_summary.py b/src/oci/data_safe/models/sensitive_column_summary.py index eebab05d08..9399944c0f 100644 --- a/src/oci/data_safe/models/sensitive_column_summary.py +++ b/src/oci/data_safe/models/sensitive_column_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_data_model.py b/src/oci/data_safe/models/sensitive_data_model.py index 604075d6e9..4ff3501d20 100644 --- a/src/oci/data_safe/models/sensitive_data_model.py +++ b/src/oci/data_safe/models/sensitive_data_model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_data_model_collection.py b/src/oci/data_safe/models/sensitive_data_model_collection.py index 46c36d0208..66e4302454 100644 --- a/src/oci/data_safe/models/sensitive_data_model_collection.py +++ b/src/oci/data_safe/models/sensitive_data_model_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_data_model_sensitive_type_collection.py b/src/oci/data_safe/models/sensitive_data_model_sensitive_type_collection.py index 83c4b79d1a..7efa637fc8 100644 --- a/src/oci/data_safe/models/sensitive_data_model_sensitive_type_collection.py +++ b/src/oci/data_safe/models/sensitive_data_model_sensitive_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_data_model_sensitive_type_summary.py b/src/oci/data_safe/models/sensitive_data_model_sensitive_type_summary.py index 26f6fa7b3d..e00ac04055 100644 --- a/src/oci/data_safe/models/sensitive_data_model_sensitive_type_summary.py +++ b/src/oci/data_safe/models/sensitive_data_model_sensitive_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_data_model_summary.py b/src/oci/data_safe/models/sensitive_data_model_summary.py index b633a16ebd..8aa70de26c 100644 --- a/src/oci/data_safe/models/sensitive_data_model_summary.py +++ b/src/oci/data_safe/models/sensitive_data_model_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_object_collection.py b/src/oci/data_safe/models/sensitive_object_collection.py index 9c9fc29733..40133398c7 100644 --- a/src/oci/data_safe/models/sensitive_object_collection.py +++ b/src/oci/data_safe/models/sensitive_object_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_object_summary.py b/src/oci/data_safe/models/sensitive_object_summary.py index 7b13116e19..00fe01d85a 100644 --- a/src/oci/data_safe/models/sensitive_object_summary.py +++ b/src/oci/data_safe/models/sensitive_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_schema_collection.py b/src/oci/data_safe/models/sensitive_schema_collection.py index ecbc75385c..4ac0c2fa55 100644 --- a/src/oci/data_safe/models/sensitive_schema_collection.py +++ b/src/oci/data_safe/models/sensitive_schema_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_schema_summary.py b/src/oci/data_safe/models/sensitive_schema_summary.py index 4c74841d6e..0e58a4b521 100644 --- a/src/oci/data_safe/models/sensitive_schema_summary.py +++ b/src/oci/data_safe/models/sensitive_schema_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_type.py b/src/oci/data_safe/models/sensitive_type.py index 4fa4ad1bc6..1c63f9addd 100644 --- a/src/oci/data_safe/models/sensitive_type.py +++ b/src/oci/data_safe/models/sensitive_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_type_collection.py b/src/oci/data_safe/models/sensitive_type_collection.py index 2a0a163151..46a63a7eb2 100644 --- a/src/oci/data_safe/models/sensitive_type_collection.py +++ b/src/oci/data_safe/models/sensitive_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_type_pattern.py b/src/oci/data_safe/models/sensitive_type_pattern.py index 9aa95db626..848e3db8bc 100644 --- a/src/oci/data_safe/models/sensitive_type_pattern.py +++ b/src/oci/data_safe/models/sensitive_type_pattern.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sensitive_type_summary.py b/src/oci/data_safe/models/sensitive_type_summary.py index 3bd072abe0..292c81cfb5 100644 --- a/src/oci/data_safe/models/sensitive_type_summary.py +++ b/src/oci/data_safe/models/sensitive_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/shuffle_format_entry.py b/src/oci/data_safe/models/shuffle_format_entry.py index 2ba1ed7e9b..80e2223ccb 100644 --- a/src/oci/data_safe/models/shuffle_format_entry.py +++ b/src/oci/data_safe/models/shuffle_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_collection.py b/src/oci/data_safe/models/sql_collection.py index e444836d92..2cde7957f7 100644 --- a/src/oci/data_safe/models/sql_collection.py +++ b/src/oci/data_safe/models/sql_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_collection_aggregation.py b/src/oci/data_safe/models/sql_collection_aggregation.py index 457818c6e8..2e5315358a 100644 --- a/src/oci/data_safe/models/sql_collection_aggregation.py +++ b/src/oci/data_safe/models/sql_collection_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_collection_analytics_collection.py b/src/oci/data_safe/models/sql_collection_analytics_collection.py index 5d670cda30..f620c0f161 100644 --- a/src/oci/data_safe/models/sql_collection_analytics_collection.py +++ b/src/oci/data_safe/models/sql_collection_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_collection_collection.py b/src/oci/data_safe/models/sql_collection_collection.py index b81251ada5..efbc966731 100644 --- a/src/oci/data_safe/models/sql_collection_collection.py +++ b/src/oci/data_safe/models/sql_collection_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_collection_dimensions.py b/src/oci/data_safe/models/sql_collection_dimensions.py index 92124c27ed..c66f569bb8 100644 --- a/src/oci/data_safe/models/sql_collection_dimensions.py +++ b/src/oci/data_safe/models/sql_collection_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_collection_log_aggregation.py b/src/oci/data_safe/models/sql_collection_log_aggregation.py index 6478e635c7..e7e203fd84 100644 --- a/src/oci/data_safe/models/sql_collection_log_aggregation.py +++ b/src/oci/data_safe/models/sql_collection_log_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_collection_log_dimensions.py b/src/oci/data_safe/models/sql_collection_log_dimensions.py index bf457347e4..2350278a72 100644 --- a/src/oci/data_safe/models/sql_collection_log_dimensions.py +++ b/src/oci/data_safe/models/sql_collection_log_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_collection_log_insights_collection.py b/src/oci/data_safe/models/sql_collection_log_insights_collection.py index bc434983e0..55c9df153f 100644 --- a/src/oci/data_safe/models/sql_collection_log_insights_collection.py +++ b/src/oci/data_safe/models/sql_collection_log_insights_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_collection_summary.py b/src/oci/data_safe/models/sql_collection_summary.py index ebbab8ffa0..caaebdd5c7 100644 --- a/src/oci/data_safe/models/sql_collection_summary.py +++ b/src/oci/data_safe/models/sql_collection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_expression_format_entry.py b/src/oci/data_safe/models/sql_expression_format_entry.py index fe41a0d684..a2c2fb55ac 100644 --- a/src/oci/data_safe/models/sql_expression_format_entry.py +++ b/src/oci/data_safe/models/sql_expression_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_allowed_sql.py b/src/oci/data_safe/models/sql_firewall_allowed_sql.py index 992e7803aa..3be56ffc8a 100644 --- a/src/oci/data_safe/models/sql_firewall_allowed_sql.py +++ b/src/oci/data_safe/models/sql_firewall_allowed_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_allowed_sql_aggregation.py b/src/oci/data_safe/models/sql_firewall_allowed_sql_aggregation.py index 0a89c9d41f..0cec00a435 100644 --- a/src/oci/data_safe/models/sql_firewall_allowed_sql_aggregation.py +++ b/src/oci/data_safe/models/sql_firewall_allowed_sql_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_allowed_sql_analytics_collection.py b/src/oci/data_safe/models/sql_firewall_allowed_sql_analytics_collection.py index 0f164db419..f4407f1a81 100644 --- a/src/oci/data_safe/models/sql_firewall_allowed_sql_analytics_collection.py +++ b/src/oci/data_safe/models/sql_firewall_allowed_sql_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_allowed_sql_collection.py b/src/oci/data_safe/models/sql_firewall_allowed_sql_collection.py index b8591b811a..da916c9708 100644 --- a/src/oci/data_safe/models/sql_firewall_allowed_sql_collection.py +++ b/src/oci/data_safe/models/sql_firewall_allowed_sql_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.py b/src/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.py index cb92f98443..13b7fb16bb 100644 --- a/src/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.py +++ b/src/oci/data_safe/models/sql_firewall_allowed_sql_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_allowed_sql_summary.py b/src/oci/data_safe/models/sql_firewall_allowed_sql_summary.py index e7189dc5b0..61978f0845 100644 --- a/src/oci/data_safe/models/sql_firewall_allowed_sql_summary.py +++ b/src/oci/data_safe/models/sql_firewall_allowed_sql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_config.py b/src/oci/data_safe/models/sql_firewall_config.py index 34e7ef5081..e3e92ad8bc 100644 --- a/src/oci/data_safe/models/sql_firewall_config.py +++ b/src/oci/data_safe/models/sql_firewall_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_policy.py b/src/oci/data_safe/models/sql_firewall_policy.py index 8d29fd4d0c..4bfafdec51 100644 --- a/src/oci/data_safe/models/sql_firewall_policy.py +++ b/src/oci/data_safe/models/sql_firewall_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_policy_aggregation.py b/src/oci/data_safe/models/sql_firewall_policy_aggregation.py index ed758c35c4..f0c7e0a774 100644 --- a/src/oci/data_safe/models/sql_firewall_policy_aggregation.py +++ b/src/oci/data_safe/models/sql_firewall_policy_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_policy_analytics_collection.py b/src/oci/data_safe/models/sql_firewall_policy_analytics_collection.py index 7fe4a806a0..28d5218e0a 100644 --- a/src/oci/data_safe/models/sql_firewall_policy_analytics_collection.py +++ b/src/oci/data_safe/models/sql_firewall_policy_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_policy_collection.py b/src/oci/data_safe/models/sql_firewall_policy_collection.py index 7c3604dfbb..a3fabef220 100644 --- a/src/oci/data_safe/models/sql_firewall_policy_collection.py +++ b/src/oci/data_safe/models/sql_firewall_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_policy_dimensions.py b/src/oci/data_safe/models/sql_firewall_policy_dimensions.py index 0a9acb766e..aee862942e 100644 --- a/src/oci/data_safe/models/sql_firewall_policy_dimensions.py +++ b/src/oci/data_safe/models/sql_firewall_policy_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_policy_summary.py b/src/oci/data_safe/models/sql_firewall_policy_summary.py index edf0564b4a..50be808c26 100644 --- a/src/oci/data_safe/models/sql_firewall_policy_summary.py +++ b/src/oci/data_safe/models/sql_firewall_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_violation_aggregation.py b/src/oci/data_safe/models/sql_firewall_violation_aggregation.py index 5355099382..9590802707 100644 --- a/src/oci/data_safe/models/sql_firewall_violation_aggregation.py +++ b/src/oci/data_safe/models/sql_firewall_violation_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_violation_aggregation_dimensions.py b/src/oci/data_safe/models/sql_firewall_violation_aggregation_dimensions.py index 0971951207..7c356d09bc 100644 --- a/src/oci/data_safe/models/sql_firewall_violation_aggregation_dimensions.py +++ b/src/oci/data_safe/models/sql_firewall_violation_aggregation_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_violation_analytics_collection.py b/src/oci/data_safe/models/sql_firewall_violation_analytics_collection.py index 6f97e6e75e..f31e7b0fc3 100644 --- a/src/oci/data_safe/models/sql_firewall_violation_analytics_collection.py +++ b/src/oci/data_safe/models/sql_firewall_violation_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_violation_summary.py b/src/oci/data_safe/models/sql_firewall_violation_summary.py index f1abf378a3..017fa051de 100644 --- a/src/oci/data_safe/models/sql_firewall_violation_summary.py +++ b/src/oci/data_safe/models/sql_firewall_violation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/sql_firewall_violations_collection.py b/src/oci/data_safe/models/sql_firewall_violations_collection.py index c4230c8ab8..53d6c869d7 100644 --- a/src/oci/data_safe/models/sql_firewall_violations_collection.py +++ b/src/oci/data_safe/models/sql_firewall_violations_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/start_audit_trail_details.py b/src/oci/data_safe/models/start_audit_trail_details.py index 1fde500abb..0c81124194 100644 --- a/src/oci/data_safe/models/start_audit_trail_details.py +++ b/src/oci/data_safe/models/start_audit_trail_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/substring_format_entry.py b/src/oci/data_safe/models/substring_format_entry.py index 2f9e92f318..0f8225bc6e 100644 --- a/src/oci/data_safe/models/substring_format_entry.py +++ b/src/oci/data_safe/models/substring_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/summary.py b/src/oci/data_safe/models/summary.py index 40822107e0..7b3e2510b6 100644 --- a/src/oci/data_safe/models/summary.py +++ b/src/oci/data_safe/models/summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/table_summary.py b/src/oci/data_safe/models/table_summary.py index 1e14b424e6..5d1dbea4f6 100644 --- a/src/oci/data_safe/models/table_summary.py +++ b/src/oci/data_safe/models/table_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/tables_for_discovery.py b/src/oci/data_safe/models/tables_for_discovery.py index 56dbec769f..541f9e3b7f 100644 --- a/src/oci/data_safe/models/tables_for_discovery.py +++ b/src/oci/data_safe/models/tables_for_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/target_alert_policy_association.py b/src/oci/data_safe/models/target_alert_policy_association.py index 3a8969fb2c..cad713b9c4 100644 --- a/src/oci/data_safe/models/target_alert_policy_association.py +++ b/src/oci/data_safe/models/target_alert_policy_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/target_alert_policy_association_collection.py b/src/oci/data_safe/models/target_alert_policy_association_collection.py index 97ac9e87f6..5525ca5992 100644 --- a/src/oci/data_safe/models/target_alert_policy_association_collection.py +++ b/src/oci/data_safe/models/target_alert_policy_association_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/target_alert_policy_association_summary.py b/src/oci/data_safe/models/target_alert_policy_association_summary.py index fe57c94529..f39138f252 100644 --- a/src/oci/data_safe/models/target_alert_policy_association_summary.py +++ b/src/oci/data_safe/models/target_alert_policy_association_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/target_database.py b/src/oci/data_safe/models/target_database.py index fd9173c4c4..f1aa26ba11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/target_database_summary.py b/src/oci/data_safe/models/target_database_summary.py index 240f5fa3be..751525079e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/tls_config.py b/src/oci/data_safe/models/tls_config.py index 0bb10d9500..ea6967c1a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/truncate_table_format_entry.py b/src/oci/data_safe/models/truncate_table_format_entry.py index 2b5b5980ee..39b7267eaf 100644 --- a/src/oci/data_safe/models/truncate_table_format_entry.py +++ b/src/oci/data_safe/models/truncate_table_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/udf_format_entry.py b/src/oci/data_safe/models/udf_format_entry.py index 9ef7f20ee5..ed93474d89 100644 --- a/src/oci/data_safe/models/udf_format_entry.py +++ b/src/oci/data_safe/models/udf_format_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/unset_security_assessment_baseline_details.py b/src/oci/data_safe/models/unset_security_assessment_baseline_details.py index 05abb8cdee..a279df22ad 100644 --- a/src/oci/data_safe/models/unset_security_assessment_baseline_details.py +++ b/src/oci/data_safe/models/unset_security_assessment_baseline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/unset_user_assessment_baseline_details.py b/src/oci/data_safe/models/unset_user_assessment_baseline_details.py index b51cbf4bdc..ac8e2bfe06 100644 --- a/src/oci/data_safe/models/unset_user_assessment_baseline_details.py +++ b/src/oci/data_safe/models/unset_user_assessment_baseline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_alert_details.py b/src/oci/data_safe/models/update_alert_details.py index fdaa349784..7b27376748 100644 --- a/src/oci/data_safe/models/update_alert_details.py +++ b/src/oci/data_safe/models/update_alert_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_alert_policy_details.py b/src/oci/data_safe/models/update_alert_policy_details.py index 3cfe5eb70b..04e80af01a 100644 --- a/src/oci/data_safe/models/update_alert_policy_details.py +++ b/src/oci/data_safe/models/update_alert_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_alert_policy_rule_details.py b/src/oci/data_safe/models/update_alert_policy_rule_details.py index e2882b86e3..59db1aece2 100644 --- a/src/oci/data_safe/models/update_alert_policy_rule_details.py +++ b/src/oci/data_safe/models/update_alert_policy_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_audit_archive_retrieval_details.py b/src/oci/data_safe/models/update_audit_archive_retrieval_details.py index 1e48679476..bafd86bd4f 100644 --- a/src/oci/data_safe/models/update_audit_archive_retrieval_details.py +++ b/src/oci/data_safe/models/update_audit_archive_retrieval_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_audit_policy_details.py b/src/oci/data_safe/models/update_audit_policy_details.py index abb7fbab7c..23885cb58d 100644 --- a/src/oci/data_safe/models/update_audit_policy_details.py +++ b/src/oci/data_safe/models/update_audit_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_audit_profile_details.py b/src/oci/data_safe/models/update_audit_profile_details.py index f0463c886f..29cfb53b6e 100644 --- a/src/oci/data_safe/models/update_audit_profile_details.py +++ b/src/oci/data_safe/models/update_audit_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_audit_trail_details.py b/src/oci/data_safe/models/update_audit_trail_details.py index e94ed11fe1..544ff396a9 100644 --- a/src/oci/data_safe/models/update_audit_trail_details.py +++ b/src/oci/data_safe/models/update_audit_trail_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_column_source_details.py b/src/oci/data_safe/models/update_column_source_details.py index 388b052639..04bb567a03 100644 --- a/src/oci/data_safe/models/update_column_source_details.py +++ b/src/oci/data_safe/models/update_column_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_column_source_sdm_details.py b/src/oci/data_safe/models/update_column_source_sdm_details.py index 420e003267..91dbd55ad7 100644 --- a/src/oci/data_safe/models/update_column_source_sdm_details.py +++ b/src/oci/data_safe/models/update_column_source_sdm_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_column_source_target_details.py b/src/oci/data_safe/models/update_column_source_target_details.py index 3f4e322cd3..a030ea2e4f 100644 --- a/src/oci/data_safe/models/update_column_source_target_details.py +++ b/src/oci/data_safe/models/update_column_source_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 6d76eb81f7..82888d6324 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_database_security_config_details.py b/src/oci/data_safe/models/update_database_security_config_details.py index 9f7a8016da..978f39567d 100644 --- a/src/oci/data_safe/models/update_database_security_config_details.py +++ b/src/oci/data_safe/models/update_database_security_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_finding_details.py b/src/oci/data_safe/models/update_finding_details.py index 2c102bf888..74b120198f 100644 --- a/src/oci/data_safe/models/update_finding_details.py +++ b/src/oci/data_safe/models/update_finding_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_library_masking_format_details.py b/src/oci/data_safe/models/update_library_masking_format_details.py index 893b0925d0..d2e376cb52 100644 --- a/src/oci/data_safe/models/update_library_masking_format_details.py +++ b/src/oci/data_safe/models/update_library_masking_format_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_masking_column_details.py b/src/oci/data_safe/models/update_masking_column_details.py index fd37d2c50b..2b2bed0b2e 100644 --- a/src/oci/data_safe/models/update_masking_column_details.py +++ b/src/oci/data_safe/models/update_masking_column_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_masking_policy_details.py b/src/oci/data_safe/models/update_masking_policy_details.py index 562a1598c3..41b3b0ef71 100644 --- a/src/oci/data_safe/models/update_masking_policy_details.py +++ b/src/oci/data_safe/models/update_masking_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 9f53e39d02..1c1b156c59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 71563572c6..3953bfacc6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_peer_target_database_details.py b/src/oci/data_safe/models/update_peer_target_database_details.py index b18ab6189c..c848822fd6 100644 --- a/src/oci/data_safe/models/update_peer_target_database_details.py +++ b/src/oci/data_safe/models/update_peer_target_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_report_definition_details.py b/src/oci/data_safe/models/update_report_definition_details.py index 671080115a..7c2c257ae6 100644 --- a/src/oci/data_safe/models/update_report_definition_details.py +++ b/src/oci/data_safe/models/update_report_definition_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_report_details.py b/src/oci/data_safe/models/update_report_details.py index 08cdba500b..49882dfad3 100644 --- a/src/oci/data_safe/models/update_report_details.py +++ b/src/oci/data_safe/models/update_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_sdm_masking_policy_difference_details.py b/src/oci/data_safe/models/update_sdm_masking_policy_difference_details.py index 80c14e0305..6e78aeacf1 100644 --- a/src/oci/data_safe/models/update_sdm_masking_policy_difference_details.py +++ b/src/oci/data_safe/models/update_sdm_masking_policy_difference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 7689bcde3f..08b5e5917a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_security_policy_deployment_details.py b/src/oci/data_safe/models/update_security_policy_deployment_details.py index ae3361aaef..ae2d3262eb 100644 --- a/src/oci/data_safe/models/update_security_policy_deployment_details.py +++ b/src/oci/data_safe/models/update_security_policy_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_security_policy_details.py b/src/oci/data_safe/models/update_security_policy_details.py index bfbd3ee363..1d7332a80b 100644 --- a/src/oci/data_safe/models/update_security_policy_details.py +++ b/src/oci/data_safe/models/update_security_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_sensitive_category_details.py b/src/oci/data_safe/models/update_sensitive_category_details.py index a68c602033..02615ddf46 100644 --- a/src/oci/data_safe/models/update_sensitive_category_details.py +++ b/src/oci/data_safe/models/update_sensitive_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_sensitive_column_details.py b/src/oci/data_safe/models/update_sensitive_column_details.py index 2e6d21bf35..c143bbc2ab 100644 --- a/src/oci/data_safe/models/update_sensitive_column_details.py +++ b/src/oci/data_safe/models/update_sensitive_column_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_sensitive_data_model_details.py b/src/oci/data_safe/models/update_sensitive_data_model_details.py index 59e1ab2db7..10ab0d8e24 100644 --- a/src/oci/data_safe/models/update_sensitive_data_model_details.py +++ b/src/oci/data_safe/models/update_sensitive_data_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_sensitive_type_details.py b/src/oci/data_safe/models/update_sensitive_type_details.py index 08f1882e7c..2dbba9114c 100644 --- a/src/oci/data_safe/models/update_sensitive_type_details.py +++ b/src/oci/data_safe/models/update_sensitive_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_sensitive_type_pattern_details.py b/src/oci/data_safe/models/update_sensitive_type_pattern_details.py index c37d6eff90..616dde8d5c 100644 --- a/src/oci/data_safe/models/update_sensitive_type_pattern_details.py +++ b/src/oci/data_safe/models/update_sensitive_type_pattern_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_sql_collection_details.py b/src/oci/data_safe/models/update_sql_collection_details.py index 8ae9b2a82c..48fbc48c5d 100644 --- a/src/oci/data_safe/models/update_sql_collection_details.py +++ b/src/oci/data_safe/models/update_sql_collection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_sql_firewall_config_details.py b/src/oci/data_safe/models/update_sql_firewall_config_details.py index 4b394cad1a..e6f7ce4246 100644 --- a/src/oci/data_safe/models/update_sql_firewall_config_details.py +++ b/src/oci/data_safe/models/update_sql_firewall_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_sql_firewall_policy_details.py b/src/oci/data_safe/models/update_sql_firewall_policy_details.py index 756577d807..1ccef6e5f5 100644 --- a/src/oci/data_safe/models/update_sql_firewall_policy_details.py +++ b/src/oci/data_safe/models/update_sql_firewall_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/update_target_alert_policy_association_details.py b/src/oci/data_safe/models/update_target_alert_policy_association_details.py index ded0511d69..0efcfbf700 100644 --- a/src/oci/data_safe/models/update_target_alert_policy_association_details.py +++ b/src/oci/data_safe/models/update_target_alert_policy_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 5d918969a5..578ff78a59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 69fecab260..8f639ba9e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/user_access_analytics_collection.py b/src/oci/data_safe/models/user_access_analytics_collection.py index 3930ec0982..932fded981 100644 --- a/src/oci/data_safe/models/user_access_analytics_collection.py +++ b/src/oci/data_safe/models/user_access_analytics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/user_access_analytics_summary.py b/src/oci/data_safe/models/user_access_analytics_summary.py index 9313e3ae63..8c57994ce3 100644 --- a/src/oci/data_safe/models/user_access_analytics_summary.py +++ b/src/oci/data_safe/models/user_access_analytics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/user_aggregation.py b/src/oci/data_safe/models/user_aggregation.py index 8ae7e2b9cf..bf86bafa79 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/user_assessment.py b/src/oci/data_safe/models/user_assessment.py index 7e16020226..3ad0f6b307 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 0d6a1f3324..688fd3e2fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/user_assessment_comparison.py b/src/oci/data_safe/models/user_assessment_comparison.py index c4952b743a..1cac0f193e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/user_assessment_summary.py b/src/oci/data_safe/models/user_assessment_summary.py index 1130297d6d..7331c954af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/user_details.py b/src/oci/data_safe/models/user_details.py index bd3d012e2b..05075d3b9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/user_summary.py b/src/oci/data_safe/models/user_summary.py index 0d3969d806..beefb0aa0e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/work_request.py b/src/oci/data_safe/models/work_request.py index cff2886daa..27ffa857d1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/work_request_error.py b/src/oci/data_safe/models/work_request_error.py index 7906260d1a..6fea35e54d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 c51dbe0aef..b362b66496 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/work_request_resource.py b/src/oci/data_safe/models/work_request_resource.py index c9a67003fe..79ae732201 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_safe/models/work_request_summary.py b/src/oci/data_safe/models/work_request_summary.py index 46179a00fc..08a0798877 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/data_science/__init__.py b/src/oci/data_science/__init__.py index 4df60cb6df..6a9f1b3f4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/data_science_client.py b/src/oci/data_science/data_science_client.py index 46c7d0f25b..e908459ba0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 ea182e7c4d..38177dcf0b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/__init__.py b/src/oci/data_science/models/__init__.py index dcdb156a26..af3b953a52 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/artifact_export_details.py b/src/oci/data_science/models/artifact_export_details.py index 936d44424e..c2a0ccc349 100644 --- a/src/oci/data_science/models/artifact_export_details.py +++ b/src/oci/data_science/models/artifact_export_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/artifact_export_details_object_storage.py b/src/oci/data_science/models/artifact_export_details_object_storage.py index 167c61cd33..7c432b714c 100644 --- a/src/oci/data_science/models/artifact_export_details_object_storage.py +++ b/src/oci/data_science/models/artifact_export_details_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/artifact_import_details.py b/src/oci/data_science/models/artifact_import_details.py index db884adb2b..749c739852 100644 --- a/src/oci/data_science/models/artifact_import_details.py +++ b/src/oci/data_science/models/artifact_import_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/artifact_import_details_object_storage.py b/src/oci/data_science/models/artifact_import_details_object_storage.py index 6b3aa44fab..57b0e12f7b 100644 --- a/src/oci/data_science/models/artifact_import_details_object_storage.py +++ b/src/oci/data_science/models/artifact_import_details_object_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/auto_scaling_policy.py b/src/oci/data_science/models/auto_scaling_policy.py index 02c4726739..847d8bfea4 100644 --- a/src/oci/data_science/models/auto_scaling_policy.py +++ b/src/oci/data_science/models/auto_scaling_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/auto_scaling_policy_details.py b/src/oci/data_science/models/auto_scaling_policy_details.py index fce039fdba..24c9cf515f 100644 --- a/src/oci/data_science/models/auto_scaling_policy_details.py +++ b/src/oci/data_science/models/auto_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/backup_operation_details.py b/src/oci/data_science/models/backup_operation_details.py index 4e4a460356..d42d09e069 100644 --- a/src/oci/data_science/models/backup_operation_details.py +++ b/src/oci/data_science/models/backup_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/backup_setting.py b/src/oci/data_science/models/backup_setting.py index 24bca5386e..715081d9be 100644 --- a/src/oci/data_science/models/backup_setting.py +++ b/src/oci/data_science/models/backup_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/category_log_details.py b/src/oci/data_science/models/category_log_details.py index 38284e973a..08688c2539 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/change_data_science_private_endpoint_compartment_details.py b/src/oci/data_science/models/change_data_science_private_endpoint_compartment_details.py index f9ca76d923..a63e851b78 100644 --- a/src/oci/data_science/models/change_data_science_private_endpoint_compartment_details.py +++ b/src/oci/data_science/models/change_data_science_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 03fd80e674..cc65522577 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 69d00470b2..28a6587748 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 6c7a4a5465..bf2ddfdbbd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 6a99402967..3628bd04d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/change_model_version_set_compartment_details.py b/src/oci/data_science/models/change_model_version_set_compartment_details.py index 37d44974b6..55626f3e3d 100644 --- a/src/oci/data_science/models/change_model_version_set_compartment_details.py +++ b/src/oci/data_science/models/change_model_version_set_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 41f9919674..843a34c201 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/change_pipeline_compartment_details.py b/src/oci/data_science/models/change_pipeline_compartment_details.py index d78d2851e7..00b38e4388 100644 --- a/src/oci/data_science/models/change_pipeline_compartment_details.py +++ b/src/oci/data_science/models/change_pipeline_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/change_pipeline_run_compartment_details.py b/src/oci/data_science/models/change_pipeline_run_compartment_details.py index e860c3ff05..b7b15632a7 100644 --- a/src/oci/data_science/models/change_pipeline_run_compartment_details.py +++ b/src/oci/data_science/models/change_pipeline_run_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 eec4e51511..d0c9e82643 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/create_data_science_private_endpoint_details.py b/src/oci/data_science/models/create_data_science_private_endpoint_details.py index 6d7c9168c1..5e66c17b87 100644 --- a/src/oci/data_science/models/create_data_science_private_endpoint_details.py +++ b/src/oci/data_science/models/create_data_science_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/create_job_details.py b/src/oci/data_science/models/create_job_details.py index 9d7568ca44..46250ee184 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 e22fecaf7b..8cef7b4a11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 825d7cc1a6..807cff1451 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/create_model_details.py b/src/oci/data_science/models/create_model_details.py index 732fc55198..74fb812bc4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 474157a72a..9c598a9f51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/create_model_version_set_details.py b/src/oci/data_science/models/create_model_version_set_details.py index 96262b3a1c..35ff0d30b4 100644 --- a/src/oci/data_science/models/create_model_version_set_details.py +++ b/src/oci/data_science/models/create_model_version_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 7f0e8f8ee9..90f95dc903 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/create_pipeline_details.py b/src/oci/data_science/models/create_pipeline_details.py index ecadb7ee6d..9d85438d3d 100644 --- a/src/oci/data_science/models/create_pipeline_details.py +++ b/src/oci/data_science/models/create_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/create_pipeline_run_details.py b/src/oci/data_science/models/create_pipeline_run_details.py index 614a14002c..92f3273b39 100644 --- a/src/oci/data_science/models/create_pipeline_run_details.py +++ b/src/oci/data_science/models/create_pipeline_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/create_project_details.py b/src/oci/data_science/models/create_project_details.py index c4bcfa94a9..36f27921c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/custom_expression_query_scaling_configuration.py b/src/oci/data_science/models/custom_expression_query_scaling_configuration.py index ad7a393b30..7be7a0c5be 100644 --- a/src/oci/data_science/models/custom_expression_query_scaling_configuration.py +++ b/src/oci/data_science/models/custom_expression_query_scaling_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/custom_metric_expression_rule.py b/src/oci/data_science/models/custom_metric_expression_rule.py index bcfaa8615e..a2f3f65b40 100644 --- a/src/oci/data_science/models/custom_metric_expression_rule.py +++ b/src/oci/data_science/models/custom_metric_expression_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/data_science_private_endpoint.py b/src/oci/data_science/models/data_science_private_endpoint.py index d14f04bee7..b4b7e9d2b6 100644 --- a/src/oci/data_science/models/data_science_private_endpoint.py +++ b/src/oci/data_science/models/data_science_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/data_science_private_endpoint_summary.py b/src/oci/data_science/models/data_science_private_endpoint_summary.py index c9605f1344..ae95eba613 100644 --- a/src/oci/data_science/models/data_science_private_endpoint_summary.py +++ b/src/oci/data_science/models/data_science_private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 ba74974e14..cc63517385 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/default_model_deployment_environment_configuration_details.py b/src/oci/data_science/models/default_model_deployment_environment_configuration_details.py index 55e1511d36..686e4024da 100644 --- a/src/oci/data_science/models/default_model_deployment_environment_configuration_details.py +++ b/src/oci/data_science/models/default_model_deployment_environment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/export_model_artifact_details.py b/src/oci/data_science/models/export_model_artifact_details.py index 18b785cc21..c1b420a6ca 100644 --- a/src/oci/data_science/models/export_model_artifact_details.py +++ b/src/oci/data_science/models/export_model_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/fast_launch_job_config_summary.py b/src/oci/data_science/models/fast_launch_job_config_summary.py index 5887e7d28e..10f4679fa1 100644 --- a/src/oci/data_science/models/fast_launch_job_config_summary.py +++ b/src/oci/data_science/models/fast_launch_job_config_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/file_storage_mount_configuration_details.py b/src/oci/data_science/models/file_storage_mount_configuration_details.py index 3d2fb02c7c..3bcfff0307 100644 --- a/src/oci/data_science/models/file_storage_mount_configuration_details.py +++ b/src/oci/data_science/models/file_storage_mount_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 38767c9951..260272af0e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/import_model_artifact_details.py b/src/oci/data_science/models/import_model_artifact_details.py index f9954811fc..d49443fcef 100644 --- a/src/oci/data_science/models/import_model_artifact_details.py +++ b/src/oci/data_science/models/import_model_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/instance_configuration.py b/src/oci/data_science/models/instance_configuration.py index b6a19fa1e1..049f3f558f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/instance_pool_model_deployment_system_data.py b/src/oci/data_science/models/instance_pool_model_deployment_system_data.py index da00c60660..08dcf3db52 100644 --- a/src/oci/data_science/models/instance_pool_model_deployment_system_data.py +++ b/src/oci/data_science/models/instance_pool_model_deployment_system_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/job.py b/src/oci/data_science/models/job.py index 6621a3b2ad..03290c0ae6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/job_configuration_details.py b/src/oci/data_science/models/job_configuration_details.py index a61ee2a7aa..859d47a816 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/job_environment_configuration_details.py b/src/oci/data_science/models/job_environment_configuration_details.py index 4ab2f47484..2cb6eae213 100644 --- a/src/oci/data_science/models/job_environment_configuration_details.py +++ b/src/oci/data_science/models/job_environment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 7276be6186..8783f30914 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 e286e995ce..19e00dceb6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/job_run.py b/src/oci/data_science/models/job_run.py index 6f76b4c2a6..1f5f12efa2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 c938ad9043..e8493cd290 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/job_run_summary.py b/src/oci/data_science/models/job_run_summary.py index ff01893bbb..163380a4b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/job_shape_config_details.py b/src/oci/data_science/models/job_shape_config_details.py index d69d6f3bd4..634fae04c0 100644 --- a/src/oci/data_science/models/job_shape_config_details.py +++ b/src/oci/data_science/models/job_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/job_shape_summary.py b/src/oci/data_science/models/job_shape_summary.py index 1c9a0268d1..b37b2991b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/job_summary.py b/src/oci/data_science/models/job_summary.py index 3c92098bda..5184eb1962 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/log_details.py b/src/oci/data_science/models/log_details.py index 7361aa1b09..2d04c9d60a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/managed_egress_standalone_job_infrastructure_configuration_details.py b/src/oci/data_science/models/managed_egress_standalone_job_infrastructure_configuration_details.py index 9222b855bb..66d1e9890c 100644 --- a/src/oci/data_science/models/managed_egress_standalone_job_infrastructure_configuration_details.py +++ b/src/oci/data_science/models/managed_egress_standalone_job_infrastructure_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/metadata.py b/src/oci/data_science/models/metadata.py index 4e6a4aa15e..f64221d4df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/metric_expression_rule.py b/src/oci/data_science/models/metric_expression_rule.py index c43192de46..c23998af59 100644 --- a/src/oci/data_science/models/metric_expression_rule.py +++ b/src/oci/data_science/models/metric_expression_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model.py b/src/oci/data_science/models/model.py index 39daf4857d..8b09003305 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_configuration_details.py b/src/oci/data_science/models/model_configuration_details.py index a25f7d09d8..31c57c9751 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_deployment.py b/src/oci/data_science/models/model_deployment.py index c7424d7663..bc76ca4991 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 5b2dcc68d1..95687cd568 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_deployment_environment_configuration_details.py b/src/oci/data_science/models/model_deployment_environment_configuration_details.py index 9412c20e71..c2cfb7868a 100644 --- a/src/oci/data_science/models/model_deployment_environment_configuration_details.py +++ b/src/oci/data_science/models/model_deployment_environment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_deployment_instance_shape_config_details.py b/src/oci/data_science/models/model_deployment_instance_shape_config_details.py index 889333ed85..5eb232ae06 100644 --- a/src/oci/data_science/models/model_deployment_instance_shape_config_details.py +++ b/src/oci/data_science/models/model_deployment_instance_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 2d3a182ac1..1e5398ed8a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_deployment_summary.py b/src/oci/data_science/models/model_deployment_summary.py index 4740593a23..4cf2f0ecba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_deployment_system_data.py b/src/oci/data_science/models/model_deployment_system_data.py index 8d6f30480d..7477c902e0 100644 --- a/src/oci/data_science/models/model_deployment_system_data.py +++ b/src/oci/data_science/models/model_deployment_system_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_provenance.py b/src/oci/data_science/models/model_provenance.py index 5e046d4a53..7e0de612ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_summary.py b/src/oci/data_science/models/model_summary.py index 9aee226f87..d8b5465c12 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_version_set.py b/src/oci/data_science/models/model_version_set.py index f25931b324..2d0229b855 100644 --- a/src/oci/data_science/models/model_version_set.py +++ b/src/oci/data_science/models/model_version_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/model_version_set_summary.py b/src/oci/data_science/models/model_version_set_summary.py index 864f075e41..f39287c06a 100644 --- a/src/oci/data_science/models/model_version_set_summary.py +++ b/src/oci/data_science/models/model_version_set_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/notebook_session.py b/src/oci/data_science/models/notebook_session.py index ba678ce48d..b42c31b9a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/notebook_session_config_details.py b/src/oci/data_science/models/notebook_session_config_details.py index b4f78be681..987c73ae42 100644 --- a/src/oci/data_science/models/notebook_session_config_details.py +++ b/src/oci/data_science/models/notebook_session_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 78dd845782..561ec44001 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/notebook_session_git_config_details.py b/src/oci/data_science/models/notebook_session_git_config_details.py index e53d0b9d42..b65da30596 100644 --- a/src/oci/data_science/models/notebook_session_git_config_details.py +++ b/src/oci/data_science/models/notebook_session_git_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/notebook_session_git_repo_config_details.py b/src/oci/data_science/models/notebook_session_git_repo_config_details.py index db235f3be5..ad94fa2ab8 100644 --- a/src/oci/data_science/models/notebook_session_git_repo_config_details.py +++ b/src/oci/data_science/models/notebook_session_git_repo_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/notebook_session_runtime_config_details.py b/src/oci/data_science/models/notebook_session_runtime_config_details.py index fdec4248ae..baf90a6cf3 100644 --- a/src/oci/data_science/models/notebook_session_runtime_config_details.py +++ b/src/oci/data_science/models/notebook_session_runtime_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 1ef6ea9042..6b0912b359 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 07819183e5..b57710706a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/notebook_session_summary.py b/src/oci/data_science/models/notebook_session_summary.py index 9f187ffdf3..3799a7e815 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/object_storage_mount_configuration_details.py b/src/oci/data_science/models/object_storage_mount_configuration_details.py index e6b76cbd47..bd5f8fb573 100644 --- a/src/oci/data_science/models/object_storage_mount_configuration_details.py +++ b/src/oci/data_science/models/object_storage_mount_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/ocir_container_job_environment_configuration_details.py b/src/oci/data_science/models/ocir_container_job_environment_configuration_details.py index 5b297115f4..af859e2389 100644 --- a/src/oci/data_science/models/ocir_container_job_environment_configuration_details.py +++ b/src/oci/data_science/models/ocir_container_job_environment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/ocir_model_deployment_environment_configuration_details.py b/src/oci/data_science/models/ocir_model_deployment_environment_configuration_details.py index eb85ee8cc3..88e29a0360 100644 --- a/src/oci/data_science/models/ocir_model_deployment_environment_configuration_details.py +++ b/src/oci/data_science/models/ocir_model_deployment_environment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline.py b/src/oci/data_science/models/pipeline.py index 22135fa5df..b9ae52e02a 100644 --- a/src/oci/data_science/models/pipeline.py +++ b/src/oci/data_science/models/pipeline.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_configuration_details.py b/src/oci/data_science/models/pipeline_configuration_details.py index b1b125af62..1813ad89b9 100644 --- a/src/oci/data_science/models/pipeline_configuration_details.py +++ b/src/oci/data_science/models/pipeline_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_container_configuration_details.py b/src/oci/data_science/models/pipeline_container_configuration_details.py index 6b6d336f72..d1779e7f58 100644 --- a/src/oci/data_science/models/pipeline_container_configuration_details.py +++ b/src/oci/data_science/models/pipeline_container_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_container_step_details.py b/src/oci/data_science/models/pipeline_container_step_details.py index 44d8432c46..a0372085b7 100644 --- a/src/oci/data_science/models/pipeline_container_step_details.py +++ b/src/oci/data_science/models/pipeline_container_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_container_step_run.py b/src/oci/data_science/models/pipeline_container_step_run.py index 8178fd3390..13cea92057 100644 --- a/src/oci/data_science/models/pipeline_container_step_run.py +++ b/src/oci/data_science/models/pipeline_container_step_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_container_step_update_details.py b/src/oci/data_science/models/pipeline_container_step_update_details.py index 7cccb9f60f..0c6609a4f3 100644 --- a/src/oci/data_science/models/pipeline_container_step_update_details.py +++ b/src/oci/data_science/models/pipeline_container_step_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_custom_script_step_details.py b/src/oci/data_science/models/pipeline_custom_script_step_details.py index ff9f70ae25..72210405e4 100644 --- a/src/oci/data_science/models/pipeline_custom_script_step_details.py +++ b/src/oci/data_science/models/pipeline_custom_script_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_custom_script_step_run.py b/src/oci/data_science/models/pipeline_custom_script_step_run.py index 429d3603f8..2f224deac3 100644 --- a/src/oci/data_science/models/pipeline_custom_script_step_run.py +++ b/src/oci/data_science/models/pipeline_custom_script_step_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_custom_script_step_update_details.py b/src/oci/data_science/models/pipeline_custom_script_step_update_details.py index 8faea7ea7f..bc1786b6bf 100644 --- a/src/oci/data_science/models/pipeline_custom_script_step_update_details.py +++ b/src/oci/data_science/models/pipeline_custom_script_step_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_default_configuration_details.py b/src/oci/data_science/models/pipeline_default_configuration_details.py index 46e6dac8a1..1ef9966ed9 100644 --- a/src/oci/data_science/models/pipeline_default_configuration_details.py +++ b/src/oci/data_science/models/pipeline_default_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_infrastructure_configuration_details.py b/src/oci/data_science/models/pipeline_infrastructure_configuration_details.py index c6c02b9a23..600cee3c43 100644 --- a/src/oci/data_science/models/pipeline_infrastructure_configuration_details.py +++ b/src/oci/data_science/models/pipeline_infrastructure_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_log_configuration_details.py b/src/oci/data_science/models/pipeline_log_configuration_details.py index bd81ad3715..0d9bfc2269 100644 --- a/src/oci/data_science/models/pipeline_log_configuration_details.py +++ b/src/oci/data_science/models/pipeline_log_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_ml_job_step_details.py b/src/oci/data_science/models/pipeline_ml_job_step_details.py index 3ecb882bf1..a905101cf7 100644 --- a/src/oci/data_science/models/pipeline_ml_job_step_details.py +++ b/src/oci/data_science/models/pipeline_ml_job_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_ml_job_step_run.py b/src/oci/data_science/models/pipeline_ml_job_step_run.py index 2a59d79f9d..87449db4a5 100644 --- a/src/oci/data_science/models/pipeline_ml_job_step_run.py +++ b/src/oci/data_science/models/pipeline_ml_job_step_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_ml_job_step_update_details.py b/src/oci/data_science/models/pipeline_ml_job_step_update_details.py index ac67cf932d..485599638c 100644 --- a/src/oci/data_science/models/pipeline_ml_job_step_update_details.py +++ b/src/oci/data_science/models/pipeline_ml_job_step_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_ocir_container_configuration_details.py b/src/oci/data_science/models/pipeline_ocir_container_configuration_details.py index 215612b3d6..6ad7673860 100644 --- a/src/oci/data_science/models/pipeline_ocir_container_configuration_details.py +++ b/src/oci/data_science/models/pipeline_ocir_container_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_run.py b/src/oci/data_science/models/pipeline_run.py index 958562abf4..8d691d987b 100644 --- a/src/oci/data_science/models/pipeline_run.py +++ b/src/oci/data_science/models/pipeline_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_run_log_details.py b/src/oci/data_science/models/pipeline_run_log_details.py index 8dbfe2dcca..aab5892729 100644 --- a/src/oci/data_science/models/pipeline_run_log_details.py +++ b/src/oci/data_science/models/pipeline_run_log_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_run_summary.py b/src/oci/data_science/models/pipeline_run_summary.py index eb0d3d1aab..7ef588d59c 100644 --- a/src/oci/data_science/models/pipeline_run_summary.py +++ b/src/oci/data_science/models/pipeline_run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_shape_config_details.py b/src/oci/data_science/models/pipeline_shape_config_details.py index a2295fe159..5015a171df 100644 --- a/src/oci/data_science/models/pipeline_shape_config_details.py +++ b/src/oci/data_science/models/pipeline_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_step_configuration_details.py b/src/oci/data_science/models/pipeline_step_configuration_details.py index 7285f0f361..bf77b80ec3 100644 --- a/src/oci/data_science/models/pipeline_step_configuration_details.py +++ b/src/oci/data_science/models/pipeline_step_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_step_details.py b/src/oci/data_science/models/pipeline_step_details.py index 0679cbb53a..26c793b405 100644 --- a/src/oci/data_science/models/pipeline_step_details.py +++ b/src/oci/data_science/models/pipeline_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_step_override_details.py b/src/oci/data_science/models/pipeline_step_override_details.py index 3cfae8eced..ee02685c25 100644 --- a/src/oci/data_science/models/pipeline_step_override_details.py +++ b/src/oci/data_science/models/pipeline_step_override_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_step_run.py b/src/oci/data_science/models/pipeline_step_run.py index 8832638ed1..109d637376 100644 --- a/src/oci/data_science/models/pipeline_step_run.py +++ b/src/oci/data_science/models/pipeline_step_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_step_update_details.py b/src/oci/data_science/models/pipeline_step_update_details.py index 10890e2ef1..2bf5bffffe 100644 --- a/src/oci/data_science/models/pipeline_step_update_details.py +++ b/src/oci/data_science/models/pipeline_step_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/pipeline_summary.py b/src/oci/data_science/models/pipeline_summary.py index 1a30d0a262..b7d309fe74 100644 --- a/src/oci/data_science/models/pipeline_summary.py +++ b/src/oci/data_science/models/pipeline_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/predefined_expression_threshold_scaling_configuration.py b/src/oci/data_science/models/predefined_expression_threshold_scaling_configuration.py index 685a2e614d..afe2670294 100644 --- a/src/oci/data_science/models/predefined_expression_threshold_scaling_configuration.py +++ b/src/oci/data_science/models/predefined_expression_threshold_scaling_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/predefined_metric_expression_rule.py b/src/oci/data_science/models/predefined_metric_expression_rule.py index e17bd4f867..7ab961d587 100644 --- a/src/oci/data_science/models/predefined_metric_expression_rule.py +++ b/src/oci/data_science/models/predefined_metric_expression_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/project.py b/src/oci/data_science/models/project.py index b3f7df109f..802ebb6701 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/project_summary.py b/src/oci/data_science/models/project_summary.py index fcc67ff2d0..8718756d58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/retention_operation_details.py b/src/oci/data_science/models/retention_operation_details.py index f1d38a1a2f..636852a639 100644 --- a/src/oci/data_science/models/retention_operation_details.py +++ b/src/oci/data_science/models/retention_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/retention_setting.py b/src/oci/data_science/models/retention_setting.py index 8749cdcb46..e4e455e19e 100644 --- a/src/oci/data_science/models/retention_setting.py +++ b/src/oci/data_science/models/retention_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/scaling_configuration.py b/src/oci/data_science/models/scaling_configuration.py index 9c03bd1105..54533c6262 100644 --- a/src/oci/data_science/models/scaling_configuration.py +++ b/src/oci/data_science/models/scaling_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/scaling_policy.py b/src/oci/data_science/models/scaling_policy.py index 6a801cf5cf..3e4be272c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 61cb6deef0..0b1c222261 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 7e198e488a..9648870874 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/storage_mount_configuration_details.py b/src/oci/data_science/models/storage_mount_configuration_details.py index 42af54461f..aac96f1929 100644 --- a/src/oci/data_science/models/storage_mount_configuration_details.py +++ b/src/oci/data_science/models/storage_mount_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/threshold_based_auto_scaling_policy_details.py b/src/oci/data_science/models/threshold_based_auto_scaling_policy_details.py index f02c5b5ff8..289ccd0152 100644 --- a/src/oci/data_science/models/threshold_based_auto_scaling_policy_details.py +++ b/src/oci/data_science/models/threshold_based_auto_scaling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 9552375bb6..f430f05ed4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_data_science_private_endpoint_details.py b/src/oci/data_science/models/update_data_science_private_endpoint_details.py index 71e31ee600..319700b9f2 100644 --- a/src/oci/data_science/models/update_data_science_private_endpoint_details.py +++ b/src/oci/data_science/models/update_data_science_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_default_model_deployment_environment_configuration_details.py b/src/oci/data_science/models/update_default_model_deployment_environment_configuration_details.py index bb92d1b609..a28ad4e3fc 100644 --- a/src/oci/data_science/models/update_default_model_deployment_environment_configuration_details.py +++ b/src/oci/data_science/models/update_default_model_deployment_environment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_job_details.py b/src/oci/data_science/models/update_job_details.py index dc9b336354..bb5904da3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 b5cfab19d1..b65e3cd266 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 e828bd3918..5572af9d29 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 9859073a93..3871fac316 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 73ff3e56a1..84bece1fef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_model_deployment_environment_configuration_details.py b/src/oci/data_science/models/update_model_deployment_environment_configuration_details.py index 8fbe5aedbc..1cde7bb17e 100644 --- a/src/oci/data_science/models/update_model_deployment_environment_configuration_details.py +++ b/src/oci/data_science/models/update_model_deployment_environment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_model_details.py b/src/oci/data_science/models/update_model_details.py index 6cc59d1cd5..5b4e6bc1ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 c76ba68087..01afe64565 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_model_version_set_details.py b/src/oci/data_science/models/update_model_version_set_details.py index 30dfd8b3ae..a27a7360aa 100644 --- a/src/oci/data_science/models/update_model_version_set_details.py +++ b/src/oci/data_science/models/update_model_version_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 8d0607fbec..4df056bad5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_ocir_model_deployment_environment_configuration_details.py b/src/oci/data_science/models/update_ocir_model_deployment_environment_configuration_details.py index 4bf8f9f10b..4b2070fc19 100644 --- a/src/oci/data_science/models/update_ocir_model_deployment_environment_configuration_details.py +++ b/src/oci/data_science/models/update_ocir_model_deployment_environment_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_pipeline_details.py b/src/oci/data_science/models/update_pipeline_details.py index f6c5f1d094..0a6dbcf538 100644 --- a/src/oci/data_science/models/update_pipeline_details.py +++ b/src/oci/data_science/models/update_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_pipeline_run_details.py b/src/oci/data_science/models/update_pipeline_run_details.py index e8d0c14e23..901d08b313 100644 --- a/src/oci/data_science/models/update_pipeline_run_details.py +++ b/src/oci/data_science/models/update_pipeline_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/update_project_details.py b/src/oci/data_science/models/update_project_details.py index ffbf3c7a9e..1c88a226fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 b887391a22..aef9cede52 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/work_request.py b/src/oci/data_science/models/work_request.py index b979b73e3d..e61db779b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/work_request_error.py b/src/oci/data_science/models/work_request_error.py index da63532bb1..2777dd4957 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 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 76a9baf75b..c89b2c57aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/work_request_resource.py b/src/oci/data_science/models/work_request_resource.py index 576d7345dd..357451e6e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/data_science/models/work_request_summary.py b/src/oci/data_science/models/work_request_summary.py index f8431759b3..4108497396 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190101 diff --git a/src/oci/database/__init__.py b/src/oci/database/__init__.py index 83df628010..47daa0a2bc 100644 --- a/src/oci/database/__init__.py +++ b/src/oci/database/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/database_client.py b/src/oci/database/database_client.py index 6da59f3ddb..c650e78869 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/database_client_composite_operations.py b/src/oci/database/database_client_composite_operations.py index de764b731b..da1490bc59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/__init__.py b/src/oci/database/models/__init__.py index 44655b1638..324eb46434 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/acd_avm_resource_stats.py b/src/oci/database/models/acd_avm_resource_stats.py index 8e92503c9e..29878578a2 100644 --- a/src/oci/database/models/acd_avm_resource_stats.py +++ b/src/oci/database/models/acd_avm_resource_stats.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/action_member.py b/src/oci/database/models/action_member.py index 6138398ff2..23a76674a8 100644 --- a/src/oci/database/models/action_member.py +++ b/src/oci/database/models/action_member.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/action_order_details.py b/src/oci/database/models/action_order_details.py index 434a0555b4..68242601da 100644 --- a/src/oci/database/models/action_order_details.py +++ b/src/oci/database/models/action_order_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/action_param_values_collection.py b/src/oci/database/models/action_param_values_collection.py index 347b245214..ec1866550d 100644 --- a/src/oci/database/models/action_param_values_collection.py +++ b/src/oci/database/models/action_param_values_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/action_param_values_summary.py b/src/oci/database/models/action_param_values_summary.py index daf5081a6e..3ea6a41fcd 100644 --- a/src/oci/database/models/action_param_values_summary.py +++ b/src/oci/database/models/action_param_values_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/activate_exadata_infrastructure_details.py b/src/oci/database/models/activate_exadata_infrastructure_details.py index f0cbca828e..9d386e6775 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/add_virtual_machine_to_cloud_vm_cluster_details.py b/src/oci/database/models/add_virtual_machine_to_cloud_vm_cluster_details.py index 1686ba0d78..0611e7f5e4 100644 --- a/src/oci/database/models/add_virtual_machine_to_cloud_vm_cluster_details.py +++ b/src/oci/database/models/add_virtual_machine_to_cloud_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 4e06150eb1..33b74c9004 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/app_version_summary.py b/src/oci/database/models/app_version_summary.py index 3a34ba4745..49ed34d786 100644 --- a/src/oci/database/models/app_version_summary.py +++ b/src/oci/database/models/app_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/application_vip.py b/src/oci/database/models/application_vip.py index 7afd790cb7..c1f873930c 100644 --- a/src/oci/database/models/application_vip.py +++ b/src/oci/database/models/application_vip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/application_vip_summary.py b/src/oci/database/models/application_vip_summary.py index a6f7b9e6aa..3b3a64783f 100644 --- a/src/oci/database/models/application_vip_summary.py +++ b/src/oci/database/models/application_vip_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/associated_database_details.py b/src/oci/database/models/associated_database_details.py index 016001802c..bd609b5ab7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/automated_mount_details.py b/src/oci/database/models/automated_mount_details.py index e9afcd0560..49b3b7106c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_container_database.py b/src/oci/database/models/autonomous_container_database.py index 9808658e95..d0c83ec8a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3c5194c70e..71892cd2c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 6932ffaf49..fa89c1e6e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_container_database_resource_usage.py b/src/oci/database/models/autonomous_container_database_resource_usage.py index 722c306c4e..7218fd3476 100644 --- a/src/oci/database/models/autonomous_container_database_resource_usage.py +++ b/src/oci/database/models/autonomous_container_database_resource_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_container_database_summary.py b/src/oci/database/models/autonomous_container_database_summary.py index f63a902531..94da2e3598 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_container_database_version_summary.py b/src/oci/database/models/autonomous_container_database_version_summary.py index 35a1049ccb..a003c84ef4 100644 --- a/src/oci/database/models/autonomous_container_database_version_summary.py +++ b/src/oci/database/models/autonomous_container_database_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_data_warehouse.py b/src/oci/database/models/autonomous_data_warehouse.py index b064d6c3b8..c62dd18006 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 aa3d96bcf8..3816e3a233 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_data_warehouse_summary.py b/src/oci/database/models/autonomous_data_warehouse_summary.py index c763a69ccf..dc21598313 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database.py b/src/oci/database/models/autonomous_database.py index 25d9c9b2fc..66fe1b739e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_apex.py b/src/oci/database/models/autonomous_database_apex.py index 9433b206d1..10099606a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_backup.py b/src/oci/database/models/autonomous_database_backup.py index 0d1bc26226..beed099b71 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_backup_config.py b/src/oci/database/models/autonomous_database_backup_config.py index 454b0ecfe7..105dd32084 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_backup_summary.py b/src/oci/database/models/autonomous_database_backup_summary.py index 6c7050ed06..c65dd6d75d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_character_sets.py b/src/oci/database/models/autonomous_database_character_sets.py index 96e5e70fd2..fd3d4332da 100644 --- a/src/oci/database/models/autonomous_database_character_sets.py +++ b/src/oci/database/models/autonomous_database_character_sets.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_connection_strings.py b/src/oci/database/models/autonomous_database_connection_strings.py index c16eb4168a..af9ad755c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_connection_urls.py b/src/oci/database/models/autonomous_database_connection_urls.py index 497857a05f..d6074f250d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8a70d500ee..78dc0ed566 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_dataguard_association.py b/src/oci/database/models/autonomous_database_dataguard_association.py index ba34dcbdfa..8c1d946da3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_encryption_key_details.py b/src/oci/database/models/autonomous_database_encryption_key_details.py index 881d356470..07b919332a 100644 --- a/src/oci/database/models/autonomous_database_encryption_key_details.py +++ b/src/oci/database/models/autonomous_database_encryption_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_encryption_key_history_entry.py b/src/oci/database/models/autonomous_database_encryption_key_history_entry.py index 6550fe7c6b..b45cdaba22 100644 --- a/src/oci/database/models/autonomous_database_encryption_key_history_entry.py +++ b/src/oci/database/models/autonomous_database_encryption_key_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 911288c672..6eec9f8bee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8c40aeba44..09beea8a6a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_peer_collection.py b/src/oci/database/models/autonomous_database_peer_collection.py index 4bbc2bdd97..7e03c0c61d 100644 --- a/src/oci/database/models/autonomous_database_peer_collection.py +++ b/src/oci/database/models/autonomous_database_peer_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_peer_summary.py b/src/oci/database/models/autonomous_database_peer_summary.py index 14e4c4e459..0c2e0c7389 100644 --- a/src/oci/database/models/autonomous_database_peer_summary.py +++ b/src/oci/database/models/autonomous_database_peer_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_software_image.py b/src/oci/database/models/autonomous_database_software_image.py index d8d7bdd881..6683e77b71 100644 --- a/src/oci/database/models/autonomous_database_software_image.py +++ b/src/oci/database/models/autonomous_database_software_image.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_software_image_collection.py b/src/oci/database/models/autonomous_database_software_image_collection.py index 287e04c34b..b795c456b8 100644 --- a/src/oci/database/models/autonomous_database_software_image_collection.py +++ b/src/oci/database/models/autonomous_database_software_image_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_software_image_summary.py b/src/oci/database/models/autonomous_database_software_image_summary.py index bd52757c57..3151861b84 100644 --- a/src/oci/database/models/autonomous_database_software_image_summary.py +++ b/src/oci/database/models/autonomous_database_software_image_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_standby_summary.py b/src/oci/database/models/autonomous_database_standby_summary.py index 6aaec9ecfe..f75f3b78a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_summary.py b/src/oci/database/models/autonomous_database_summary.py index 37e1a9027c..fbd6c2dde8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_database_wallet.py b/src/oci/database/models/autonomous_database_wallet.py index 54d24c76be..86da160093 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 245fbac99f..753609d325 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_db_version_summary.py b/src/oci/database/models/autonomous_db_version_summary.py index df43af8d23..324f4bd25c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_exadata_infrastructure.py b/src/oci/database/models/autonomous_exadata_infrastructure.py index 6d5d015c63..e708da0689 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 96f9e1be07..912b225998 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_exadata_infrastructure_summary.py b/src/oci/database/models/autonomous_exadata_infrastructure_summary.py index 23f3463bd8..01ad83665d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_patch.py b/src/oci/database/models/autonomous_patch.py index 59e762721a..a1638d1668 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_patch_summary.py b/src/oci/database/models/autonomous_patch_summary.py index 0f4d10c601..157eb4c8ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_virtual_machine.py b/src/oci/database/models/autonomous_virtual_machine.py index 002e14d64b..2f1e57f677 100644 --- a/src/oci/database/models/autonomous_virtual_machine.py +++ b/src/oci/database/models/autonomous_virtual_machine.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_virtual_machine_summary.py b/src/oci/database/models/autonomous_virtual_machine_summary.py index 27c5e4e916..221b7de113 100644 --- a/src/oci/database/models/autonomous_virtual_machine_summary.py +++ b/src/oci/database/models/autonomous_virtual_machine_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_vm_cluster.py b/src/oci/database/models/autonomous_vm_cluster.py index 6593980045..5736b6fe16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_vm_cluster_resource_details.py b/src/oci/database/models/autonomous_vm_cluster_resource_details.py index 04c8691d49..4247400807 100644 --- a/src/oci/database/models/autonomous_vm_cluster_resource_details.py +++ b/src/oci/database/models/autonomous_vm_cluster_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_vm_cluster_resource_usage.py b/src/oci/database/models/autonomous_vm_cluster_resource_usage.py index 551113ad2c..6028687574 100644 --- a/src/oci/database/models/autonomous_vm_cluster_resource_usage.py +++ b/src/oci/database/models/autonomous_vm_cluster_resource_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_vm_cluster_summary.py b/src/oci/database/models/autonomous_vm_cluster_summary.py index e351a5598d..014b3d16e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/autonomous_vm_resource_usage.py b/src/oci/database/models/autonomous_vm_resource_usage.py index 8c2432dc5f..43e154382b 100644 --- a/src/oci/database/models/autonomous_vm_resource_usage.py +++ b/src/oci/database/models/autonomous_vm_resource_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/avm_acd_resource_stats.py b/src/oci/database/models/avm_acd_resource_stats.py index 55e20e9da9..a7c9dfbd13 100644 --- a/src/oci/database/models/avm_acd_resource_stats.py +++ b/src/oci/database/models/avm_acd_resource_stats.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/aws_key_details.py b/src/oci/database/models/aws_key_details.py index 52e8022f6a..b7edc26351 100644 --- a/src/oci/database/models/aws_key_details.py +++ b/src/oci/database/models/aws_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/azure_key_details.py b/src/oci/database/models/azure_key_details.py index ed32eafe33..6c5d1b56f0 100644 --- a/src/oci/database/models/azure_key_details.py +++ b/src/oci/database/models/azure_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/backup.py b/src/oci/database/models/backup.py index e3d245090b..c7570b6133 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/backup_destination.py b/src/oci/database/models/backup_destination.py index c8550352db..5ee853b2fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/backup_destination_details.py b/src/oci/database/models/backup_destination_details.py index 6a73eeceb7..b73ab0e777 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/backup_destination_summary.py b/src/oci/database/models/backup_destination_summary.py index 03bc894361..d7925c6b6e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/backup_summary.py b/src/oci/database/models/backup_summary.py index c0b8e6a36c..2fa33da7e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cancel_execution_window_details.py b/src/oci/database/models/cancel_execution_window_details.py index 38a8a4d5ae..c84f59cac5 100644 --- a/src/oci/database/models/cancel_execution_window_details.py +++ b/src/oci/database/models/cancel_execution_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_autonomous_database_software_image_compartment_details.py b/src/oci/database/models/change_autonomous_database_software_image_compartment_details.py index 2802a737d4..17cd905d97 100644 --- a/src/oci/database/models/change_autonomous_database_software_image_compartment_details.py +++ b/src/oci/database/models/change_autonomous_database_software_image_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_autonomous_database_subscription_details.py b/src/oci/database/models/change_autonomous_database_subscription_details.py index ed845a0318..78949df641 100644 --- a/src/oci/database/models/change_autonomous_database_subscription_details.py +++ b/src/oci/database/models/change_autonomous_database_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d1b0c8a4a5..7380668498 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e1ecf38ca3..9580fa8b04 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a39535f4f1..d09e6e1bc7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_cloud_exadata_infrastructure_subscription_details.py b/src/oci/database/models/change_cloud_exadata_infrastructure_subscription_details.py index 475e457792..3c58289f50 100644 --- a/src/oci/database/models/change_cloud_exadata_infrastructure_subscription_details.py +++ b/src/oci/database/models/change_cloud_exadata_infrastructure_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7e1c0b486e..fc7980c355 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_cloud_vm_cluster_subscription_details.py b/src/oci/database/models/change_cloud_vm_cluster_subscription_details.py index b004e3efd2..a756d99225 100644 --- a/src/oci/database/models/change_cloud_vm_cluster_subscription_details.py +++ b/src/oci/database/models/change_cloud_vm_cluster_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_compartment_details.py b/src/oci/database/models/change_compartment_details.py index 8cc5eff0fc..6700269e92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_dataguard_role_details.py b/src/oci/database/models/change_dataguard_role_details.py index 21949c69d7..9b94e82962 100644 --- a/src/oci/database/models/change_dataguard_role_details.py +++ b/src/oci/database/models/change_dataguard_role_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_disaster_recovery_configuration_details.py b/src/oci/database/models/change_disaster_recovery_configuration_details.py index 26228c60c1..6b77b10570 100644 --- a/src/oci/database/models/change_disaster_recovery_configuration_details.py +++ b/src/oci/database/models/change_disaster_recovery_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9750ad8a90..07290be155 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_exadb_vm_cluster_compartment_details.py b/src/oci/database/models/change_exadb_vm_cluster_compartment_details.py index b9fe6c62fd..2a1d925fff 100644 --- a/src/oci/database/models/change_exadb_vm_cluster_compartment_details.py +++ b/src/oci/database/models/change_exadb_vm_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_exascale_db_storage_vault_compartment_details.py b/src/oci/database/models/change_exascale_db_storage_vault_compartment_details.py index 43ab5062d5..ab0160fafa 100644 --- a/src/oci/database/models/change_exascale_db_storage_vault_compartment_details.py +++ b/src/oci/database/models/change_exascale_db_storage_vault_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a90663a0c8..c11eaa7b94 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_key_store_type_details.py b/src/oci/database/models/change_key_store_type_details.py index 2a59a6388b..2e36e20b00 100644 --- a/src/oci/database/models/change_key_store_type_details.py +++ b/src/oci/database/models/change_key_store_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_scheduling_plan_compartment_details.py b/src/oci/database/models/change_scheduling_plan_compartment_details.py index 991508d450..456a8b666b 100644 --- a/src/oci/database/models/change_scheduling_plan_compartment_details.py +++ b/src/oci/database/models/change_scheduling_plan_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_scheduling_policy_compartment_details.py b/src/oci/database/models/change_scheduling_policy_compartment_details.py index c346741adf..c4feb152f9 100644 --- a/src/oci/database/models/change_scheduling_policy_compartment_details.py +++ b/src/oci/database/models/change_scheduling_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/change_subscription_details.py b/src/oci/database/models/change_subscription_details.py index 964849044a..4989f74334 100644 --- a/src/oci/database/models/change_subscription_details.py +++ b/src/oci/database/models/change_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9d94422045..c71ae6d7e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_automation_apply_update_time_preference.py b/src/oci/database/models/cloud_automation_apply_update_time_preference.py index a9d8bf644c..7975619ea9 100644 --- a/src/oci/database/models/cloud_automation_apply_update_time_preference.py +++ b/src/oci/database/models/cloud_automation_apply_update_time_preference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_automation_freeze_period.py b/src/oci/database/models/cloud_automation_freeze_period.py index 44c5de01a0..8c5cac6688 100644 --- a/src/oci/database/models/cloud_automation_freeze_period.py +++ b/src/oci/database/models/cloud_automation_freeze_period.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_automation_update_details.py b/src/oci/database/models/cloud_automation_update_details.py index 903780624d..6821a91298 100644 --- a/src/oci/database/models/cloud_automation_update_details.py +++ b/src/oci/database/models/cloud_automation_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_autonomous_vm_cluster.py b/src/oci/database/models/cloud_autonomous_vm_cluster.py index afc140237d..d175e03f76 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_autonomous_vm_cluster_resource_details.py b/src/oci/database/models/cloud_autonomous_vm_cluster_resource_details.py index 700f77202b..11bcb13a1a 100644 --- a/src/oci/database/models/cloud_autonomous_vm_cluster_resource_details.py +++ b/src/oci/database/models/cloud_autonomous_vm_cluster_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_autonomous_vm_cluster_resource_usage.py b/src/oci/database/models/cloud_autonomous_vm_cluster_resource_usage.py index 1da71f0106..59fe52f7f6 100644 --- a/src/oci/database/models/cloud_autonomous_vm_cluster_resource_usage.py +++ b/src/oci/database/models/cloud_autonomous_vm_cluster_resource_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b2a271e00b..1791d659be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_database_management_config.py b/src/oci/database/models/cloud_database_management_config.py index 4dc63a4d4c..71dbb6b642 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_db_server_details.py b/src/oci/database/models/cloud_db_server_details.py index 76658139f0..332d633a90 100644 --- a/src/oci/database/models/cloud_db_server_details.py +++ b/src/oci/database/models/cloud_db_server_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_exadata_infrastructure.py b/src/oci/database/models/cloud_exadata_infrastructure.py index 1bb2988025..bb7874f77f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_exadata_infrastructure_summary.py b/src/oci/database/models/cloud_exadata_infrastructure_summary.py index bb4e17e99e..6e2c67ed99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_exadata_infrastructure_unallocated_resources.py b/src/oci/database/models/cloud_exadata_infrastructure_unallocated_resources.py index f4067d4090..fb1f137f5b 100644 --- a/src/oci/database/models/cloud_exadata_infrastructure_unallocated_resources.py +++ b/src/oci/database/models/cloud_exadata_infrastructure_unallocated_resources.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_vm_cluster.py b/src/oci/database/models/cloud_vm_cluster.py index d5b8385b49..25904c44fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/cloud_vm_cluster_summary.py b/src/oci/database/models/cloud_vm_cluster_summary.py index 7bff49f570..007db9034a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 384a2e3ffd..a12cc7ea25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/compute_performance_summary.py b/src/oci/database/models/compute_performance_summary.py index 0362899c11..b8159edc3f 100644 --- a/src/oci/database/models/compute_performance_summary.py +++ b/src/oci/database/models/compute_performance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 61076cb91b..7498bfa61a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/configure_exascale_exadata_infrastructure_details.py b/src/oci/database/models/configure_exascale_exadata_infrastructure_details.py index 30883b5fb7..c4ea27e02c 100644 --- a/src/oci/database/models/configure_exascale_exadata_infrastructure_details.py +++ b/src/oci/database/models/configure_exascale_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/configure_saas_admin_user_details.py b/src/oci/database/models/configure_saas_admin_user_details.py index fb82871503..e852482235 100644 --- a/src/oci/database/models/configure_saas_admin_user_details.py +++ b/src/oci/database/models/configure_saas_admin_user_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/console_connection.py b/src/oci/database/models/console_connection.py index 51427d5a36..4eceae4e13 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/console_connection_summary.py b/src/oci/database/models/console_connection_summary.py index 4a2538606a..432bd92fb3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/console_history.py b/src/oci/database/models/console_history.py index 53aa0ee37a..84dfb90ab6 100644 --- a/src/oci/database/models/console_history.py +++ b/src/oci/database/models/console_history.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/console_history_collection.py b/src/oci/database/models/console_history_collection.py index ddf4efad96..a416f80c50 100644 --- a/src/oci/database/models/console_history_collection.py +++ b/src/oci/database/models/console_history_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/console_history_summary.py b/src/oci/database/models/console_history_summary.py index 49ad5c9774..70042d70f8 100644 --- a/src/oci/database/models/console_history_summary.py +++ b/src/oci/database/models/console_history_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/convert_to_pdb_details.py b/src/oci/database/models/convert_to_pdb_details.py index ea28469f6a..9d62aa185c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1b0add5b1f..d92261e3a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/convert_to_regular_pluggable_database_details.py b/src/oci/database/models/convert_to_regular_pluggable_database_details.py index 8bcf40e651..0d8976d281 100644 --- a/src/oci/database/models/convert_to_regular_pluggable_database_details.py +++ b/src/oci/database/models/convert_to_regular_pluggable_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_application_vip_details.py b/src/oci/database/models/create_application_vip_details.py index 854783c03c..e20a7c3cfc 100644 --- a/src/oci/database/models/create_application_vip_details.py +++ b/src/oci/database/models/create_application_vip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_autonomous_container_database_dataguard_association_details.py b/src/oci/database/models/create_autonomous_container_database_dataguard_association_details.py index efd8162cdc..6236f32d65 100644 --- a/src/oci/database/models/create_autonomous_container_database_dataguard_association_details.py +++ b/src/oci/database/models/create_autonomous_container_database_dataguard_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1f3fb06c62..a11ac153e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a988db809f..816e9443a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_autonomous_database_base.py b/src/oci/database/models/create_autonomous_database_base.py index d544576db5..81c5459cea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d07cd6dac2..366730e92a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_autonomous_database_details.py b/src/oci/database/models/create_autonomous_database_details.py index e765b84ebf..abf4d34853 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 343eb9f9b1..a614098aca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c115e632fc..b0f169e0be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_autonomous_database_software_image_details.py b/src/oci/database/models/create_autonomous_database_software_image_details.py index 0ae5aa966d..81b8b0d880 100644 --- a/src/oci/database/models/create_autonomous_database_software_image_details.py +++ b/src/oci/database/models/create_autonomous_database_software_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0be57330f4..30930e0c1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_backup_destination_details.py b/src/oci/database/models/create_backup_destination_details.py index 7ba5aafdf2..89dc25493a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_backup_details.py b/src/oci/database/models/create_backup_details.py index 5090acf92f..23c2c83285 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 79a461a304..bf7861cc1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 501d290b48..fcf7bee1b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d183a6be1b..f58351f387 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_console_connection_details.py b/src/oci/database/models/create_console_connection_details.py index b8c00bfff9..404327dafd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_console_history_details.py b/src/oci/database/models/create_console_history_details.py index 019364b324..8307b187bd 100644 --- a/src/oci/database/models/create_console_history_details.py +++ b/src/oci/database/models/create_console_history_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c201b079c7..b899309991 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_cross_region_disaster_recovery_details.py b/src/oci/database/models/create_cross_region_disaster_recovery_details.py index 426dd47243..8d1e648ed7 100644 --- a/src/oci/database/models/create_cross_region_disaster_recovery_details.py +++ b/src/oci/database/models/create_cross_region_disaster_recovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_cross_tenancy_disaster_recovery_details.py b/src/oci/database/models/create_cross_tenancy_disaster_recovery_details.py index de31b1cd5b..cbec2e01b0 100644 --- a/src/oci/database/models/create_cross_tenancy_disaster_recovery_details.py +++ b/src/oci/database/models/create_cross_tenancy_disaster_recovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d94643e0d2..fa6d6e2cb0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 63763ae2a0..eaebc8f4de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 31680d6bbd..2b9c0752ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ad0be0daff..6573eb2a80 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_database_base.py b/src/oci/database/models/create_database_base.py index 9a734f69bc..de1d5b4aef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_database_details.py b/src/oci/database/models/create_database_details.py index 9aa630eb86..0cdcf8c26e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3031ab0338..32f2fac11d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_database_from_backup.py b/src/oci/database/models/create_database_from_backup.py index e9c780294b..beb4f65344 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c6386f44dd..544d1d05e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 4a2afb8607..6f6c5b8a6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d69d655a73..dc3c6aec41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_db_home_base.py b/src/oci/database/models/create_db_home_base.py index 5303c783b2..e9794f5b4b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_db_home_details.py b/src/oci/database/models/create_db_home_details.py index 8e7e5385f8..977f4cfd8f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 039da01bbc..ca4bc7b2e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3db8ae3280..46b0066a81 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9568cff8a5..fb103d0436 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 fbc2482662..346c9aca16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9cbadf1663..e796ce0b42 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 6b26566390..0726518c91 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b8b3281f73..ff6aedcaa0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 500648c097..1860f02247 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_exadata_infrastructure_details.py b/src/oci/database/models/create_exadata_infrastructure_details.py index 9db1847385..640d0ef5c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_exadb_vm_cluster_details.py b/src/oci/database/models/create_exadb_vm_cluster_details.py index de48dad15f..da5f9aa3f6 100644 --- a/src/oci/database/models/create_exadb_vm_cluster_details.py +++ b/src/oci/database/models/create_exadb_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_exascale_db_storage_vault_details.py b/src/oci/database/models/create_exascale_db_storage_vault_details.py index 77e2790795..65ab2a35f2 100644 --- a/src/oci/database/models/create_exascale_db_storage_vault_details.py +++ b/src/oci/database/models/create_exascale_db_storage_vault_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_execution_action_details.py b/src/oci/database/models/create_execution_action_details.py index 0e69596eff..0c848c47e3 100644 --- a/src/oci/database/models/create_execution_action_details.py +++ b/src/oci/database/models/create_execution_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_execution_window_details.py b/src/oci/database/models/create_execution_window_details.py index 0a67f27ea7..dc33f8adb1 100644 --- a/src/oci/database/models/create_execution_window_details.py +++ b/src/oci/database/models/create_execution_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8b2b124f40..b17d93a9bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 bb662be6f4..cc60d6e515 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7438ed8a95..9ec3c20818 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 542a56a091..17df904760 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 aad55d1ecc..2e329e4a85 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7fd2c8cd8e..f431cc68e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d591e9f60d..a9d46913fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_key_store_details.py b/src/oci/database/models/create_key_store_details.py index 8decb58ce7..8aae29af14 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_maintenance_run_details.py b/src/oci/database/models/create_maintenance_run_details.py index c09ef81135..123d650b5e 100644 --- a/src/oci/database/models/create_maintenance_run_details.py +++ b/src/oci/database/models/create_maintenance_run_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_new_database_details.py b/src/oci/database/models/create_new_database_details.py index cfb9681da0..dfb6d51912 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 14a00bc8d8..bc9b7eda1b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_oneoff_patch_details.py b/src/oci/database/models/create_oneoff_patch_details.py index beb2c6ac5a..327c1decf7 100644 --- a/src/oci/database/models/create_oneoff_patch_details.py +++ b/src/oci/database/models/create_oneoff_patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_pluggable_database_creation_type_details.py b/src/oci/database/models/create_pluggable_database_creation_type_details.py index 9aa2607221..c8b739761d 100644 --- a/src/oci/database/models/create_pluggable_database_creation_type_details.py +++ b/src/oci/database/models/create_pluggable_database_creation_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_pluggable_database_details.py b/src/oci/database/models/create_pluggable_database_details.py index dd4c56b729..d020f8586f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_pluggable_database_from_local_clone_details.py b/src/oci/database/models/create_pluggable_database_from_local_clone_details.py index e0868f4b06..3bd07e1cf0 100644 --- a/src/oci/database/models/create_pluggable_database_from_local_clone_details.py +++ b/src/oci/database/models/create_pluggable_database_from_local_clone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_pluggable_database_from_relocate_details.py b/src/oci/database/models/create_pluggable_database_from_relocate_details.py index 737a2a4af8..e2d30f98e1 100644 --- a/src/oci/database/models/create_pluggable_database_from_relocate_details.py +++ b/src/oci/database/models/create_pluggable_database_from_relocate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_pluggable_database_from_remote_clone_details.py b/src/oci/database/models/create_pluggable_database_from_remote_clone_details.py index 7eec2e143a..77180a7122 100644 --- a/src/oci/database/models/create_pluggable_database_from_remote_clone_details.py +++ b/src/oci/database/models/create_pluggable_database_from_remote_clone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_pluggable_database_refreshable_clone_details.py b/src/oci/database/models/create_pluggable_database_refreshable_clone_details.py index ba99bcc60d..a05d8d5172 100644 --- a/src/oci/database/models/create_pluggable_database_refreshable_clone_details.py +++ b/src/oci/database/models/create_pluggable_database_refreshable_clone_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a6abf2f133..441447029d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 051729db2e..1b3383b13d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_scheduled_action_details.py b/src/oci/database/models/create_scheduled_action_details.py index 11360de4dc..72455305c2 100644 --- a/src/oci/database/models/create_scheduled_action_details.py +++ b/src/oci/database/models/create_scheduled_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_scheduling_plan_details.py b/src/oci/database/models/create_scheduling_plan_details.py index f5885d7958..ad9174fb17 100644 --- a/src/oci/database/models/create_scheduling_plan_details.py +++ b/src/oci/database/models/create_scheduling_plan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_scheduling_policy_details.py b/src/oci/database/models/create_scheduling_policy_details.py index ed4e694fd9..38222a59c3 100644 --- a/src/oci/database/models/create_scheduling_policy_details.py +++ b/src/oci/database/models/create_scheduling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_scheduling_window_details.py b/src/oci/database/models/create_scheduling_window_details.py index e298ae200d..e11c52213d 100644 --- a/src/oci/database/models/create_scheduling_window_details.py +++ b/src/oci/database/models/create_scheduling_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/create_vm_cluster_details.py b/src/oci/database/models/create_vm_cluster_details.py index 53bfe0e5a0..b8ec1565f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/customer_contact.py b/src/oci/database/models/customer_contact.py index bcea01c42d..15a56fb4f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/data_collection_options.py b/src/oci/database/models/data_collection_options.py index d20a4d7756..ad79a31e32 100644 --- a/src/oci/database/models/data_collection_options.py +++ b/src/oci/database/models/data_collection_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/data_guard_association.py b/src/oci/database/models/data_guard_association.py index 1003e70185..8087b4884f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/data_guard_association_summary.py b/src/oci/database/models/data_guard_association_summary.py index d38bac3577..a7125f21a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database.py b/src/oci/database/models/database.py index 2cdadfd585..d3a7286e3e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_connection_credentials.py b/src/oci/database/models/database_connection_credentials.py index a65dbd1c39..244c249338 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8e8fa545c8..15e2374f8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_connection_credentials_by_name.py b/src/oci/database/models/database_connection_credentials_by_name.py index 3d36f59072..49a02e5e62 100644 --- a/src/oci/database/models/database_connection_credentials_by_name.py +++ b/src/oci/database/models/database_connection_credentials_by_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_connection_string.py b/src/oci/database/models/database_connection_string.py index b891f8b6e8..6a8b51820f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_connection_string_profile.py b/src/oci/database/models/database_connection_string_profile.py index 60e81db44d..47bdb77560 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_connection_strings.py b/src/oci/database/models/database_connection_strings.py index 732ba164b3..a33032a005 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_credential_details.py b/src/oci/database/models/database_credential_details.py index fca3aab560..2e8c71a749 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_management_config.py b/src/oci/database/models/database_management_config.py index d80990a76f..fc402e7714 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_software_image.py b/src/oci/database/models/database_software_image.py index 7a832251e9..b4ffecf8da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_software_image_summary.py b/src/oci/database/models/database_software_image_summary.py index 7bdb546ab1..92e7318a91 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_ssl_connection_credentials.py b/src/oci/database/models/database_ssl_connection_credentials.py index d127a4c606..fef426412a 100644 --- a/src/oci/database/models/database_ssl_connection_credentials.py +++ b/src/oci/database/models/database_ssl_connection_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_summary.py b/src/oci/database/models/database_summary.py index 4ac3ba67ed..ca2b24479f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_tool.py b/src/oci/database/models/database_tool.py index bfbd26f79e..f52aea3853 100644 --- a/src/oci/database/models/database_tool.py +++ b/src/oci/database/models/database_tool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_upgrade_history_entry.py b/src/oci/database/models/database_upgrade_history_entry.py index 256e016643..c050cbe4c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 05d6d4508d..e50f640fb9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/database_upgrade_source_base.py b/src/oci/database/models/database_upgrade_source_base.py index 4ae45e9b0b..bbc2cf0287 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ef54642864..60a8d3b6f1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8caf21b36c..d57a8e7cd3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1815d279ea..6414969c31 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/day_of_week.py b/src/oci/database/models/day_of_week.py index e8a9c33798..abf879fb70 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_backup_config.py b/src/oci/database/models/db_backup_config.py index 87fa5b795f..eb2818dcc1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_home.py b/src/oci/database/models/db_home.py index 73f88be95c..4dedcf5242 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 71756e9e51..8dea0eaf1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_home_summary.py b/src/oci/database/models/db_home_summary.py index d21cac4dff..2faab3b27e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_iorm_config.py b/src/oci/database/models/db_iorm_config.py index 6d0dc317a6..563da90810 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a73d6ed455..8af29ef6ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_node.py b/src/oci/database/models/db_node.py index 5e15a9955c..3ab289a0d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_node_details.py b/src/oci/database/models/db_node_details.py index e9b4b108e0..67dabd5151 100644 --- a/src/oci/database/models/db_node_details.py +++ b/src/oci/database/models/db_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_node_summary.py b/src/oci/database/models/db_node_summary.py index efeab66df9..fb20da0d79 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_server.py b/src/oci/database/models/db_server.py index 11e7001dde..ba2533cf31 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_server_details.py b/src/oci/database/models/db_server_details.py index 1a817813e8..5dd59a2231 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_server_history_summary.py b/src/oci/database/models/db_server_history_summary.py index 50f562a3a4..1683cb918c 100644 --- a/src/oci/database/models/db_server_history_summary.py +++ b/src/oci/database/models/db_server_history_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_server_patching_details.py b/src/oci/database/models/db_server_patching_details.py index c26b6ce5b7..2e3e781087 100644 --- a/src/oci/database/models/db_server_patching_details.py +++ b/src/oci/database/models/db_server_patching_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_server_summary.py b/src/oci/database/models/db_server_summary.py index 78755917dc..1d52228bc8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_system.py b/src/oci/database/models/db_system.py index 63b7b43813..ef70fbad41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_system_compute_performance_summary.py b/src/oci/database/models/db_system_compute_performance_summary.py index 95fe9155c5..4c1d4c8b00 100644 --- a/src/oci/database/models/db_system_compute_performance_summary.py +++ b/src/oci/database/models/db_system_compute_performance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_system_options.py b/src/oci/database/models/db_system_options.py index 2780308a18..7907555a74 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_system_shape_summary.py b/src/oci/database/models/db_system_shape_summary.py index 8faece3db1..8e3b2b99d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_system_storage_performance_summary.py b/src/oci/database/models/db_system_storage_performance_summary.py index e53df3f78c..4cc0b108c6 100644 --- a/src/oci/database/models/db_system_storage_performance_summary.py +++ b/src/oci/database/models/db_system_storage_performance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_system_summary.py b/src/oci/database/models/db_system_summary.py index b6edb5826e..fce54a35b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_system_upgrade_history_entry.py b/src/oci/database/models/db_system_upgrade_history_entry.py index 1931de61aa..afd41ff9b3 100644 --- a/src/oci/database/models/db_system_upgrade_history_entry.py +++ b/src/oci/database/models/db_system_upgrade_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_system_upgrade_history_entry_summary.py b/src/oci/database/models/db_system_upgrade_history_entry_summary.py index 41aeb3f7d9..bc497ba667 100644 --- a/src/oci/database/models/db_system_upgrade_history_entry_summary.py +++ b/src/oci/database/models/db_system_upgrade_history_entry_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/db_version_summary.py b/src/oci/database/models/db_version_summary.py index c968041d15..69f0010763 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/defined_file_system_configuration.py b/src/oci/database/models/defined_file_system_configuration.py index cdd58321f3..6c29362922 100644 --- a/src/oci/database/models/defined_file_system_configuration.py +++ b/src/oci/database/models/defined_file_system_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2137515d09..7f4d98d32c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/disaster_recovery_configuration.py b/src/oci/database/models/disaster_recovery_configuration.py index ac16760288..27c4d6f8db 100644 --- a/src/oci/database/models/disaster_recovery_configuration.py +++ b/src/oci/database/models/disaster_recovery_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/disk_performance_details.py b/src/oci/database/models/disk_performance_details.py index 9d4165f482..35fd07bb92 100644 --- a/src/oci/database/models/disk_performance_details.py +++ b/src/oci/database/models/disk_performance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/download_oneoff_patch.py b/src/oci/database/models/download_oneoff_patch.py index 5cee2f4830..6fad8831be 100644 --- a/src/oci/database/models/download_oneoff_patch.py +++ b/src/oci/database/models/download_oneoff_patch.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/dr_scan_details.py b/src/oci/database/models/dr_scan_details.py index 8995e5b4f0..8924a0c5b6 100644 --- a/src/oci/database/models/dr_scan_details.py +++ b/src/oci/database/models/dr_scan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/enable_database_management_details.py b/src/oci/database/models/enable_database_management_details.py index 556964f9b3..a8f229e39e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 93100adef6..8b1dddaf44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/enable_external_container_database_stack_monitoring_details.py b/src/oci/database/models/enable_external_container_database_stack_monitoring_details.py index 1ad586d242..5ad00bfa73 100644 --- a/src/oci/database/models/enable_external_container_database_stack_monitoring_details.py +++ b/src/oci/database/models/enable_external_container_database_stack_monitoring_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7ce8667b10..362cdbf920 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ee781d80bd..9528cdaa4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/enable_external_database_stack_monitoring_details_base.py b/src/oci/database/models/enable_external_database_stack_monitoring_details_base.py index 5c864bf1af..1fa13d2d2e 100644 --- a/src/oci/database/models/enable_external_database_stack_monitoring_details_base.py +++ b/src/oci/database/models/enable_external_database_stack_monitoring_details_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 152749a996..0becc7cf4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0b6688ee48..b31b4766e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/enable_external_non_container_database_stack_monitoring_details.py b/src/oci/database/models/enable_external_non_container_database_stack_monitoring_details.py index 2202a57759..4eb73bd2c3 100644 --- a/src/oci/database/models/enable_external_non_container_database_stack_monitoring_details.py +++ b/src/oci/database/models/enable_external_non_container_database_stack_monitoring_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 00b2181f4e..f8651cbb42 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0c47738023..26999c9d46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/enable_external_pluggable_database_stack_monitoring_details.py b/src/oci/database/models/enable_external_pluggable_database_stack_monitoring_details.py index 26fd776340..1070056bee 100644 --- a/src/oci/database/models/enable_external_pluggable_database_stack_monitoring_details.py +++ b/src/oci/database/models/enable_external_pluggable_database_stack_monitoring_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/enable_pluggable_database_management_details.py b/src/oci/database/models/enable_pluggable_database_management_details.py index 79b02c6d02..e3f93cad2e 100644 --- a/src/oci/database/models/enable_pluggable_database_management_details.py +++ b/src/oci/database/models/enable_pluggable_database_management_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/estimated_patching_time.py b/src/oci/database/models/estimated_patching_time.py index 66dc139183..d15f6bb7a3 100644 --- a/src/oci/database/models/estimated_patching_time.py +++ b/src/oci/database/models/estimated_patching_time.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadata_db_system_migration.py b/src/oci/database/models/exadata_db_system_migration.py index b145a9e070..880288bb25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c189ec66e5..7d27ba79ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadata_infrastructure.py b/src/oci/database/models/exadata_infrastructure.py index b90d44a746..c83678d178 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadata_infrastructure_contact.py b/src/oci/database/models/exadata_infrastructure_contact.py index a4e73eaae5..b3dcce80e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadata_infrastructure_summary.py b/src/oci/database/models/exadata_infrastructure_summary.py index 6f319432dc..991f3e2853 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadata_infrastructure_un_allocated_resources.py b/src/oci/database/models/exadata_infrastructure_un_allocated_resources.py index 451bc91f87..127ec58655 100644 --- a/src/oci/database/models/exadata_infrastructure_un_allocated_resources.py +++ b/src/oci/database/models/exadata_infrastructure_un_allocated_resources.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadata_iorm_config.py b/src/oci/database/models/exadata_iorm_config.py index c4b8f04412..b5319eef09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0d10e67fb1..e9dfe760e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadb_vm_cluster.py b/src/oci/database/models/exadb_vm_cluster.py index cf08ca9aab..0e1f08e658 100644 --- a/src/oci/database/models/exadb_vm_cluster.py +++ b/src/oci/database/models/exadb_vm_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadb_vm_cluster_storage_details.py b/src/oci/database/models/exadb_vm_cluster_storage_details.py index 71429e985e..ea1d4b88e4 100644 --- a/src/oci/database/models/exadb_vm_cluster_storage_details.py +++ b/src/oci/database/models/exadb_vm_cluster_storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadb_vm_cluster_summary.py b/src/oci/database/models/exadb_vm_cluster_summary.py index d3f463f819..597d9572ef 100644 --- a/src/oci/database/models/exadb_vm_cluster_summary.py +++ b/src/oci/database/models/exadb_vm_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadb_vm_cluster_update.py b/src/oci/database/models/exadb_vm_cluster_update.py index ad3256ffa9..c90613ae6c 100644 --- a/src/oci/database/models/exadb_vm_cluster_update.py +++ b/src/oci/database/models/exadb_vm_cluster_update.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadb_vm_cluster_update_history_entry.py b/src/oci/database/models/exadb_vm_cluster_update_history_entry.py index 9da907adb0..36469d363c 100644 --- a/src/oci/database/models/exadb_vm_cluster_update_history_entry.py +++ b/src/oci/database/models/exadb_vm_cluster_update_history_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadb_vm_cluster_update_history_entry_summary.py b/src/oci/database/models/exadb_vm_cluster_update_history_entry_summary.py index 7df98e454b..bb03f73d18 100644 --- a/src/oci/database/models/exadb_vm_cluster_update_history_entry_summary.py +++ b/src/oci/database/models/exadb_vm_cluster_update_history_entry_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exadb_vm_cluster_update_summary.py b/src/oci/database/models/exadb_vm_cluster_update_summary.py index 5dd0245c88..afdaecdbc1 100644 --- a/src/oci/database/models/exadb_vm_cluster_update_summary.py +++ b/src/oci/database/models/exadb_vm_cluster_update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exascale_config_details.py b/src/oci/database/models/exascale_config_details.py index bd1ceee75b..2041553042 100644 --- a/src/oci/database/models/exascale_config_details.py +++ b/src/oci/database/models/exascale_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exascale_db_storage_details.py b/src/oci/database/models/exascale_db_storage_details.py index f9f8a1c699..e178f33275 100644 --- a/src/oci/database/models/exascale_db_storage_details.py +++ b/src/oci/database/models/exascale_db_storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exascale_db_storage_input_details.py b/src/oci/database/models/exascale_db_storage_input_details.py index d6fb8abcfc..f265f3037c 100644 --- a/src/oci/database/models/exascale_db_storage_input_details.py +++ b/src/oci/database/models/exascale_db_storage_input_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exascale_db_storage_vault.py b/src/oci/database/models/exascale_db_storage_vault.py index 5bca634bfb..6731a96a30 100644 --- a/src/oci/database/models/exascale_db_storage_vault.py +++ b/src/oci/database/models/exascale_db_storage_vault.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/exascale_db_storage_vault_summary.py b/src/oci/database/models/exascale_db_storage_vault_summary.py index 7da0c17b53..ae1bbc136f 100644 --- a/src/oci/database/models/exascale_db_storage_vault_summary.py +++ b/src/oci/database/models/exascale_db_storage_vault_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/execution_action.py b/src/oci/database/models/execution_action.py index fa8fc70844..72b483fb1a 100644 --- a/src/oci/database/models/execution_action.py +++ b/src/oci/database/models/execution_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/execution_action_member.py b/src/oci/database/models/execution_action_member.py index f100d4c602..579167f625 100644 --- a/src/oci/database/models/execution_action_member.py +++ b/src/oci/database/models/execution_action_member.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/execution_action_summary.py b/src/oci/database/models/execution_action_summary.py index 3b2c156d54..845bd9f48c 100644 --- a/src/oci/database/models/execution_action_summary.py +++ b/src/oci/database/models/execution_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/execution_window.py b/src/oci/database/models/execution_window.py index fdac22f5b7..9579875c4a 100644 --- a/src/oci/database/models/execution_window.py +++ b/src/oci/database/models/execution_window.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/execution_window_summary.py b/src/oci/database/models/execution_window_summary.py index cf25ffae47..bff8529911 100644 --- a/src/oci/database/models/execution_window_summary.py +++ b/src/oci/database/models/execution_window_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_backup_job.py b/src/oci/database/models/external_backup_job.py index c69aeb798e..032d648d42 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_container_database.py b/src/oci/database/models/external_container_database.py index 6e09e4f28d..4fd7296b53 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_container_database_summary.py b/src/oci/database/models/external_container_database_summary.py index f655287aab..cb828726ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_database_base.py b/src/oci/database/models/external_database_base.py index c7445790c4..11b9bb1975 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_database_connector.py b/src/oci/database/models/external_database_connector.py index 00f626e7b5..660089ab8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_database_connector_summary.py b/src/oci/database/models/external_database_connector_summary.py index 6258a5b864..b82eb315bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_macs_connector.py b/src/oci/database/models/external_macs_connector.py index 32c69d6a94..c3743f329f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_macs_connector_summary.py b/src/oci/database/models/external_macs_connector_summary.py index 6c0c9fe8cc..f1d9df26df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_non_container_database.py b/src/oci/database/models/external_non_container_database.py index 6213ecc00a..b6e164a092 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ebe81d5eae..efb6df1762 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_pluggable_database.py b/src/oci/database/models/external_pluggable_database.py index 01c10aa894..662fbeccd2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/external_pluggable_database_summary.py b/src/oci/database/models/external_pluggable_database_summary.py index 6d020b9bc7..5a8d6641aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 174eb1321b..b39d245f55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/file_system_configuration_detail.py b/src/oci/database/models/file_system_configuration_detail.py index 41fc2e9bb3..1a375cbfb2 100644 --- a/src/oci/database/models/file_system_configuration_detail.py +++ b/src/oci/database/models/file_system_configuration_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/flex_component_collection.py b/src/oci/database/models/flex_component_collection.py index 851ec61755..9c218fd0eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/flex_component_summary.py b/src/oci/database/models/flex_component_summary.py index 20cb2fc85b..ad60ddb47d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ed539a145e..9361df1ce3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/generate_recommended_network_details.py b/src/oci/database/models/generate_recommended_network_details.py index cb007c08e5..03019ddce6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/gi_minor_version_summary.py b/src/oci/database/models/gi_minor_version_summary.py index df5e77862c..931fc832d0 100644 --- a/src/oci/database/models/gi_minor_version_summary.py +++ b/src/oci/database/models/gi_minor_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/gi_version_summary.py b/src/oci/database/models/gi_version_summary.py index 3705f7585b..4e61442445 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/granular_maintenance_history_details.py b/src/oci/database/models/granular_maintenance_history_details.py index 0b09120af6..ded5e49b6b 100644 --- a/src/oci/database/models/granular_maintenance_history_details.py +++ b/src/oci/database/models/granular_maintenance_history_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0b0bd22af0..6f108f7f8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/infrastructure_target_version.py b/src/oci/database/models/infrastructure_target_version.py index 2d37c6bf27..e653327d51 100644 --- a/src/oci/database/models/infrastructure_target_version.py +++ b/src/oci/database/models/infrastructure_target_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/infrastructure_target_version_summary.py b/src/oci/database/models/infrastructure_target_version_summary.py index e5267564d8..ed0b58db62 100644 --- a/src/oci/database/models/infrastructure_target_version_summary.py +++ b/src/oci/database/models/infrastructure_target_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/key_store.py b/src/oci/database/models/key_store.py index 3a18a93f5d..5d11993e95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 39646a6f70..4fb756bf3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/key_store_summary.py b/src/oci/database/models/key_store_summary.py index b9552f8eb0..5aee09ace5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/key_store_type_details.py b/src/oci/database/models/key_store_type_details.py index 7cae5b69ce..c57374786c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f17c71254f..1ccdfd25a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d1819eff2c..2261cfecbc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/launch_db_system_base.py b/src/oci/database/models/launch_db_system_base.py index 21da896358..c7cd1258b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/launch_db_system_details.py b/src/oci/database/models/launch_db_system_details.py index acab9b48bc..c74e80bd83 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c35e336824..2d45a6d44a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 cc6c782582..496dab5b09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e6e8beab59..f7663dc2bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f7ef7babbf..4df42145e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/long_term_back_up_schedule_details.py b/src/oci/database/models/long_term_back_up_schedule_details.py index 8495907f30..dd7cb9d8ff 100644 --- a/src/oci/database/models/long_term_back_up_schedule_details.py +++ b/src/oci/database/models/long_term_back_up_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/maintenance_run.py b/src/oci/database/models/maintenance_run.py index 6d902c5923..11e45aad8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/maintenance_run_history.py b/src/oci/database/models/maintenance_run_history.py index 169095651c..899723b64d 100644 --- a/src/oci/database/models/maintenance_run_history.py +++ b/src/oci/database/models/maintenance_run_history.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/maintenance_run_history_summary.py b/src/oci/database/models/maintenance_run_history_summary.py index 2568c2714a..f57128eb93 100644 --- a/src/oci/database/models/maintenance_run_history_summary.py +++ b/src/oci/database/models/maintenance_run_history_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/maintenance_run_summary.py b/src/oci/database/models/maintenance_run_summary.py index 8526cd2094..e456e957a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/maintenance_window.py b/src/oci/database/models/maintenance_window.py index baf1b90cbd..470588c5f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/migrate_vault_key_details.py b/src/oci/database/models/migrate_vault_key_details.py index dab53ba7b1..e68e8d2901 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/modify_database_management_details.py b/src/oci/database/models/modify_database_management_details.py index 2818efb55c..17cf8b6045 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/modify_pluggable_database_management_details.py b/src/oci/database/models/modify_pluggable_database_management_details.py index 2d1bb3cc0d..afe76e9704 100644 --- a/src/oci/database/models/modify_pluggable_database_management_details.py +++ b/src/oci/database/models/modify_pluggable_database_management_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/month.py b/src/oci/database/models/month.py index 53c54926ad..9b8ca0b275 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/mount_type_details.py b/src/oci/database/models/mount_type_details.py index 150b915093..b5c91b33d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/move_execution_action_member_details.py b/src/oci/database/models/move_execution_action_member_details.py index 9ac8d02b89..4b5573179d 100644 --- a/src/oci/database/models/move_execution_action_member_details.py +++ b/src/oci/database/models/move_execution_action_member_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/network_bonding_mode_details.py b/src/oci/database/models/network_bonding_mode_details.py index a41f78e30a..79b8419ec9 100644 --- a/src/oci/database/models/network_bonding_mode_details.py +++ b/src/oci/database/models/network_bonding_mode_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/node_details.py b/src/oci/database/models/node_details.py index 3b880ad366..5ad8b1faa6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/oci_key_details.py b/src/oci/database/models/oci_key_details.py index e0ca41365e..c2dbf93d13 100644 --- a/src/oci/database/models/oci_key_details.py +++ b/src/oci/database/models/oci_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/oci_provider_set_key_version_details.py b/src/oci/database/models/oci_provider_set_key_version_details.py index 7a11862602..ab2eea44d1 100644 --- a/src/oci/database/models/oci_provider_set_key_version_details.py +++ b/src/oci/database/models/oci_provider_set_key_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/ocp_us.py b/src/oci/database/models/ocp_us.py index c38d582bfa..237d5c8de1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/okv_key_details.py b/src/oci/database/models/okv_key_details.py index d9142c59e4..d26ad4833c 100644 --- a/src/oci/database/models/okv_key_details.py +++ b/src/oci/database/models/okv_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/oneoff_patch.py b/src/oci/database/models/oneoff_patch.py index cdc93a77b0..5c4772e375 100644 --- a/src/oci/database/models/oneoff_patch.py +++ b/src/oci/database/models/oneoff_patch.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/oneoff_patch_summary.py b/src/oci/database/models/oneoff_patch_summary.py index fe0f0db74a..ed4f1ed0d9 100644 --- a/src/oci/database/models/oneoff_patch_summary.py +++ b/src/oci/database/models/oneoff_patch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/operations_insights_config.py b/src/oci/database/models/operations_insights_config.py index e5cb9d1223..1a7a49da2e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/oracle_managed_key_details.py b/src/oci/database/models/oracle_managed_key_details.py index 9640dfb46d..eced0a36d0 100644 --- a/src/oci/database/models/oracle_managed_key_details.py +++ b/src/oci/database/models/oracle_managed_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/patch.py b/src/oci/database/models/patch.py index 9bd38f035e..f3bf3be3b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/patch_details.py b/src/oci/database/models/patch_details.py index 4e0cf5a14d..815e792543 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/patch_history_entry.py b/src/oci/database/models/patch_history_entry.py index 2a49c09ce8..2e6d34608c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/patch_history_entry_summary.py b/src/oci/database/models/patch_history_entry_summary.py index 373aa00910..9458ae499b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/patch_summary.py b/src/oci/database/models/patch_summary.py index a1fefce2b8..1b1906c646 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/pdb_conversion_history_entry.py b/src/oci/database/models/pdb_conversion_history_entry.py index adad1a489e..a40184999b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 75155db4c2..a18ca8e793 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 d7c6ae57bd..e15d366975 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f28b609b1c..ab827fc5bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/pluggable_database.py b/src/oci/database/models/pluggable_database.py index efa5c8a8ab..d8704183e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/pluggable_database_connection_strings.py b/src/oci/database/models/pluggable_database_connection_strings.py index df3711234d..60e3401aba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/pluggable_database_management_config.py b/src/oci/database/models/pluggable_database_management_config.py index e6fe58010b..b01046008a 100644 --- a/src/oci/database/models/pluggable_database_management_config.py +++ b/src/oci/database/models/pluggable_database_management_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/pluggable_database_node_level_details.py b/src/oci/database/models/pluggable_database_node_level_details.py index d0bb5f3658..8e753bdc79 100644 --- a/src/oci/database/models/pluggable_database_node_level_details.py +++ b/src/oci/database/models/pluggable_database_node_level_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/pluggable_database_refreshable_clone_config.py b/src/oci/database/models/pluggable_database_refreshable_clone_config.py index d455439309..36a76784df 100644 --- a/src/oci/database/models/pluggable_database_refreshable_clone_config.py +++ b/src/oci/database/models/pluggable_database_refreshable_clone_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/pluggable_database_summary.py b/src/oci/database/models/pluggable_database_summary.py index 8e412d6fdd..ea845251d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/recommended_scheduled_action_summary.py b/src/oci/database/models/recommended_scheduled_action_summary.py index 2e54ed4873..701147fc33 100644 --- a/src/oci/database/models/recommended_scheduled_action_summary.py +++ b/src/oci/database/models/recommended_scheduled_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/recommended_scheduled_actions_collection.py b/src/oci/database/models/recommended_scheduled_actions_collection.py index 5f91ec1f64..92bb1215bf 100644 --- a/src/oci/database/models/recommended_scheduled_actions_collection.py +++ b/src/oci/database/models/recommended_scheduled_actions_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/refreshable_clone_collection.py b/src/oci/database/models/refreshable_clone_collection.py index efd61b1efb..4f203d4157 100644 --- a/src/oci/database/models/refreshable_clone_collection.py +++ b/src/oci/database/models/refreshable_clone_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/refreshable_clone_summary.py b/src/oci/database/models/refreshable_clone_summary.py index 955c62b7ea..049950d933 100644 --- a/src/oci/database/models/refreshable_clone_summary.py +++ b/src/oci/database/models/refreshable_clone_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 491dcc0826..412f6dd9a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9560a8dfee..67129f3f1a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 fcf6f60b6c..be853dba51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/remove_virtual_machine_from_cloud_vm_cluster_details.py b/src/oci/database/models/remove_virtual_machine_from_cloud_vm_cluster_details.py index a0945411e2..60cb091848 100644 --- a/src/oci/database/models/remove_virtual_machine_from_cloud_vm_cluster_details.py +++ b/src/oci/database/models/remove_virtual_machine_from_cloud_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/remove_virtual_machine_from_exadb_vm_cluster_details.py b/src/oci/database/models/remove_virtual_machine_from_exadb_vm_cluster_details.py index d6e3d2af75..f801e728f6 100644 --- a/src/oci/database/models/remove_virtual_machine_from_exadb_vm_cluster_details.py +++ b/src/oci/database/models/remove_virtual_machine_from_exadb_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 914daeeba0..60f016c2ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/reorder_execution_action_details.py b/src/oci/database/models/reorder_execution_action_details.py index 62c1f8dbd0..fb3ed7b192 100644 --- a/src/oci/database/models/reorder_execution_action_details.py +++ b/src/oci/database/models/reorder_execution_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/reorder_scheduled_actions_details.py b/src/oci/database/models/reorder_scheduled_actions_details.py index 888562edfb..6ced78338e 100644 --- a/src/oci/database/models/reorder_scheduled_actions_details.py +++ b/src/oci/database/models/reorder_scheduled_actions_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/resize_vm_cluster_network_details.py b/src/oci/database/models/resize_vm_cluster_network_details.py index 2c2e333820..888dcb6432 100644 --- a/src/oci/database/models/resize_vm_cluster_network_details.py +++ b/src/oci/database/models/resize_vm_cluster_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/resource_pool_shape_collection.py b/src/oci/database/models/resource_pool_shape_collection.py index fb83b0028a..dafe2c3890 100644 --- a/src/oci/database/models/resource_pool_shape_collection.py +++ b/src/oci/database/models/resource_pool_shape_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/resource_pool_shape_summary.py b/src/oci/database/models/resource_pool_shape_summary.py index 3a0c244d05..969997ddd1 100644 --- a/src/oci/database/models/resource_pool_shape_summary.py +++ b/src/oci/database/models/resource_pool_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/resource_pool_summary.py b/src/oci/database/models/resource_pool_summary.py index 4e61a60183..541d06494f 100644 --- a/src/oci/database/models/resource_pool_summary.py +++ b/src/oci/database/models/resource_pool_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/restore_autonomous_database_details.py b/src/oci/database/models/restore_autonomous_database_details.py index e2ef873077..9144f2ebae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/restore_database_details.py b/src/oci/database/models/restore_database_details.py index 2b55036311..467d87d81c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/rotate_autonomous_container_database_encryption_key_details.py b/src/oci/database/models/rotate_autonomous_container_database_encryption_key_details.py index e2a5b39df9..30a6cce4bf 100644 --- a/src/oci/database/models/rotate_autonomous_container_database_encryption_key_details.py +++ b/src/oci/database/models/rotate_autonomous_container_database_encryption_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/rotate_autonomous_database_encryption_key_details.py b/src/oci/database/models/rotate_autonomous_database_encryption_key_details.py index 6e48d49689..6cec19cf6c 100644 --- a/src/oci/database/models/rotate_autonomous_database_encryption_key_details.py +++ b/src/oci/database/models/rotate_autonomous_database_encryption_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/rotate_autonomous_vm_cluster_ords_certs_details.py b/src/oci/database/models/rotate_autonomous_vm_cluster_ords_certs_details.py index 5fd77ea183..feb29b382e 100644 --- a/src/oci/database/models/rotate_autonomous_vm_cluster_ords_certs_details.py +++ b/src/oci/database/models/rotate_autonomous_vm_cluster_ords_certs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/rotate_autonomous_vm_cluster_ssl_certs_details.py b/src/oci/database/models/rotate_autonomous_vm_cluster_ssl_certs_details.py index 424d8f0d4c..4df6275251 100644 --- a/src/oci/database/models/rotate_autonomous_vm_cluster_ssl_certs_details.py +++ b/src/oci/database/models/rotate_autonomous_vm_cluster_ssl_certs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/rotate_cloud_autonomous_vm_cluster_ords_certs_details.py b/src/oci/database/models/rotate_cloud_autonomous_vm_cluster_ords_certs_details.py index b5b863c53e..c8b109d7d5 100644 --- a/src/oci/database/models/rotate_cloud_autonomous_vm_cluster_ords_certs_details.py +++ b/src/oci/database/models/rotate_cloud_autonomous_vm_cluster_ords_certs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/rotate_cloud_autonomous_vm_cluster_ssl_certs_details.py b/src/oci/database/models/rotate_cloud_autonomous_vm_cluster_ssl_certs_details.py index 6f17d630b7..14385877aa 100644 --- a/src/oci/database/models/rotate_cloud_autonomous_vm_cluster_ssl_certs_details.py +++ b/src/oci/database/models/rotate_cloud_autonomous_vm_cluster_ssl_certs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/saas_admin_user_configuration.py b/src/oci/database/models/saas_admin_user_configuration.py index b7095784dd..62b5f33d7c 100644 --- a/src/oci/database/models/saas_admin_user_configuration.py +++ b/src/oci/database/models/saas_admin_user_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/saas_admin_user_status.py b/src/oci/database/models/saas_admin_user_status.py index da879f248b..0cb4ae0ac8 100644 --- a/src/oci/database/models/saas_admin_user_status.py +++ b/src/oci/database/models/saas_admin_user_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scan_details.py b/src/oci/database/models/scan_details.py index 84a3dd389a..8e3ec0b44e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduled_action.py b/src/oci/database/models/scheduled_action.py index f2944b9f6b..4071aa1b52 100644 --- a/src/oci/database/models/scheduled_action.py +++ b/src/oci/database/models/scheduled_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduled_action_collection.py b/src/oci/database/models/scheduled_action_collection.py index e999f1134e..ceb756eb8c 100644 --- a/src/oci/database/models/scheduled_action_collection.py +++ b/src/oci/database/models/scheduled_action_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduled_action_summary.py b/src/oci/database/models/scheduled_action_summary.py index cbc456eb91..5907a8f0de 100644 --- a/src/oci/database/models/scheduled_action_summary.py +++ b/src/oci/database/models/scheduled_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduled_operation_details.py b/src/oci/database/models/scheduled_operation_details.py index 10711e3907..e62027093f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduling_plan.py b/src/oci/database/models/scheduling_plan.py index 69c539a0c1..aa678abcff 100644 --- a/src/oci/database/models/scheduling_plan.py +++ b/src/oci/database/models/scheduling_plan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduling_plan_collection.py b/src/oci/database/models/scheduling_plan_collection.py index 8a2464d241..1047cc5e67 100644 --- a/src/oci/database/models/scheduling_plan_collection.py +++ b/src/oci/database/models/scheduling_plan_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduling_plan_summary.py b/src/oci/database/models/scheduling_plan_summary.py index b05a1d9b21..6287ba9c06 100644 --- a/src/oci/database/models/scheduling_plan_summary.py +++ b/src/oci/database/models/scheduling_plan_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduling_policy.py b/src/oci/database/models/scheduling_policy.py index a0d252ce9f..fd6a6a32e6 100644 --- a/src/oci/database/models/scheduling_policy.py +++ b/src/oci/database/models/scheduling_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduling_policy_summary.py b/src/oci/database/models/scheduling_policy_summary.py index ad02729b5e..c8d96a8ead 100644 --- a/src/oci/database/models/scheduling_policy_summary.py +++ b/src/oci/database/models/scheduling_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduling_window.py b/src/oci/database/models/scheduling_window.py index d9d2036d4c..b1889d2a39 100644 --- a/src/oci/database/models/scheduling_window.py +++ b/src/oci/database/models/scheduling_window.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/scheduling_window_summary.py b/src/oci/database/models/scheduling_window_summary.py index a09713b881..1c0347b49e 100644 --- a/src/oci/database/models/scheduling_window_summary.py +++ b/src/oci/database/models/scheduling_window_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/self_mount_details.py b/src/oci/database/models/self_mount_details.py index 3e383c6f02..63d4523692 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/set_key_version_details.py b/src/oci/database/models/set_key_version_details.py index 8ebfbd6bde..f80d3cb999 100644 --- a/src/oci/database/models/set_key_version_details.py +++ b/src/oci/database/models/set_key_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/stack_monitoring_config.py b/src/oci/database/models/stack_monitoring_config.py index a10975b7eb..032d7ac456 100644 --- a/src/oci/database/models/stack_monitoring_config.py +++ b/src/oci/database/models/stack_monitoring_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/storage_performance_details.py b/src/oci/database/models/storage_performance_details.py index 6bccf1ace0..b4f90f9316 100644 --- a/src/oci/database/models/storage_performance_details.py +++ b/src/oci/database/models/storage_performance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b2db2a7791..3deaf0093c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/system_version_collection.py b/src/oci/database/models/system_version_collection.py index 94ff622110..e45a580fee 100644 --- a/src/oci/database/models/system_version_collection.py +++ b/src/oci/database/models/system_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/system_version_summary.py b/src/oci/database/models/system_version_summary.py index d27c8f4bce..40a556fd57 100644 --- a/src/oci/database/models/system_version_summary.py +++ b/src/oci/database/models/system_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/undelete_autonomous_database_details.py b/src/oci/database/models/undelete_autonomous_database_details.py index 761ced843a..fc1f4b6f47 100644 --- a/src/oci/database/models/undelete_autonomous_database_details.py +++ b/src/oci/database/models/undelete_autonomous_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update.py b/src/oci/database/models/update.py index 1f12b9daae..9e5eb8dfc7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_autonomous_container_database_data_guard_association_details.py b/src/oci/database/models/update_autonomous_container_database_data_guard_association_details.py index cda8e262ec..8008641ee9 100644 --- a/src/oci/database/models/update_autonomous_container_database_data_guard_association_details.py +++ b/src/oci/database/models/update_autonomous_container_database_data_guard_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f227e93256..d9522a78a7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_autonomous_database_backup_details.py b/src/oci/database/models/update_autonomous_database_backup_details.py index fde3e59718..27906e65e8 100644 --- a/src/oci/database/models/update_autonomous_database_backup_details.py +++ b/src/oci/database/models/update_autonomous_database_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_autonomous_database_details.py b/src/oci/database/models/update_autonomous_database_details.py index 3dde7aab13..9b7afaba5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 @@ -77,6 +77,14 @@ class UpdateAutonomousDatabaseDetails(object): #: This constant has a value of "UNRESTRICTED" PERMISSION_LEVEL_UNRESTRICTED = "UNRESTRICTED" + #: A constant which can be used with the autonomous_maintenance_schedule_type property of a UpdateAutonomousDatabaseDetails. + #: This constant has a value of "EARLY" + AUTONOMOUS_MAINTENANCE_SCHEDULE_TYPE_EARLY = "EARLY" + + #: A constant which can be used with the autonomous_maintenance_schedule_type property of a UpdateAutonomousDatabaseDetails. + #: This constant has a value of "REGULAR" + AUTONOMOUS_MAINTENANCE_SCHEDULE_TYPE_REGULAR = "REGULAR" + def __init__(self, **kwargs): """ Initializes a new UpdateAutonomousDatabaseDetails object with values from keyword arguments. @@ -268,6 +276,11 @@ def __init__(self, **kwargs): The value to assign to the resource_pool_summary property of this UpdateAutonomousDatabaseDetails. :type resource_pool_summary: oci.database.models.ResourcePoolSummary + :param autonomous_maintenance_schedule_type: + The value to assign to the autonomous_maintenance_schedule_type property of this UpdateAutonomousDatabaseDetails. + Allowed values for this property are: "EARLY", "REGULAR" + :type autonomous_maintenance_schedule_type: str + :param is_backup_retention_locked: The value to assign to the is_backup_retention_locked property of this UpdateAutonomousDatabaseDetails. :type is_backup_retention_locked: bool @@ -347,6 +360,7 @@ def __init__(self, **kwargs): 'is_mtls_connection_required': 'bool', 'resource_pool_leader_id': 'str', 'resource_pool_summary': 'ResourcePoolSummary', + 'autonomous_maintenance_schedule_type': 'str', 'is_backup_retention_locked': 'bool', 'scheduled_operations': 'list[ScheduledOperationDetails]', 'is_auto_scaling_for_storage_enabled': 'bool', @@ -403,6 +417,7 @@ def __init__(self, **kwargs): 'is_mtls_connection_required': 'isMtlsConnectionRequired', 'resource_pool_leader_id': 'resourcePoolLeaderId', 'resource_pool_summary': 'resourcePoolSummary', + 'autonomous_maintenance_schedule_type': 'autonomousMaintenanceScheduleType', 'is_backup_retention_locked': 'isBackupRetentionLocked', 'scheduled_operations': 'scheduledOperations', 'is_auto_scaling_for_storage_enabled': 'isAutoScalingForStorageEnabled', @@ -458,6 +473,7 @@ def __init__(self, **kwargs): self._is_mtls_connection_required = None self._resource_pool_leader_id = None self._resource_pool_summary = None + self._autonomous_maintenance_schedule_type = None self._is_backup_retention_locked = None self._scheduled_operations = None self._is_auto_scaling_for_storage_enabled = None @@ -1921,6 +1937,39 @@ def resource_pool_summary(self, resource_pool_summary): """ self._resource_pool_summary = resource_pool_summary + @property + def autonomous_maintenance_schedule_type(self): + """ + Gets the autonomous_maintenance_schedule_type of this UpdateAutonomousDatabaseDetails. + The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule + follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle + + Allowed values for this property are: "EARLY", "REGULAR" + + + :return: The autonomous_maintenance_schedule_type of this UpdateAutonomousDatabaseDetails. + :rtype: str + """ + return self._autonomous_maintenance_schedule_type + + @autonomous_maintenance_schedule_type.setter + def autonomous_maintenance_schedule_type(self, autonomous_maintenance_schedule_type): + """ + Sets the autonomous_maintenance_schedule_type of this UpdateAutonomousDatabaseDetails. + The maintenance schedule type of the Autonomous Database Serverless. An EARLY maintenance schedule + follows a schedule applying patches prior to the REGULAR schedule. A REGULAR maintenance schedule follows the normal cycle + + + :param autonomous_maintenance_schedule_type: The autonomous_maintenance_schedule_type of this UpdateAutonomousDatabaseDetails. + :type: str + """ + allowed_values = ["EARLY", "REGULAR"] + if not value_allowed_none_or_none_sentinel(autonomous_maintenance_schedule_type, allowed_values): + raise ValueError( + f"Invalid value for `autonomous_maintenance_schedule_type`, must be None or one of {allowed_values}" + ) + self._autonomous_maintenance_schedule_type = autonomous_maintenance_schedule_type + @property def is_backup_retention_locked(self): """ diff --git a/src/oci/database/models/update_autonomous_database_software_image_details.py b/src/oci/database/models/update_autonomous_database_software_image_details.py index 4acf00ac95..2d18f23d6e 100644 --- a/src/oci/database/models/update_autonomous_database_software_image_details.py +++ b/src/oci/database/models/update_autonomous_database_software_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 8880718ac8..c05b9337ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 91ba2d451b..f21ee78e7d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 65d3976e5a..4a515391e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_backup_destination_details.py b/src/oci/database/models/update_backup_destination_details.py index 2b0d02e7f4..672ff015ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 828d204891..fb5de923b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 14fd2d7c3d..0b8c038d34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2331a5eabc..5c1298b40f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_console_connection_details.py b/src/oci/database/models/update_console_connection_details.py index 06676dc9d7..5253f49263 100644 --- a/src/oci/database/models/update_console_connection_details.py +++ b/src/oci/database/models/update_console_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_console_history_details.py b/src/oci/database/models/update_console_history_details.py index bb6d9aba96..9601794b87 100644 --- a/src/oci/database/models/update_console_history_details.py +++ b/src/oci/database/models/update_console_history_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 500d6ceee5..27473fd6dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_database_details.py b/src/oci/database/models/update_database_details.py index 26593435d5..5aff5fdae2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 3c1bb6c81f..ebe919a048 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_db_home_details.py b/src/oci/database/models/update_db_home_details.py index 1274fcfa06..e436b31ffa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_db_node_details.py b/src/oci/database/models/update_db_node_details.py index 56ee75bbcb..ae8dab708c 100644 --- a/src/oci/database/models/update_db_node_details.py +++ b/src/oci/database/models/update_db_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_db_system_details.py b/src/oci/database/models/update_db_system_details.py index e4c9ddad78..bd35964628 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_details.py b/src/oci/database/models/update_details.py index a177815817..ab9a1ed90e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_exadata_infrastructure_details.py b/src/oci/database/models/update_exadata_infrastructure_details.py index 8c235b77a2..0eb37bbdaa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_exadb_vm_cluster_details.py b/src/oci/database/models/update_exadb_vm_cluster_details.py index 6b8293c8d7..e4715ca5b1 100644 --- a/src/oci/database/models/update_exadb_vm_cluster_details.py +++ b/src/oci/database/models/update_exadb_vm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_exascale_db_storage_vault_details.py b/src/oci/database/models/update_exascale_db_storage_vault_details.py index b3bd62b1f3..380a04f76f 100644 --- a/src/oci/database/models/update_exascale_db_storage_vault_details.py +++ b/src/oci/database/models/update_exascale_db_storage_vault_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_execution_action_details.py b/src/oci/database/models/update_execution_action_details.py index cd9496dcfe..d09a91acc3 100644 --- a/src/oci/database/models/update_execution_action_details.py +++ b/src/oci/database/models/update_execution_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_execution_window_details.py b/src/oci/database/models/update_execution_window_details.py index c66d49fc8c..19e34fdd14 100644 --- a/src/oci/database/models/update_execution_window_details.py +++ b/src/oci/database/models/update_execution_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2432fd1277..7aa5645420 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 54127c339f..8ff73a3cc7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 11ec9a8191..925229edc2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b9fef79ae5..d2af755a08 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 731d759cbf..6955b08a58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 a1e9233138..b94065dd9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_history_entry.py b/src/oci/database/models/update_history_entry.py index 80fc2dde3f..405b87847c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_history_entry_summary.py b/src/oci/database/models/update_history_entry_summary.py index 14040b06af..b2b4805149 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_key_store_details.py b/src/oci/database/models/update_key_store_details.py index 01db2b3a85..6979a002c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_maintenance_run_details.py b/src/oci/database/models/update_maintenance_run_details.py index 351f271311..00cb803dda 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_oneoff_patch_details.py b/src/oci/database/models/update_oneoff_patch_details.py index b60e451a86..e705558fd3 100644 --- a/src/oci/database/models/update_oneoff_patch_details.py +++ b/src/oci/database/models/update_oneoff_patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_pluggable_database_details.py b/src/oci/database/models/update_pluggable_database_details.py index 57dbbaf701..8d8d528344 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_scheduled_action_details.py b/src/oci/database/models/update_scheduled_action_details.py index 69f1eb95ef..3e68cf9ffa 100644 --- a/src/oci/database/models/update_scheduled_action_details.py +++ b/src/oci/database/models/update_scheduled_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_scheduling_policy_details.py b/src/oci/database/models/update_scheduling_policy_details.py index 309634afe4..a385d302f9 100644 --- a/src/oci/database/models/update_scheduling_policy_details.py +++ b/src/oci/database/models/update_scheduling_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_scheduling_window_details.py b/src/oci/database/models/update_scheduling_window_details.py index 46256791fe..1243f72f72 100644 --- a/src/oci/database/models/update_scheduling_window_details.py +++ b/src/oci/database/models/update_scheduling_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_summary.py b/src/oci/database/models/update_summary.py index 9eabb716fc..d579095d48 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/update_vm_cluster_details.py b/src/oci/database/models/update_vm_cluster_details.py index ae31e11df2..f056d02787 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 40b9733fca..9da2a40f5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/upgrade_database_details.py b/src/oci/database/models/upgrade_database_details.py index 40fc5f20f4..07e8ca1be7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/upgrade_db_system_details.py b/src/oci/database/models/upgrade_db_system_details.py index f5e4734453..8a689e390e 100644 --- a/src/oci/database/models/upgrade_db_system_details.py +++ b/src/oci/database/models/upgrade_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/vm_cluster.py b/src/oci/database/models/vm_cluster.py index 8a2914486d..bb8f187b59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/vm_cluster_network.py b/src/oci/database/models/vm_cluster_network.py index 660b8fb23d..ca34001ad5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/vm_cluster_network_details.py b/src/oci/database/models/vm_cluster_network_details.py index 7dc8aa7357..d67330f311 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/vm_cluster_network_summary.py b/src/oci/database/models/vm_cluster_network_summary.py index 5865b50683..cfcc9884e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/vm_cluster_summary.py b/src/oci/database/models/vm_cluster_summary.py index 0d309bd8d0..c89a0755a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/vm_cluster_update.py b/src/oci/database/models/vm_cluster_update.py index 9642965684..ce0d7ef6a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/vm_cluster_update_details.py b/src/oci/database/models/vm_cluster_update_details.py index 409bba8462..7f03007f9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c05a6393c6..f2e327ae5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 0966b6b043..5b500d46d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/vm_cluster_update_summary.py b/src/oci/database/models/vm_cluster_update_summary.py index a9f5f44e04..98a5816e35 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/vm_network_details.py b/src/oci/database/models/vm_network_details.py index f627186cd3..72b186a33c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/window_preference_detail.py b/src/oci/database/models/window_preference_detail.py index cd594aa0bf..7d8e7dcf98 100644 --- a/src/oci/database/models/window_preference_detail.py +++ b/src/oci/database/models/window_preference_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database/models/workload_type.py b/src/oci/database/models/workload_type.py index 8e83c87064..61c48b8fbe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/database_management/__init__.py b/src/oci/database_management/__init__.py index 5f8f521412..08f934fea7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/db_management_client.py b/src/oci/database_management/db_management_client.py index ba3374433c..671ed14894 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 f94898b90f..0160210f17 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/diagnosability_client.py b/src/oci/database_management/diagnosability_client.py index 8f8a9b8e8d..ef272c4156 100644 --- a/src/oci/database_management/diagnosability_client.py +++ b/src/oci/database_management/diagnosability_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/diagnosability_client_composite_operations.py b/src/oci/database_management/diagnosability_client_composite_operations.py index e1129f73f2..b95f1fa5dc 100644 --- a/src/oci/database_management/diagnosability_client_composite_operations.py +++ b/src/oci/database_management/diagnosability_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/managed_my_sql_databases_client.py b/src/oci/database_management/managed_my_sql_databases_client.py index e1bcd08c94..b66bb4231d 100644 --- a/src/oci/database_management/managed_my_sql_databases_client.py +++ b/src/oci/database_management/managed_my_sql_databases_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/managed_my_sql_databases_client_composite_operations.py b/src/oci/database_management/managed_my_sql_databases_client_composite_operations.py index 87402c9efa..3e809b2b76 100644 --- a/src/oci/database_management/managed_my_sql_databases_client_composite_operations.py +++ b/src/oci/database_management/managed_my_sql_databases_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/__init__.py b/src/oci/database_management/models/__init__.py index 25b847712e..d378c5b5e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 9164edd547..f068bcfb95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/add_data_files_details.py b/src/oci/database_management/models/add_data_files_details.py index 33cf6bac70..80bfce4087 100644 --- a/src/oci/database_management/models/add_data_files_details.py +++ b/src/oci/database_management/models/add_data_files_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 eb77627729..bcaf4a4b0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/addm_task_summary.py b/src/oci/database_management/models/addm_task_summary.py index 94617489ab..c4dec5cd23 100644 --- a/src/oci/database_management/models/addm_task_summary.py +++ b/src/oci/database_management/models/addm_task_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/addm_tasks_collection.py b/src/oci/database_management/models/addm_tasks_collection.py index f1ecb85a44..abdebb6efe 100644 --- a/src/oci/database_management/models/addm_tasks_collection.py +++ b/src/oci/database_management/models/addm_tasks_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/advisor_rule.py b/src/oci/database_management/models/advisor_rule.py index 16ff829f30..489419e054 100644 --- a/src/oci/database_management/models/advisor_rule.py +++ b/src/oci/database_management/models/advisor_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/alert_log_collection.py b/src/oci/database_management/models/alert_log_collection.py index 89ce377333..38413a8ec8 100644 --- a/src/oci/database_management/models/alert_log_collection.py +++ b/src/oci/database_management/models/alert_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/alert_log_count_summary.py b/src/oci/database_management/models/alert_log_count_summary.py index 89ec99ec24..d4bb96fb4b 100644 --- a/src/oci/database_management/models/alert_log_count_summary.py +++ b/src/oci/database_management/models/alert_log_count_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/alert_log_counts_collection.py b/src/oci/database_management/models/alert_log_counts_collection.py index 24151b1559..39206a360a 100644 --- a/src/oci/database_management/models/alert_log_counts_collection.py +++ b/src/oci/database_management/models/alert_log_counts_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/alert_log_summary.py b/src/oci/database_management/models/alert_log_summary.py index f34dab6ea0..26fe59bed4 100644 --- a/src/oci/database_management/models/alert_log_summary.py +++ b/src/oci/database_management/models/alert_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/allowed_parameter_value.py b/src/oci/database_management/models/allowed_parameter_value.py index a7f0b51329..f8bce71682 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/asm_connection_credentails_by_name.py b/src/oci/database_management/models/asm_connection_credentails_by_name.py index 6e4ef7fb00..cde7c9f7c3 100644 --- a/src/oci/database_management/models/asm_connection_credentails_by_name.py +++ b/src/oci/database_management/models/asm_connection_credentails_by_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/asm_connection_credentials.py b/src/oci/database_management/models/asm_connection_credentials.py index 9d4a81caed..1b780809d3 100644 --- a/src/oci/database_management/models/asm_connection_credentials.py +++ b/src/oci/database_management/models/asm_connection_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/asm_connection_credentials_by_details.py b/src/oci/database_management/models/asm_connection_credentials_by_details.py index 0ccff1fecc..8325d90816 100644 --- a/src/oci/database_management/models/asm_connection_credentials_by_details.py +++ b/src/oci/database_management/models/asm_connection_credentials_by_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/asm_connection_string.py b/src/oci/database_management/models/asm_connection_string.py index 622c0ad87f..da37892ac8 100644 --- a/src/oci/database_management/models/asm_connection_string.py +++ b/src/oci/database_management/models/asm_connection_string.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/asm_property.py b/src/oci/database_management/models/asm_property.py index 7354e537fc..d42b3f19ec 100644 --- a/src/oci/database_management/models/asm_property.py +++ b/src/oci/database_management/models/asm_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/asm_property_collection.py b/src/oci/database_management/models/asm_property_collection.py index 4b4905e327..e22eaae390 100644 --- a/src/oci/database_management/models/asm_property_collection.py +++ b/src/oci/database_management/models/asm_property_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/asm_property_summary.py b/src/oci/database_management/models/asm_property_summary.py index afb2821718..98771d6e72 100644 --- a/src/oci/database_management/models/asm_property_summary.py +++ b/src/oci/database_management/models/asm_property_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/associated_component.py b/src/oci/database_management/models/associated_component.py index a7b4ae63c3..be9a0b0f20 100644 --- a/src/oci/database_management/models/associated_component.py +++ b/src/oci/database_management/models/associated_component.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/associated_database_collection.py b/src/oci/database_management/models/associated_database_collection.py index 78093af2f9..2801ebf8c7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/associated_database_summary.py b/src/oci/database_management/models/associated_database_summary.py index 33a14d4f10..61e5f24c0b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/associated_service_details.py b/src/oci/database_management/models/associated_service_details.py index 607461ba02..acc010f101 100644 --- a/src/oci/database_management/models/associated_service_details.py +++ b/src/oci/database_management/models/associated_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/attention_log_collection.py b/src/oci/database_management/models/attention_log_collection.py index 92491e3b6b..1ab9955ec2 100644 --- a/src/oci/database_management/models/attention_log_collection.py +++ b/src/oci/database_management/models/attention_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/attention_log_count_summary.py b/src/oci/database_management/models/attention_log_count_summary.py index 83c7df45e0..556204edb1 100644 --- a/src/oci/database_management/models/attention_log_count_summary.py +++ b/src/oci/database_management/models/attention_log_count_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/attention_log_counts_collection.py b/src/oci/database_management/models/attention_log_counts_collection.py index 9a70406f72..2e56aeb542 100644 --- a/src/oci/database_management/models/attention_log_counts_collection.py +++ b/src/oci/database_management/models/attention_log_counts_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/attention_log_summary.py b/src/oci/database_management/models/attention_log_summary.py index 8150b87efe..c57a63a073 100644 --- a/src/oci/database_management/models/attention_log_summary.py +++ b/src/oci/database_management/models/attention_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/automatic_capture_filter.py b/src/oci/database_management/models/automatic_capture_filter.py index 35fe49aa26..09de706697 100644 --- a/src/oci/database_management/models/automatic_capture_filter.py +++ b/src/oci/database_management/models/automatic_capture_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/automatic_capture_filter_details.py b/src/oci/database_management/models/automatic_capture_filter_details.py index d9a3b276b9..2dd91193ee 100644 --- a/src/oci/database_management/models/automatic_capture_filter_details.py +++ b/src/oci/database_management/models/automatic_capture_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/autonomous_database_diagnostics_and_management_feature_details.py b/src/oci/database_management/models/autonomous_database_diagnostics_and_management_feature_details.py index 9785af5c69..eca6c4b649 100644 --- a/src/oci/database_management/models/autonomous_database_diagnostics_and_management_feature_details.py +++ b/src/oci/database_management/models/autonomous_database_diagnostics_and_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/autonomous_database_feature_details.py b/src/oci/database_management/models/autonomous_database_feature_details.py index 9560ef6c72..6fd361078e 100644 --- a/src/oci/database_management/models/autonomous_database_feature_details.py +++ b/src/oci/database_management/models/autonomous_database_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/autonomous_database_sql_watch_feature_details.py b/src/oci/database_management/models/autonomous_database_sql_watch_feature_details.py index 929b8ea0c0..eb84b46c3f 100644 --- a/src/oci/database_management/models/autonomous_database_sql_watch_feature_details.py +++ b/src/oci/database_management/models/autonomous_database_sql_watch_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/awr_db_collection.py b/src/oci/database_management/models/awr_db_collection.py index 71294e3dad..d0ab13d4da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 04db44a713..32badad9a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 31fd6d0d09..e3d4c5812c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 02f9acc0c3..fb5bb81929 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 c1b686d793..fcd36eb8ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 d9d88e3d25..4188139379 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 40c078c44d..0166f01ffe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 4426651b2b..fa201894dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 bb33d7fb41..fda5cc7528 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/awr_db_report.py b/src/oci/database_management/models/awr_db_report.py index ec77494c8e..70c5300b88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 c22d0ac8d4..aebfc5db2b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 378535e774..844da994e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 99a7ecb46e..8824500903 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 7c560ede6b..562e1e9399 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 202d50dc3c..396c8344e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/awr_db_summary.py b/src/oci/database_management/models/awr_db_summary.py index 65a31309b3..09f498e51d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 12f1f8015f..f4428ecd5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 c6678b1cf8..5d09c2e7af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 3a1e2f9644..73151733e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 f024b3cd72..e3e2a35a43 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 547fef38b6..ed7ada534f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 9c036bd9d3..6edb6db815 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 ea944cd46c..788b523cb5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 721c7e3cdf..4a7ce354d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/awr_query_result.py b/src/oci/database_management/models/awr_query_result.py index 1adfdab752..84d786fc32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/basic_database_connection_string_details.py b/src/oci/database_management/models/basic_database_connection_string_details.py index 03a564ffcc..5f913e3fd1 100644 --- a/src/oci/database_management/models/basic_database_connection_string_details.py +++ b/src/oci/database_management/models/basic_database_connection_string_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/basic_named_credential_content.py b/src/oci/database_management/models/basic_named_credential_content.py index 15c2d10934..8e3d93dd51 100644 --- a/src/oci/database_management/models/basic_named_credential_content.py +++ b/src/oci/database_management/models/basic_named_credential_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/basic_preferred_credential.py b/src/oci/database_management/models/basic_preferred_credential.py index a9106242fa..fe7fe4195d 100644 --- a/src/oci/database_management/models/basic_preferred_credential.py +++ b/src/oci/database_management/models/basic_preferred_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 5e0d774db4..2c93199e25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 ee33a2d855..ca1e4178d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 8ca9d4e4f6..79d633f35e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/change_external_db_system_compartment_details.py b/src/oci/database_management/models/change_external_db_system_compartment_details.py index a025d594d7..88df6e7147 100644 --- a/src/oci/database_management/models/change_external_db_system_compartment_details.py +++ b/src/oci/database_management/models/change_external_db_system_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/change_external_exadata_infrastructure_compartment_details.py b/src/oci/database_management/models/change_external_exadata_infrastructure_compartment_details.py index 972d81d655..3731f81c34 100644 --- a/src/oci/database_management/models/change_external_exadata_infrastructure_compartment_details.py +++ b/src/oci/database_management/models/change_external_exadata_infrastructure_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 bfb92371a8..173b5ef726 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 72732d67de..b708169252 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/change_named_credential_compartment_details.py b/src/oci/database_management/models/change_named_credential_compartment_details.py index b1b91e2462..1c5ad79145 100644 --- a/src/oci/database_management/models/change_named_credential_compartment_details.py +++ b/src/oci/database_management/models/change_named_credential_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/change_plan_retention_details.py b/src/oci/database_management/models/change_plan_retention_details.py index e3e88ba10c..345dd132e0 100644 --- a/src/oci/database_management/models/change_plan_retention_details.py +++ b/src/oci/database_management/models/change_plan_retention_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/change_space_budget_details.py b/src/oci/database_management/models/change_space_budget_details.py index d5ac87b189..604724ab1d 100644 --- a/src/oci/database_management/models/change_space_budget_details.py +++ b/src/oci/database_management/models/change_space_budget_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/change_sql_plan_baselines_attributes_details.py b/src/oci/database_management/models/change_sql_plan_baselines_attributes_details.py index 62833fcb85..a79e7d90b4 100644 --- a/src/oci/database_management/models/change_sql_plan_baselines_attributes_details.py +++ b/src/oci/database_management/models/change_sql_plan_baselines_attributes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/child_database.py b/src/oci/database_management/models/child_database.py index 4cda5e6b14..65511c017a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 999f3e9921..02ab8a8f1a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/cluster_cache_metric.py b/src/oci/database_management/models/cluster_cache_metric.py index 7ffa42fb21..e2b4f71096 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/configure_automatic_capture_filters_details.py b/src/oci/database_management/models/configure_automatic_capture_filters_details.py index 24e361cb5c..053e0d0b49 100644 --- a/src/oci/database_management/models/configure_automatic_capture_filters_details.py +++ b/src/oci/database_management/models/configure_automatic_capture_filters_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/configure_automatic_spm_evolve_advisor_task_details.py b/src/oci/database_management/models/configure_automatic_spm_evolve_advisor_task_details.py index c058b7abd0..e1514d202b 100644 --- a/src/oci/database_management/models/configure_automatic_spm_evolve_advisor_task_details.py +++ b/src/oci/database_management/models/configure_automatic_spm_evolve_advisor_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/connector_details.py b/src/oci/database_management/models/connector_details.py index 7525cdec41..748a98edb5 100644 --- a/src/oci/database_management/models/connector_details.py +++ b/src/oci/database_management/models/connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 e5b698744b..8dcedca0cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 7edf8ee27c..61d185fa88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 80a3c09f84..73d7ef324a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 36c54a6d78..1dd5a02432 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_external_db_system_connector_details.py b/src/oci/database_management/models/create_external_db_system_connector_details.py index 2566f45843..e720a0f68d 100644 --- a/src/oci/database_management/models/create_external_db_system_connector_details.py +++ b/src/oci/database_management/models/create_external_db_system_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_external_db_system_details.py b/src/oci/database_management/models/create_external_db_system_details.py index e0922a5ec3..10c7a99ee3 100644 --- a/src/oci/database_management/models/create_external_db_system_details.py +++ b/src/oci/database_management/models/create_external_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_external_db_system_discovery_details.py b/src/oci/database_management/models/create_external_db_system_discovery_details.py index 29fede9415..19524aa6a9 100644 --- a/src/oci/database_management/models/create_external_db_system_discovery_details.py +++ b/src/oci/database_management/models/create_external_db_system_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_external_db_system_macs_connector_details.py b/src/oci/database_management/models/create_external_db_system_macs_connector_details.py index 1be8cecaea..130a5e8306 100644 --- a/src/oci/database_management/models/create_external_db_system_macs_connector_details.py +++ b/src/oci/database_management/models/create_external_db_system_macs_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_external_exadata_infrastructure_details.py b/src/oci/database_management/models/create_external_exadata_infrastructure_details.py index 04d205de1d..0262fe39cd 100644 --- a/src/oci/database_management/models/create_external_exadata_infrastructure_details.py +++ b/src/oci/database_management/models/create_external_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_external_exadata_storage_connector_details.py b/src/oci/database_management/models/create_external_exadata_storage_connector_details.py index 4c2812e779..8061ee20b0 100644 --- a/src/oci/database_management/models/create_external_exadata_storage_connector_details.py +++ b/src/oci/database_management/models/create_external_exadata_storage_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_job_details.py b/src/oci/database_management/models/create_job_details.py index aadbad489a..7ee9a23abc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 176e854474..acbab427cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_named_credential_details.py b/src/oci/database_management/models/create_named_credential_details.py index d53072b112..7cba58ea01 100644 --- a/src/oci/database_management/models/create_named_credential_details.py +++ b/src/oci/database_management/models/create_named_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 fe7c0a73f9..ffeaf44280 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_sql_tuning_set_details.py b/src/oci/database_management/models/create_sql_tuning_set_details.py index 81dbd0e92a..eddcc3400a 100644 --- a/src/oci/database_management/models/create_sql_tuning_set_details.py +++ b/src/oci/database_management/models/create_sql_tuning_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/create_tablespace_details.py b/src/oci/database_management/models/create_tablespace_details.py index 1dc2f796ce..fc71b987eb 100644 --- a/src/oci/database_management/models/create_tablespace_details.py +++ b/src/oci/database_management/models/create_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/cursor_cache_statement_collection.py b/src/oci/database_management/models/cursor_cache_statement_collection.py index 1e013cc2da..619554405c 100644 --- a/src/oci/database_management/models/cursor_cache_statement_collection.py +++ b/src/oci/database_management/models/cursor_cache_statement_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/cursor_cache_statement_summary.py b/src/oci/database_management/models/cursor_cache_statement_summary.py index d4c661cfb5..f6da58768b 100644 --- a/src/oci/database_management/models/cursor_cache_statement_summary.py +++ b/src/oci/database_management/models/cursor_cache_statement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 877a230265..cb3dab7df4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 de8ed311c7..b5c042f49e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/data_points.py b/src/oci/database_management/models/data_points.py index 9688f87c07..da13ba8b6c 100644 --- a/src/oci/database_management/models/data_points.py +++ b/src/oci/database_management/models/data_points.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_connection_credentails_by_name.py b/src/oci/database_management/models/database_connection_credentails_by_name.py index f6b792351b..ffa2d2b832 100644 --- a/src/oci/database_management/models/database_connection_credentails_by_name.py +++ b/src/oci/database_management/models/database_connection_credentails_by_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_connection_credentials.py b/src/oci/database_management/models/database_connection_credentials.py index 6b2d05a076..7bf61eb9b8 100644 --- a/src/oci/database_management/models/database_connection_credentials.py +++ b/src/oci/database_management/models/database_connection_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_connection_credentials_by_details.py b/src/oci/database_management/models/database_connection_credentials_by_details.py index 4dd660e421..f772805831 100644 --- a/src/oci/database_management/models/database_connection_credentials_by_details.py +++ b/src/oci/database_management/models/database_connection_credentials_by_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_connection_details.py b/src/oci/database_management/models/database_connection_details.py index 4b55ba90a5..d08b31df2f 100644 --- a/src/oci/database_management/models/database_connection_details.py +++ b/src/oci/database_management/models/database_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_connection_string.py b/src/oci/database_management/models/database_connection_string.py index cbf293b03b..2a4884b284 100644 --- a/src/oci/database_management/models/database_connection_string.py +++ b/src/oci/database_management/models/database_connection_string.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_connection_string_details.py b/src/oci/database_management/models/database_connection_string_details.py index 95bf6a053f..32d2d05497 100644 --- a/src/oci/database_management/models/database_connection_string_details.py +++ b/src/oci/database_management/models/database_connection_string_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_credential_details.py b/src/oci/database_management/models/database_credential_details.py index 9dd52fc3c9..09b594cc4d 100644 --- a/src/oci/database_management/models/database_credential_details.py +++ b/src/oci/database_management/models/database_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_credentials.py b/src/oci/database_management/models/database_credentials.py index e66568c872..89e5a98428 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_diagnostics_and_management_feature_configuration.py b/src/oci/database_management/models/database_diagnostics_and_management_feature_configuration.py index 4718b729b6..b8fb88226d 100644 --- a/src/oci/database_management/models/database_diagnostics_and_management_feature_configuration.py +++ b/src/oci/database_management/models/database_diagnostics_and_management_feature_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_diagnostics_and_management_feature_details.py b/src/oci/database_management/models/database_diagnostics_and_management_feature_details.py index b126267bad..8c52f3d456 100644 --- a/src/oci/database_management/models/database_diagnostics_and_management_feature_details.py +++ b/src/oci/database_management/models/database_diagnostics_and_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_feature_configuration.py b/src/oci/database_management/models/database_feature_configuration.py index 83d61d02d4..74d0790e8a 100644 --- a/src/oci/database_management/models/database_feature_configuration.py +++ b/src/oci/database_management/models/database_feature_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_feature_details.py b/src/oci/database_management/models/database_feature_details.py index 880be0ed12..fd5a020458 100644 --- a/src/oci/database_management/models/database_feature_details.py +++ b/src/oci/database_management/models/database_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 67a14db002..a3ed725e64 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 31fe26c89e..73429f75a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_home_metrics.py b/src/oci/database_management/models/database_home_metrics.py index 04a3e8e2a3..344dfc6bd3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 4e40ac91c6..6f61e0d472 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 edc6e35422..6d7c785f29 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_lifecycle_feature_configuration.py b/src/oci/database_management/models/database_lifecycle_feature_configuration.py index 9aafd4e4ce..c035118f3f 100644 --- a/src/oci/database_management/models/database_lifecycle_feature_configuration.py +++ b/src/oci/database_management/models/database_lifecycle_feature_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_lifecycle_management_feature_details.py b/src/oci/database_management/models/database_lifecycle_management_feature_details.py index f1df9234d7..30a8e921c2 100644 --- a/src/oci/database_management/models/database_lifecycle_management_feature_details.py +++ b/src/oci/database_management/models/database_lifecycle_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_management_config.py b/src/oci/database_management/models/database_management_config.py index 40128e70c5..e32938b3d3 100644 --- a/src/oci/database_management/models/database_management_config.py +++ b/src/oci/database_management/models/database_management_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_named_credential_connection_details.py b/src/oci/database_management/models/database_named_credential_connection_details.py index 15b4c79490..1e52e856df 100644 --- a/src/oci/database_management/models/database_named_credential_connection_details.py +++ b/src/oci/database_management/models/database_named_credential_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_named_credential_details.py b/src/oci/database_management/models/database_named_credential_details.py index a1d05797de..d3153b2b2e 100644 --- a/src/oci/database_management/models/database_named_credential_details.py +++ b/src/oci/database_management/models/database_named_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_parameter_summary.py b/src/oci/database_management/models/database_parameter_summary.py index 24df83ff90..0afff5d2c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 6465dde792..2ca200482f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_parameters_collection.py b/src/oci/database_management/models/database_parameters_collection.py index 83cd4767da..ae2d5f4f0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_password_credential_details.py b/src/oci/database_management/models/database_password_credential_details.py index f1fa4b226f..6c6edf8c77 100644 --- a/src/oci/database_management/models/database_password_credential_details.py +++ b/src/oci/database_management/models/database_password_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_plan.py b/src/oci/database_management/models/database_plan.py index 59cf4a4605..82e41607b0 100644 --- a/src/oci/database_management/models/database_plan.py +++ b/src/oci/database_management/models/database_plan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_plan_directive.py b/src/oci/database_management/models/database_plan_directive.py index 37dda6d7ee..aaa01480f2 100644 --- a/src/oci/database_management/models/database_plan_directive.py +++ b/src/oci/database_management/models/database_plan_directive.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_secret_credential_details.py b/src/oci/database_management/models/database_secret_credential_details.py index 76ab895b67..0f4209e6de 100644 --- a/src/oci/database_management/models/database_secret_credential_details.py +++ b/src/oci/database_management/models/database_secret_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_sql_watch_feature_configuration.py b/src/oci/database_management/models/database_sql_watch_feature_configuration.py index 8fc71bc46c..7446c1a951 100644 --- a/src/oci/database_management/models/database_sql_watch_feature_configuration.py +++ b/src/oci/database_management/models/database_sql_watch_feature_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_sql_watch_feature_details.py b/src/oci/database_management/models/database_sql_watch_feature_details.py index 1a703e3284..46d5f90d03 100644 --- a/src/oci/database_management/models/database_sql_watch_feature_details.py +++ b/src/oci/database_management/models/database_sql_watch_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_ssl_connection_credentials.py b/src/oci/database_management/models/database_ssl_connection_credentials.py index d97979204c..97a0120e91 100644 --- a/src/oci/database_management/models/database_ssl_connection_credentials.py +++ b/src/oci/database_management/models/database_ssl_connection_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 3f1fdea799..e0cdd5aaea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 246cf7b0bc..c396d74147 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/database_usage_metrics.py b/src/oci/database_management/models/database_usage_metrics.py index bbf41960b4..760184a147 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/datafile.py b/src/oci/database_management/models/datafile.py index 4652bf76b4..b50550fc71 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/dataguard_performance_metrics.py b/src/oci/database_management/models/dataguard_performance_metrics.py index 9326645765..d41b27aa6d 100644 --- a/src/oci/database_management/models/dataguard_performance_metrics.py +++ b/src/oci/database_management/models/dataguard_performance_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/db_management_analytics_metric.py b/src/oci/database_management/models/db_management_analytics_metric.py index cf4b715650..fec1b64b4e 100644 --- a/src/oci/database_management/models/db_management_analytics_metric.py +++ b/src/oci/database_management/models/db_management_analytics_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 a38f8c9ab0..0806fc7eb1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 0da8b200cb..2a1248a65c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 2c111ab430..a5028aa6f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/dbm_resource.py b/src/oci/database_management/models/dbm_resource.py index d88759f78a..ecdd1866fc 100644 --- a/src/oci/database_management/models/dbm_resource.py +++ b/src/oci/database_management/models/dbm_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/direct_connector_details.py b/src/oci/database_management/models/direct_connector_details.py index 14e7dd8503..cd080eadef 100644 --- a/src/oci/database_management/models/direct_connector_details.py +++ b/src/oci/database_management/models/direct_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_automatic_initial_plan_capture_details.py b/src/oci/database_management/models/disable_automatic_initial_plan_capture_details.py index 0160fa4b6a..fb531ba1c3 100644 --- a/src/oci/database_management/models/disable_automatic_initial_plan_capture_details.py +++ b/src/oci/database_management/models/disable_automatic_initial_plan_capture_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_automatic_spm_evolve_advisor_task_details.py b/src/oci/database_management/models/disable_automatic_spm_evolve_advisor_task_details.py index b1499ce53d..1128928018 100644 --- a/src/oci/database_management/models/disable_automatic_spm_evolve_advisor_task_details.py +++ b/src/oci/database_management/models/disable_automatic_spm_evolve_advisor_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_autonomous_database_management_feature_details.py b/src/oci/database_management/models/disable_autonomous_database_management_feature_details.py index ca162acab5..52074bb5c3 100644 --- a/src/oci/database_management/models/disable_autonomous_database_management_feature_details.py +++ b/src/oci/database_management/models/disable_autonomous_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_database_management_feature_details.py b/src/oci/database_management/models/disable_database_management_feature_details.py index 77db8a4b79..c856a36157 100644 --- a/src/oci/database_management/models/disable_database_management_feature_details.py +++ b/src/oci/database_management/models/disable_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_external_container_database_management_feature_details.py b/src/oci/database_management/models/disable_external_container_database_management_feature_details.py index 1b99cc2b8e..d8c6d4a46c 100644 --- a/src/oci/database_management/models/disable_external_container_database_management_feature_details.py +++ b/src/oci/database_management/models/disable_external_container_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_external_non_container_database_management_feature_details.py b/src/oci/database_management/models/disable_external_non_container_database_management_feature_details.py index 9db86b7f2f..f16618c936 100644 --- a/src/oci/database_management/models/disable_external_non_container_database_management_feature_details.py +++ b/src/oci/database_management/models/disable_external_non_container_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_external_pluggable_database_management_feature_details.py b/src/oci/database_management/models/disable_external_pluggable_database_management_feature_details.py index bacacccd59..2cd07f6c27 100644 --- a/src/oci/database_management/models/disable_external_pluggable_database_management_feature_details.py +++ b/src/oci/database_management/models/disable_external_pluggable_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_high_frequency_automatic_spm_evolve_advisor_task_details.py b/src/oci/database_management/models/disable_high_frequency_automatic_spm_evolve_advisor_task_details.py index 4d6566fd1b..df01ff3a10 100644 --- a/src/oci/database_management/models/disable_high_frequency_automatic_spm_evolve_advisor_task_details.py +++ b/src/oci/database_management/models/disable_high_frequency_automatic_spm_evolve_advisor_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_pluggable_database_management_feature_details.py b/src/oci/database_management/models/disable_pluggable_database_management_feature_details.py index f368dd2ba1..f1998fa82f 100644 --- a/src/oci/database_management/models/disable_pluggable_database_management_feature_details.py +++ b/src/oci/database_management/models/disable_pluggable_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/disable_sql_plan_baselines_usage_details.py b/src/oci/database_management/models/disable_sql_plan_baselines_usage_details.py index c544486d72..0df14442dc 100644 --- a/src/oci/database_management/models/disable_sql_plan_baselines_usage_details.py +++ b/src/oci/database_management/models/disable_sql_plan_baselines_usage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discover_external_exadata_infrastructure_details.py b/src/oci/database_management/models/discover_external_exadata_infrastructure_details.py index 566563286d..7baec55998 100644 --- a/src/oci/database_management/models/discover_external_exadata_infrastructure_details.py +++ b/src/oci/database_management/models/discover_external_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_asm.py b/src/oci/database_management/models/discovered_external_asm.py index 5bcf60df67..85109d8265 100644 --- a/src/oci/database_management/models/discovered_external_asm.py +++ b/src/oci/database_management/models/discovered_external_asm.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_asm_instance.py b/src/oci/database_management/models/discovered_external_asm_instance.py index 61f18a0c07..29e4ab2084 100644 --- a/src/oci/database_management/models/discovered_external_asm_instance.py +++ b/src/oci/database_management/models/discovered_external_asm_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_cluster.py b/src/oci/database_management/models/discovered_external_cluster.py index a342fb0beb..d231d8312d 100644 --- a/src/oci/database_management/models/discovered_external_cluster.py +++ b/src/oci/database_management/models/discovered_external_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_cluster_instance.py b/src/oci/database_management/models/discovered_external_cluster_instance.py index 08407f7ad1..04d6f1be10 100644 --- a/src/oci/database_management/models/discovered_external_cluster_instance.py +++ b/src/oci/database_management/models/discovered_external_cluster_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_database.py b/src/oci/database_management/models/discovered_external_database.py index b3f1a9d5e6..2a4b1cfb69 100644 --- a/src/oci/database_management/models/discovered_external_database.py +++ b/src/oci/database_management/models/discovered_external_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_db_home.py b/src/oci/database_management/models/discovered_external_db_home.py index 79966701e8..92c7f589bc 100644 --- a/src/oci/database_management/models/discovered_external_db_home.py +++ b/src/oci/database_management/models/discovered_external_db_home.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_db_node.py b/src/oci/database_management/models/discovered_external_db_node.py index 17b333d394..1e2d8a653f 100644 --- a/src/oci/database_management/models/discovered_external_db_node.py +++ b/src/oci/database_management/models/discovered_external_db_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_db_system_component.py b/src/oci/database_management/models/discovered_external_db_system_component.py index b70c798e19..96963d293c 100644 --- a/src/oci/database_management/models/discovered_external_db_system_component.py +++ b/src/oci/database_management/models/discovered_external_db_system_component.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_listener.py b/src/oci/database_management/models/discovered_external_listener.py index ba5c10cbf0..2a1990db8f 100644 --- a/src/oci/database_management/models/discovered_external_listener.py +++ b/src/oci/database_management/models/discovered_external_listener.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/discovered_external_pluggable_database.py b/src/oci/database_management/models/discovered_external_pluggable_database.py index 6b2a3bccad..3c82f28157 100644 --- a/src/oci/database_management/models/discovered_external_pluggable_database.py +++ b/src/oci/database_management/models/discovered_external_pluggable_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/drop_sql_plan_baselines_details.py b/src/oci/database_management/models/drop_sql_plan_baselines_details.py index a551932c33..3490b6a561 100644 --- a/src/oci/database_management/models/drop_sql_plan_baselines_details.py +++ b/src/oci/database_management/models/drop_sql_plan_baselines_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/drop_sql_tuning_set_details.py b/src/oci/database_management/models/drop_sql_tuning_set_details.py index 486fa096f8..6289528996 100644 --- a/src/oci/database_management/models/drop_sql_tuning_set_details.py +++ b/src/oci/database_management/models/drop_sql_tuning_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 934c526097..a456b8a8e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/drop_sqls_in_sql_tuning_set_details.py b/src/oci/database_management/models/drop_sqls_in_sql_tuning_set_details.py index 94c126f26a..f60ed6685e 100644 --- a/src/oci/database_management/models/drop_sqls_in_sql_tuning_set_details.py +++ b/src/oci/database_management/models/drop_sqls_in_sql_tuning_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/drop_tablespace_details.py b/src/oci/database_management/models/drop_tablespace_details.py index eb92d5d668..3479e4dcb2 100644 --- a/src/oci/database_management/models/drop_tablespace_details.py +++ b/src/oci/database_management/models/drop_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_automatic_initial_plan_capture_details.py b/src/oci/database_management/models/enable_automatic_initial_plan_capture_details.py index ccb67f889f..71c117a606 100644 --- a/src/oci/database_management/models/enable_automatic_initial_plan_capture_details.py +++ b/src/oci/database_management/models/enable_automatic_initial_plan_capture_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_automatic_spm_evolve_advisor_task_details.py b/src/oci/database_management/models/enable_automatic_spm_evolve_advisor_task_details.py index d1536a730e..67ec911c3c 100644 --- a/src/oci/database_management/models/enable_automatic_spm_evolve_advisor_task_details.py +++ b/src/oci/database_management/models/enable_automatic_spm_evolve_advisor_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_autonomous_database_management_feature_details.py b/src/oci/database_management/models/enable_autonomous_database_management_feature_details.py index 55dd184d21..57f891e859 100644 --- a/src/oci/database_management/models/enable_autonomous_database_management_feature_details.py +++ b/src/oci/database_management/models/enable_autonomous_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_database_management_feature_details.py b/src/oci/database_management/models/enable_database_management_feature_details.py index 91eb129447..f3850f1433 100644 --- a/src/oci/database_management/models/enable_database_management_feature_details.py +++ b/src/oci/database_management/models/enable_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_external_container_database_management_feature_details.py b/src/oci/database_management/models/enable_external_container_database_management_feature_details.py index 9d1d7a7254..91e9c0e57c 100644 --- a/src/oci/database_management/models/enable_external_container_database_management_feature_details.py +++ b/src/oci/database_management/models/enable_external_container_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_external_db_system_database_management_details.py b/src/oci/database_management/models/enable_external_db_system_database_management_details.py index 7c9a0d7aaa..60779f6eb3 100644 --- a/src/oci/database_management/models/enable_external_db_system_database_management_details.py +++ b/src/oci/database_management/models/enable_external_db_system_database_management_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_external_db_system_stack_monitoring_details.py b/src/oci/database_management/models/enable_external_db_system_stack_monitoring_details.py index dc4af77256..2af4ed26a3 100644 --- a/src/oci/database_management/models/enable_external_db_system_stack_monitoring_details.py +++ b/src/oci/database_management/models/enable_external_db_system_stack_monitoring_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_external_exadata_infrastructure_management_details.py b/src/oci/database_management/models/enable_external_exadata_infrastructure_management_details.py index 2b025db86c..ede7f1e3fb 100644 --- a/src/oci/database_management/models/enable_external_exadata_infrastructure_management_details.py +++ b/src/oci/database_management/models/enable_external_exadata_infrastructure_management_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_external_non_container_database_management_feature_details.py b/src/oci/database_management/models/enable_external_non_container_database_management_feature_details.py index ddd487289f..d82ecbc2b1 100644 --- a/src/oci/database_management/models/enable_external_non_container_database_management_feature_details.py +++ b/src/oci/database_management/models/enable_external_non_container_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_external_pluggable_database_management_feature_details.py b/src/oci/database_management/models/enable_external_pluggable_database_management_feature_details.py index a63fd89109..0b61ab3bad 100644 --- a/src/oci/database_management/models/enable_external_pluggable_database_management_feature_details.py +++ b/src/oci/database_management/models/enable_external_pluggable_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_high_frequency_automatic_spm_evolve_advisor_task_details.py b/src/oci/database_management/models/enable_high_frequency_automatic_spm_evolve_advisor_task_details.py index 5d37076fd3..99b2d1af57 100644 --- a/src/oci/database_management/models/enable_high_frequency_automatic_spm_evolve_advisor_task_details.py +++ b/src/oci/database_management/models/enable_high_frequency_automatic_spm_evolve_advisor_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_pluggable_database_management_feature_details.py b/src/oci/database_management/models/enable_pluggable_database_management_feature_details.py index 3e210455be..5bee817670 100644 --- a/src/oci/database_management/models/enable_pluggable_database_management_feature_details.py +++ b/src/oci/database_management/models/enable_pluggable_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/enable_sql_plan_baselines_usage_details.py b/src/oci/database_management/models/enable_sql_plan_baselines_usage_details.py index 47cfc76453..3265ff38d5 100644 --- a/src/oci/database_management/models/enable_sql_plan_baselines_usage_details.py +++ b/src/oci/database_management/models/enable_sql_plan_baselines_usage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/entity_discovered.py b/src/oci/database_management/models/entity_discovered.py index 946f8f82ed..5245c00c98 100644 --- a/src/oci/database_management/models/entity_discovered.py +++ b/src/oci/database_management/models/entity_discovered.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 0a71fb4c4a..762caf4771 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm.py b/src/oci/database_management/models/external_asm.py index e9f3cb009e..18770e8892 100644 --- a/src/oci/database_management/models/external_asm.py +++ b/src/oci/database_management/models/external_asm.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_collection.py b/src/oci/database_management/models/external_asm_collection.py index f185c602b5..acf1fca8c7 100644 --- a/src/oci/database_management/models/external_asm_collection.py +++ b/src/oci/database_management/models/external_asm_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_configuration.py b/src/oci/database_management/models/external_asm_configuration.py index 8451b5e969..fc28918130 100644 --- a/src/oci/database_management/models/external_asm_configuration.py +++ b/src/oci/database_management/models/external_asm_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_connection_info.py b/src/oci/database_management/models/external_asm_connection_info.py index 2001b867a4..95154fbefa 100644 --- a/src/oci/database_management/models/external_asm_connection_info.py +++ b/src/oci/database_management/models/external_asm_connection_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_disk_group_collection.py b/src/oci/database_management/models/external_asm_disk_group_collection.py index ccaefa9955..9466351634 100644 --- a/src/oci/database_management/models/external_asm_disk_group_collection.py +++ b/src/oci/database_management/models/external_asm_disk_group_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_disk_group_summary.py b/src/oci/database_management/models/external_asm_disk_group_summary.py index ac9af39d9d..8949961239 100644 --- a/src/oci/database_management/models/external_asm_disk_group_summary.py +++ b/src/oci/database_management/models/external_asm_disk_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_instance.py b/src/oci/database_management/models/external_asm_instance.py index 55c9aa6e42..3c16b75041 100644 --- a/src/oci/database_management/models/external_asm_instance.py +++ b/src/oci/database_management/models/external_asm_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_instance_collection.py b/src/oci/database_management/models/external_asm_instance_collection.py index 5abc29fc9d..355f0f755e 100644 --- a/src/oci/database_management/models/external_asm_instance_collection.py +++ b/src/oci/database_management/models/external_asm_instance_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_instance_parameters.py b/src/oci/database_management/models/external_asm_instance_parameters.py index e6b7425eaa..e1627e9bc7 100644 --- a/src/oci/database_management/models/external_asm_instance_parameters.py +++ b/src/oci/database_management/models/external_asm_instance_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_instance_summary.py b/src/oci/database_management/models/external_asm_instance_summary.py index 98823eb7ef..6bb019ee37 100644 --- a/src/oci/database_management/models/external_asm_instance_summary.py +++ b/src/oci/database_management/models/external_asm_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_serviced_database.py b/src/oci/database_management/models/external_asm_serviced_database.py index 73b8205313..1558c3f1fc 100644 --- a/src/oci/database_management/models/external_asm_serviced_database.py +++ b/src/oci/database_management/models/external_asm_serviced_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_summary.py b/src/oci/database_management/models/external_asm_summary.py index a2ade2500e..64cf9571bd 100644 --- a/src/oci/database_management/models/external_asm_summary.py +++ b/src/oci/database_management/models/external_asm_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_user_collection.py b/src/oci/database_management/models/external_asm_user_collection.py index eacdb60a86..d9b1ebd972 100644 --- a/src/oci/database_management/models/external_asm_user_collection.py +++ b/src/oci/database_management/models/external_asm_user_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_asm_user_summary.py b/src/oci/database_management/models/external_asm_user_summary.py index 0ef54fd0f2..6798eb1bc2 100644 --- a/src/oci/database_management/models/external_asm_user_summary.py +++ b/src/oci/database_management/models/external_asm_user_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_cluster.py b/src/oci/database_management/models/external_cluster.py index 7befdf59e5..af504b7acb 100644 --- a/src/oci/database_management/models/external_cluster.py +++ b/src/oci/database_management/models/external_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_cluster_collection.py b/src/oci/database_management/models/external_cluster_collection.py index 84e57634e8..fc6b5cffb3 100644 --- a/src/oci/database_management/models/external_cluster_collection.py +++ b/src/oci/database_management/models/external_cluster_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_cluster_instance.py b/src/oci/database_management/models/external_cluster_instance.py index 78c9917092..221faa50da 100644 --- a/src/oci/database_management/models/external_cluster_instance.py +++ b/src/oci/database_management/models/external_cluster_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_cluster_instance_collection.py b/src/oci/database_management/models/external_cluster_instance_collection.py index 5337356791..64be536f93 100644 --- a/src/oci/database_management/models/external_cluster_instance_collection.py +++ b/src/oci/database_management/models/external_cluster_instance_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_cluster_instance_summary.py b/src/oci/database_management/models/external_cluster_instance_summary.py index 8f49a5310e..1ed6d48cd1 100644 --- a/src/oci/database_management/models/external_cluster_instance_summary.py +++ b/src/oci/database_management/models/external_cluster_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_cluster_network_configuration.py b/src/oci/database_management/models/external_cluster_network_configuration.py index beca9480d2..b26ff9b00d 100644 --- a/src/oci/database_management/models/external_cluster_network_configuration.py +++ b/src/oci/database_management/models/external_cluster_network_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_cluster_scan_listener_configuration.py b/src/oci/database_management/models/external_cluster_scan_listener_configuration.py index c1959449c9..6101280b10 100644 --- a/src/oci/database_management/models/external_cluster_scan_listener_configuration.py +++ b/src/oci/database_management/models/external_cluster_scan_listener_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_cluster_summary.py b/src/oci/database_management/models/external_cluster_summary.py index cc43771fcc..85c5df4e03 100644 --- a/src/oci/database_management/models/external_cluster_summary.py +++ b/src/oci/database_management/models/external_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_cluster_vip_configuration.py b/src/oci/database_management/models/external_cluster_vip_configuration.py index 5e1eadb802..4db1be9d32 100644 --- a/src/oci/database_management/models/external_cluster_vip_configuration.py +++ b/src/oci/database_management/models/external_cluster_vip_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_connector_details.py b/src/oci/database_management/models/external_connector_details.py index f74fa74723..e2b22f6b6c 100644 --- a/src/oci/database_management/models/external_connector_details.py +++ b/src/oci/database_management/models/external_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_database_collection.py b/src/oci/database_management/models/external_database_collection.py index 3dcdea8940..0bf7e2b94a 100644 --- a/src/oci/database_management/models/external_database_collection.py +++ b/src/oci/database_management/models/external_database_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_database_connection_info.py b/src/oci/database_management/models/external_database_connection_info.py index 63146e1f36..704833c5c1 100644 --- a/src/oci/database_management/models/external_database_connection_info.py +++ b/src/oci/database_management/models/external_database_connection_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_database_diagnostics_and_management_feature_details.py b/src/oci/database_management/models/external_database_diagnostics_and_management_feature_details.py index 4f890ec9e0..7d5918a810 100644 --- a/src/oci/database_management/models/external_database_diagnostics_and_management_feature_details.py +++ b/src/oci/database_management/models/external_database_diagnostics_and_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_database_feature_details.py b/src/oci/database_management/models/external_database_feature_details.py index 061f0928ac..52313d571a 100644 --- a/src/oci/database_management/models/external_database_feature_details.py +++ b/src/oci/database_management/models/external_database_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_database_instance.py b/src/oci/database_management/models/external_database_instance.py index 6fed177fa5..68457fcc50 100644 --- a/src/oci/database_management/models/external_database_instance.py +++ b/src/oci/database_management/models/external_database_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_database_lifecycle_management_feature_details.py b/src/oci/database_management/models/external_database_lifecycle_management_feature_details.py index 80c729c7e7..8846220b3d 100644 --- a/src/oci/database_management/models/external_database_lifecycle_management_feature_details.py +++ b/src/oci/database_management/models/external_database_lifecycle_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_database_sql_watch_feature_details.py b/src/oci/database_management/models/external_database_sql_watch_feature_details.py index 53510bd611..68b234d38a 100644 --- a/src/oci/database_management/models/external_database_sql_watch_feature_details.py +++ b/src/oci/database_management/models/external_database_sql_watch_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_database_summary.py b/src/oci/database_management/models/external_database_summary.py index e2e9b3b3d2..66adc7f23b 100644 --- a/src/oci/database_management/models/external_database_summary.py +++ b/src/oci/database_management/models/external_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_database_system_discovery_summary.py b/src/oci/database_management/models/external_database_system_discovery_summary.py index 5f5183712b..33aab20084 100644 --- a/src/oci/database_management/models/external_database_system_discovery_summary.py +++ b/src/oci/database_management/models/external_database_system_discovery_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_home.py b/src/oci/database_management/models/external_db_home.py index 130e0ed9cc..30e9a0a006 100644 --- a/src/oci/database_management/models/external_db_home.py +++ b/src/oci/database_management/models/external_db_home.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_home_collection.py b/src/oci/database_management/models/external_db_home_collection.py index 2deea09c74..f1eebbff1c 100644 --- a/src/oci/database_management/models/external_db_home_collection.py +++ b/src/oci/database_management/models/external_db_home_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_home_summary.py b/src/oci/database_management/models/external_db_home_summary.py index 0a3a7a21b4..13897917dd 100644 --- a/src/oci/database_management/models/external_db_home_summary.py +++ b/src/oci/database_management/models/external_db_home_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_node.py b/src/oci/database_management/models/external_db_node.py index d703b4a56f..8f732398b0 100644 --- a/src/oci/database_management/models/external_db_node.py +++ b/src/oci/database_management/models/external_db_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_node_collection.py b/src/oci/database_management/models/external_db_node_collection.py index d6fc020ed2..f6b1f4b8b7 100644 --- a/src/oci/database_management/models/external_db_node_collection.py +++ b/src/oci/database_management/models/external_db_node_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_node_summary.py b/src/oci/database_management/models/external_db_node_summary.py index 67ffdaeb65..415359f5fb 100644 --- a/src/oci/database_management/models/external_db_node_summary.py +++ b/src/oci/database_management/models/external_db_node_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system.py b/src/oci/database_management/models/external_db_system.py index 06de9e5dd9..e90f687491 100644 --- a/src/oci/database_management/models/external_db_system.py +++ b/src/oci/database_management/models/external_db_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_basic_info.py b/src/oci/database_management/models/external_db_system_basic_info.py index e89078fbdd..f87a694c9e 100644 --- a/src/oci/database_management/models/external_db_system_basic_info.py +++ b/src/oci/database_management/models/external_db_system_basic_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_collection.py b/src/oci/database_management/models/external_db_system_collection.py index 2c80a16fb8..20f9f5a4b5 100644 --- a/src/oci/database_management/models/external_db_system_collection.py +++ b/src/oci/database_management/models/external_db_system_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_connection_info.py b/src/oci/database_management/models/external_db_system_connection_info.py index 13a3fc4782..42ab679033 100644 --- a/src/oci/database_management/models/external_db_system_connection_info.py +++ b/src/oci/database_management/models/external_db_system_connection_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_connector.py b/src/oci/database_management/models/external_db_system_connector.py index 249f8d514f..400e23f4f7 100644 --- a/src/oci/database_management/models/external_db_system_connector.py +++ b/src/oci/database_management/models/external_db_system_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_connector_collection.py b/src/oci/database_management/models/external_db_system_connector_collection.py index 4c869b59d8..44b4b6b894 100644 --- a/src/oci/database_management/models/external_db_system_connector_collection.py +++ b/src/oci/database_management/models/external_db_system_connector_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_connector_summary.py b/src/oci/database_management/models/external_db_system_connector_summary.py index 50bd822a82..c0ad924e59 100644 --- a/src/oci/database_management/models/external_db_system_connector_summary.py +++ b/src/oci/database_management/models/external_db_system_connector_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_database_management_config_details.py b/src/oci/database_management/models/external_db_system_database_management_config_details.py index 361b8bcb1b..58410ca19c 100644 --- a/src/oci/database_management/models/external_db_system_database_management_config_details.py +++ b/src/oci/database_management/models/external_db_system_database_management_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_discovery.py b/src/oci/database_management/models/external_db_system_discovery.py index 42a9a21530..74883a6c4c 100644 --- a/src/oci/database_management/models/external_db_system_discovery.py +++ b/src/oci/database_management/models/external_db_system_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_discovery_collection.py b/src/oci/database_management/models/external_db_system_discovery_collection.py index 5223fab4f8..fe516312b7 100644 --- a/src/oci/database_management/models/external_db_system_discovery_collection.py +++ b/src/oci/database_management/models/external_db_system_discovery_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_discovery_connector.py b/src/oci/database_management/models/external_db_system_discovery_connector.py index 3f39a86f34..9defca29a6 100644 --- a/src/oci/database_management/models/external_db_system_discovery_connector.py +++ b/src/oci/database_management/models/external_db_system_discovery_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_discovery_macs_connector.py b/src/oci/database_management/models/external_db_system_discovery_macs_connector.py index 525242d6ae..935907eb59 100644 --- a/src/oci/database_management/models/external_db_system_discovery_macs_connector.py +++ b/src/oci/database_management/models/external_db_system_discovery_macs_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_discovery_summary.py b/src/oci/database_management/models/external_db_system_discovery_summary.py index 2f4c967b6f..e225880cc9 100644 --- a/src/oci/database_management/models/external_db_system_discovery_summary.py +++ b/src/oci/database_management/models/external_db_system_discovery_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_macs_connector.py b/src/oci/database_management/models/external_db_system_macs_connector.py index 5c6749315b..247b297900 100644 --- a/src/oci/database_management/models/external_db_system_macs_connector.py +++ b/src/oci/database_management/models/external_db_system_macs_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_stack_monitoring_config_details.py b/src/oci/database_management/models/external_db_system_stack_monitoring_config_details.py index 4aad353390..b1220cc06e 100644 --- a/src/oci/database_management/models/external_db_system_stack_monitoring_config_details.py +++ b/src/oci/database_management/models/external_db_system_stack_monitoring_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_db_system_summary.py b/src/oci/database_management/models/external_db_system_summary.py index 1242255223..4ccc67baf8 100644 --- a/src/oci/database_management/models/external_db_system_summary.py +++ b/src/oci/database_management/models/external_db_system_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_database_system_summary.py b/src/oci/database_management/models/external_exadata_database_system_summary.py index 056e5198f3..68b59f5a18 100644 --- a/src/oci/database_management/models/external_exadata_database_system_summary.py +++ b/src/oci/database_management/models/external_exadata_database_system_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_infra_basic_info.py b/src/oci/database_management/models/external_exadata_infra_basic_info.py index 49ca27713f..01ea1ddfd9 100644 --- a/src/oci/database_management/models/external_exadata_infra_basic_info.py +++ b/src/oci/database_management/models/external_exadata_infra_basic_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_infrastructure.py b/src/oci/database_management/models/external_exadata_infrastructure.py index 0a5a35b18c..a8dd5cdad6 100644 --- a/src/oci/database_management/models/external_exadata_infrastructure.py +++ b/src/oci/database_management/models/external_exadata_infrastructure.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_infrastructure_collection.py b/src/oci/database_management/models/external_exadata_infrastructure_collection.py index 81447e8213..af5026dcad 100644 --- a/src/oci/database_management/models/external_exadata_infrastructure_collection.py +++ b/src/oci/database_management/models/external_exadata_infrastructure_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_infrastructure_discovery.py b/src/oci/database_management/models/external_exadata_infrastructure_discovery.py index 5e07a4c8c2..ac86732f49 100644 --- a/src/oci/database_management/models/external_exadata_infrastructure_discovery.py +++ b/src/oci/database_management/models/external_exadata_infrastructure_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_infrastructure_discovery_summary.py b/src/oci/database_management/models/external_exadata_infrastructure_discovery_summary.py index 986f0ffe5e..8c85e9d72a 100644 --- a/src/oci/database_management/models/external_exadata_infrastructure_discovery_summary.py +++ b/src/oci/database_management/models/external_exadata_infrastructure_discovery_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_infrastructure_summary.py b/src/oci/database_management/models/external_exadata_infrastructure_summary.py index 5202637b9f..f6f33c6b4b 100644 --- a/src/oci/database_management/models/external_exadata_infrastructure_summary.py +++ b/src/oci/database_management/models/external_exadata_infrastructure_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_storage_connector.py b/src/oci/database_management/models/external_exadata_storage_connector.py index 91e6e833ea..27c80a95d3 100644 --- a/src/oci/database_management/models/external_exadata_storage_connector.py +++ b/src/oci/database_management/models/external_exadata_storage_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_storage_connector_collection.py b/src/oci/database_management/models/external_exadata_storage_connector_collection.py index 46ad26609a..b0f5636e9e 100644 --- a/src/oci/database_management/models/external_exadata_storage_connector_collection.py +++ b/src/oci/database_management/models/external_exadata_storage_connector_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_storage_connector_status.py b/src/oci/database_management/models/external_exadata_storage_connector_status.py index 7175cc6aa7..2de8a7060d 100644 --- a/src/oci/database_management/models/external_exadata_storage_connector_status.py +++ b/src/oci/database_management/models/external_exadata_storage_connector_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_storage_connector_summary.py b/src/oci/database_management/models/external_exadata_storage_connector_summary.py index 0c214c139b..13ce46bbab 100644 --- a/src/oci/database_management/models/external_exadata_storage_connector_summary.py +++ b/src/oci/database_management/models/external_exadata_storage_connector_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_storage_grid.py b/src/oci/database_management/models/external_exadata_storage_grid.py index 5ee76762a5..65d79a79bc 100644 --- a/src/oci/database_management/models/external_exadata_storage_grid.py +++ b/src/oci/database_management/models/external_exadata_storage_grid.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_storage_grid_summary.py b/src/oci/database_management/models/external_exadata_storage_grid_summary.py index 5a64961075..d03db53ab6 100644 --- a/src/oci/database_management/models/external_exadata_storage_grid_summary.py +++ b/src/oci/database_management/models/external_exadata_storage_grid_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_storage_server.py b/src/oci/database_management/models/external_exadata_storage_server.py index 0e14ce6c1b..92f333dba8 100644 --- a/src/oci/database_management/models/external_exadata_storage_server.py +++ b/src/oci/database_management/models/external_exadata_storage_server.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_storage_server_collection.py b/src/oci/database_management/models/external_exadata_storage_server_collection.py index b3d4dbf226..2d55ac6e49 100644 --- a/src/oci/database_management/models/external_exadata_storage_server_collection.py +++ b/src/oci/database_management/models/external_exadata_storage_server_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_exadata_storage_server_summary.py b/src/oci/database_management/models/external_exadata_storage_server_summary.py index f8ee68fd51..ce6c3a1c13 100644 --- a/src/oci/database_management/models/external_exadata_storage_server_summary.py +++ b/src/oci/database_management/models/external_exadata_storage_server_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener.py b/src/oci/database_management/models/external_listener.py index 5af5530e6c..eb11260ead 100644 --- a/src/oci/database_management/models/external_listener.py +++ b/src/oci/database_management/models/external_listener.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener_collection.py b/src/oci/database_management/models/external_listener_collection.py index bc79f96a7e..43a28b891c 100644 --- a/src/oci/database_management/models/external_listener_collection.py +++ b/src/oci/database_management/models/external_listener_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener_endpoint.py b/src/oci/database_management/models/external_listener_endpoint.py index b52c851ce3..6f5d9c0905 100644 --- a/src/oci/database_management/models/external_listener_endpoint.py +++ b/src/oci/database_management/models/external_listener_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener_ipc_endpoint.py b/src/oci/database_management/models/external_listener_ipc_endpoint.py index 02491c795b..1f0cc5fe88 100644 --- a/src/oci/database_management/models/external_listener_ipc_endpoint.py +++ b/src/oci/database_management/models/external_listener_ipc_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener_service_collection.py b/src/oci/database_management/models/external_listener_service_collection.py index 0251166216..5cfb9b1288 100644 --- a/src/oci/database_management/models/external_listener_service_collection.py +++ b/src/oci/database_management/models/external_listener_service_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener_service_summary.py b/src/oci/database_management/models/external_listener_service_summary.py index e521f9cb75..acc0751c3a 100644 --- a/src/oci/database_management/models/external_listener_service_summary.py +++ b/src/oci/database_management/models/external_listener_service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener_serviced_database.py b/src/oci/database_management/models/external_listener_serviced_database.py index 61db6b7b49..bcaef12a4e 100644 --- a/src/oci/database_management/models/external_listener_serviced_database.py +++ b/src/oci/database_management/models/external_listener_serviced_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener_summary.py b/src/oci/database_management/models/external_listener_summary.py index 58b684c9c7..6641c520de 100644 --- a/src/oci/database_management/models/external_listener_summary.py +++ b/src/oci/database_management/models/external_listener_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener_tcp_endpoint.py b/src/oci/database_management/models/external_listener_tcp_endpoint.py index 41d07d76da..3cb926e5ce 100644 --- a/src/oci/database_management/models/external_listener_tcp_endpoint.py +++ b/src/oci/database_management/models/external_listener_tcp_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_listener_tcps_endpoint.py b/src/oci/database_management/models/external_listener_tcps_endpoint.py index 89f3bdb86e..1933cf37c8 100644 --- a/src/oci/database_management/models/external_listener_tcps_endpoint.py +++ b/src/oci/database_management/models/external_listener_tcps_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_pluggable_database_diagnostics_and_management_feature_details.py b/src/oci/database_management/models/external_pluggable_database_diagnostics_and_management_feature_details.py index a87ba2914a..c941c06287 100644 --- a/src/oci/database_management/models/external_pluggable_database_diagnostics_and_management_feature_details.py +++ b/src/oci/database_management/models/external_pluggable_database_diagnostics_and_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_pluggable_database_feature_details.py b/src/oci/database_management/models/external_pluggable_database_feature_details.py index 42f326a537..e2ba7ca16a 100644 --- a/src/oci/database_management/models/external_pluggable_database_feature_details.py +++ b/src/oci/database_management/models/external_pluggable_database_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_pluggable_database_lifecycle_management_feature_details.py b/src/oci/database_management/models/external_pluggable_database_lifecycle_management_feature_details.py index 81e194512b..4edb502683 100644 --- a/src/oci/database_management/models/external_pluggable_database_lifecycle_management_feature_details.py +++ b/src/oci/database_management/models/external_pluggable_database_lifecycle_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_pluggable_database_sql_watch_feature_details.py b/src/oci/database_management/models/external_pluggable_database_sql_watch_feature_details.py index 1e0e136a4e..530d469438 100644 --- a/src/oci/database_management/models/external_pluggable_database_sql_watch_feature_details.py +++ b/src/oci/database_management/models/external_pluggable_database_sql_watch_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_serviced_asm.py b/src/oci/database_management/models/external_serviced_asm.py index 6aafb1b7b4..8657402db6 100644 --- a/src/oci/database_management/models/external_serviced_asm.py +++ b/src/oci/database_management/models/external_serviced_asm.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_serviced_database.py b/src/oci/database_management/models/external_serviced_database.py index 464e8f8b1c..cf91e579f4 100644 --- a/src/oci/database_management/models/external_serviced_database.py +++ b/src/oci/database_management/models/external_serviced_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_storage_grid_discovery_summary.py b/src/oci/database_management/models/external_storage_grid_discovery_summary.py index 71aeff7bdf..41b470a7c6 100644 --- a/src/oci/database_management/models/external_storage_grid_discovery_summary.py +++ b/src/oci/database_management/models/external_storage_grid_discovery_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/external_storage_server_discovery_summary.py b/src/oci/database_management/models/external_storage_server_discovery_summary.py index 6890ead714..27e1067366 100644 --- a/src/oci/database_management/models/external_storage_server_discovery_summary.py +++ b/src/oci/database_management/models/external_storage_server_discovery_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 0379c2cb38..e21ef16400 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/fetch_sql_tuning_set_details.py b/src/oci/database_management/models/fetch_sql_tuning_set_details.py index 90f9fa02a7..fcf9b11081 100644 --- a/src/oci/database_management/models/fetch_sql_tuning_set_details.py +++ b/src/oci/database_management/models/fetch_sql_tuning_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/finding_schema_or_operation.py b/src/oci/database_management/models/finding_schema_or_operation.py index 2b3e960889..d9b30d929c 100644 --- a/src/oci/database_management/models/finding_schema_or_operation.py +++ b/src/oci/database_management/models/finding_schema_or_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/fleet_metric_definition.py b/src/oci/database_management/models/fleet_metric_definition.py index cd4fe23bfc..535556ed93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 c7820d5314..79f37c5265 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 204d8b6e1d..dc288ad55a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/fleet_summary.py b/src/oci/database_management/models/fleet_summary.py index d988b0b0b8..84bfca1859 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/heat_wave_cluster_usage_metrics.py b/src/oci/database_management/models/heat_wave_cluster_usage_metrics.py index 6be0f63298..d5c8e68867 100644 --- a/src/oci/database_management/models/heat_wave_cluster_usage_metrics.py +++ b/src/oci/database_management/models/heat_wave_cluster_usage_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/heat_wave_fleet_by_category.py b/src/oci/database_management/models/heat_wave_fleet_by_category.py index 7b36ba9411..417a13adbe 100644 --- a/src/oci/database_management/models/heat_wave_fleet_by_category.py +++ b/src/oci/database_management/models/heat_wave_fleet_by_category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/heat_wave_fleet_metric_definition.py b/src/oci/database_management/models/heat_wave_fleet_metric_definition.py index 2d68adf24d..e8cb098cde 100644 --- a/src/oci/database_management/models/heat_wave_fleet_metric_definition.py +++ b/src/oci/database_management/models/heat_wave_fleet_metric_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/heat_wave_fleet_metric_summary_definition.py b/src/oci/database_management/models/heat_wave_fleet_metric_summary_definition.py index c18c8a6ab9..95a43a7f6b 100644 --- a/src/oci/database_management/models/heat_wave_fleet_metric_summary_definition.py +++ b/src/oci/database_management/models/heat_wave_fleet_metric_summary_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/heat_wave_fleet_metrics.py b/src/oci/database_management/models/heat_wave_fleet_metrics.py index e018f2962a..833815e89d 100644 --- a/src/oci/database_management/models/heat_wave_fleet_metrics.py +++ b/src/oci/database_management/models/heat_wave_fleet_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/heat_wave_fleet_summary.py b/src/oci/database_management/models/heat_wave_fleet_summary.py index eed615352e..8e40b6dab6 100644 --- a/src/oci/database_management/models/heat_wave_fleet_summary.py +++ b/src/oci/database_management/models/heat_wave_fleet_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/heat_wave_node.py b/src/oci/database_management/models/heat_wave_node.py index 9c840e695f..6729962ca3 100644 --- a/src/oci/database_management/models/heat_wave_node.py +++ b/src/oci/database_management/models/heat_wave_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/historic_addm_result.py b/src/oci/database_management/models/historic_addm_result.py index 33fe7f990e..adf58c6260 100644 --- a/src/oci/database_management/models/historic_addm_result.py +++ b/src/oci/database_management/models/historic_addm_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/implement_optimizer_statistics_advisor_recommendations_details.py b/src/oci/database_management/models/implement_optimizer_statistics_advisor_recommendations_details.py index 7d34e6f9ac..7a8e6261db 100644 --- a/src/oci/database_management/models/implement_optimizer_statistics_advisor_recommendations_details.py +++ b/src/oci/database_management/models/implement_optimizer_statistics_advisor_recommendations_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/implement_optimizer_statistics_advisor_recommendations_job.py b/src/oci/database_management/models/implement_optimizer_statistics_advisor_recommendations_job.py index d789c943aa..5e69e0297d 100644 --- a/src/oci/database_management/models/implement_optimizer_statistics_advisor_recommendations_job.py +++ b/src/oci/database_management/models/implement_optimizer_statistics_advisor_recommendations_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/instance_details.py b/src/oci/database_management/models/instance_details.py index 06e031bd98..42b7a6bc5f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/iorm_plan.py b/src/oci/database_management/models/iorm_plan.py index d0eae3ea60..f18527ad60 100644 --- a/src/oci/database_management/models/iorm_plan.py +++ b/src/oci/database_management/models/iorm_plan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job.py b/src/oci/database_management/models/job.py index 53b710ac60..6e5cc47a39 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_collection.py b/src/oci/database_management/models/job_collection.py index 6210d2094c..ed4cb44dcb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_database.py b/src/oci/database_management/models/job_database.py index 86608538b1..f179a11e81 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_execution.py b/src/oci/database_management/models/job_execution.py index 673ab8295e..51ec8cca01 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_execution_collection.py b/src/oci/database_management/models/job_execution_collection.py index 0d750b67a6..4d08843446 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 ac4f285b28..470068e07e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 e7fa08c006..29e0e7024e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_execution_summary.py b/src/oci/database_management/models/job_execution_summary.py index af136f57e3..e478ae3e27 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 a29025e42c..87faf69a25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 d32681c698..dafa7b1df7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_in_bind.py b/src/oci/database_management/models/job_in_bind.py index dca64ab3cd..01d065a908 100644 --- a/src/oci/database_management/models/job_in_bind.py +++ b/src/oci/database_management/models/job_in_bind.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_in_binds_details.py b/src/oci/database_management/models/job_in_binds_details.py index de67a4c009..c6a8ff0291 100644 --- a/src/oci/database_management/models/job_in_binds_details.py +++ b/src/oci/database_management/models/job_in_binds_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_out_bind.py b/src/oci/database_management/models/job_out_bind.py index 2412269e9a..88c38d4492 100644 --- a/src/oci/database_management/models/job_out_bind.py +++ b/src/oci/database_management/models/job_out_bind.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_out_binds_details.py b/src/oci/database_management/models/job_out_binds_details.py index 058c41a864..2a7d0fc395 100644 --- a/src/oci/database_management/models/job_out_binds_details.py +++ b/src/oci/database_management/models/job_out_binds_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_run.py b/src/oci/database_management/models/job_run.py index 7ed002c692..53971cbcd6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_run_collection.py b/src/oci/database_management/models/job_run_collection.py index 5d6586998f..8205b08812 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_run_summary.py b/src/oci/database_management/models/job_run_summary.py index 0db7149892..afbcb1e2d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_schedule_details.py b/src/oci/database_management/models/job_schedule_details.py index ecd3c88460..b46e7f1ea4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/job_summary.py b/src/oci/database_management/models/job_summary.py index dafac98cbc..709349832a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/load_sql_plan_baselines_from_awr_details.py b/src/oci/database_management/models/load_sql_plan_baselines_from_awr_details.py index 1f2fc459ba..c748de76da 100644 --- a/src/oci/database_management/models/load_sql_plan_baselines_from_awr_details.py +++ b/src/oci/database_management/models/load_sql_plan_baselines_from_awr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/load_sql_plan_baselines_from_cursor_cache_details.py b/src/oci/database_management/models/load_sql_plan_baselines_from_cursor_cache_details.py index b50093ab48..5caad23b95 100644 --- a/src/oci/database_management/models/load_sql_plan_baselines_from_cursor_cache_details.py +++ b/src/oci/database_management/models/load_sql_plan_baselines_from_cursor_cache_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/load_sql_tuning_set_details.py b/src/oci/database_management/models/load_sql_tuning_set_details.py index 165e94255c..3511f580f1 100644 --- a/src/oci/database_management/models/load_sql_tuning_set_details.py +++ b/src/oci/database_management/models/load_sql_tuning_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/macs_connector_details.py b/src/oci/database_management/models/macs_connector_details.py index 4397643099..8713f1bf42 100644 --- a/src/oci/database_management/models/macs_connector_details.py +++ b/src/oci/database_management/models/macs_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_database.py b/src/oci/database_management/models/managed_database.py index 34e21c57ba..30fac588d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_database_collection.py b/src/oci/database_management/models/managed_database_collection.py index 4a18e97f54..1885724bfb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_database_credential.py b/src/oci/database_management/models/managed_database_credential.py index 03aa7cca06..80c2620329 100644 --- a/src/oci/database_management/models/managed_database_credential.py +++ b/src/oci/database_management/models/managed_database_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_database_group.py b/src/oci/database_management/models/managed_database_group.py index 0033842c71..b49262b992 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 cf6f0515de..33aa9366ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 6ed9dad95a..1ba1486ebc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_database_password_credential.py b/src/oci/database_management/models/managed_database_password_credential.py index 3687db5f56..f6038dd6e7 100644 --- a/src/oci/database_management/models/managed_database_password_credential.py +++ b/src/oci/database_management/models/managed_database_password_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_database_secret_credential.py b/src/oci/database_management/models/managed_database_secret_credential.py index 940e872864..c847938a48 100644 --- a/src/oci/database_management/models/managed_database_secret_credential.py +++ b/src/oci/database_management/models/managed_database_secret_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_database_summary.py b/src/oci/database_management/models/managed_database_summary.py index caef96dc06..4b75b03f05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_my_sql_database.py b/src/oci/database_management/models/managed_my_sql_database.py index ceff6249b8..3b26f1d463 100644 --- a/src/oci/database_management/models/managed_my_sql_database.py +++ b/src/oci/database_management/models/managed_my_sql_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_my_sql_database_collection.py b/src/oci/database_management/models/managed_my_sql_database_collection.py index 5adfc5160b..29fbfd1e50 100644 --- a/src/oci/database_management/models/managed_my_sql_database_collection.py +++ b/src/oci/database_management/models/managed_my_sql_database_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/managed_my_sql_database_summary.py b/src/oci/database_management/models/managed_my_sql_database_summary.py index f08fc8a756..b46b775c25 100644 --- a/src/oci/database_management/models/managed_my_sql_database_summary.py +++ b/src/oci/database_management/models/managed_my_sql_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/memory_aggregate_metrics.py b/src/oci/database_management/models/memory_aggregate_metrics.py index 97b40a2547..103b8d3ffd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/metric_data_point.py b/src/oci/database_management/models/metric_data_point.py index 7024f0fd69..db9ea41cb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/metric_dimension_definition.py b/src/oci/database_management/models/metric_dimension_definition.py index 03f4eff58c..6bf4143e2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/metric_statistics_definition.py b/src/oci/database_management/models/metric_statistics_definition.py index df6371cd53..4cea45e005 100644 --- a/src/oci/database_management/models/metric_statistics_definition.py +++ b/src/oci/database_management/models/metric_statistics_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/metrics_aggregation_range.py b/src/oci/database_management/models/metrics_aggregation_range.py index aff119ac1c..e2f10615ab 100644 --- a/src/oci/database_management/models/metrics_aggregation_range.py +++ b/src/oci/database_management/models/metrics_aggregation_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/metrics_aggregation_range_collection.py b/src/oci/database_management/models/metrics_aggregation_range_collection.py index f4d09c27d0..2899ded2c4 100644 --- a/src/oci/database_management/models/metrics_aggregation_range_collection.py +++ b/src/oci/database_management/models/metrics_aggregation_range_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/modify_autonomous_database_management_feature_details.py b/src/oci/database_management/models/modify_autonomous_database_management_feature_details.py index 3dbf419d1d..ee42b446a3 100644 --- a/src/oci/database_management/models/modify_autonomous_database_management_feature_details.py +++ b/src/oci/database_management/models/modify_autonomous_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/modify_database_management_feature_details.py b/src/oci/database_management/models/modify_database_management_feature_details.py index 46e2847f89..82f8e6e4ca 100644 --- a/src/oci/database_management/models/modify_database_management_feature_details.py +++ b/src/oci/database_management/models/modify_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/modify_pluggable_database_management_feature_details.py b/src/oci/database_management/models/modify_pluggable_database_management_feature_details.py index c531c25427..dc742721e7 100644 --- a/src/oci/database_management/models/modify_pluggable_database_management_feature_details.py +++ b/src/oci/database_management/models/modify_pluggable_database_management_feature_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/modify_snapshot_settings_details.py b/src/oci/database_management/models/modify_snapshot_settings_details.py index 08f7e975b3..2f12fdaa09 100644 --- a/src/oci/database_management/models/modify_snapshot_settings_details.py +++ b/src/oci/database_management/models/modify_snapshot_settings_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_configuration_data_collection.py b/src/oci/database_management/models/my_sql_configuration_data_collection.py index 22b98fb451..cfe231d97e 100644 --- a/src/oci/database_management/models/my_sql_configuration_data_collection.py +++ b/src/oci/database_management/models/my_sql_configuration_data_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_configuration_data_summary.py b/src/oci/database_management/models/my_sql_configuration_data_summary.py index dbb0625620..87dea0441e 100644 --- a/src/oci/database_management/models/my_sql_configuration_data_summary.py +++ b/src/oci/database_management/models/my_sql_configuration_data_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_data_collection.py b/src/oci/database_management/models/my_sql_data_collection.py index 2c4b0cbdcd..6e83e97e99 100644 --- a/src/oci/database_management/models/my_sql_data_collection.py +++ b/src/oci/database_management/models/my_sql_data_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_data_summary.py b/src/oci/database_management/models/my_sql_data_summary.py index efad19203f..7865b31f33 100644 --- a/src/oci/database_management/models/my_sql_data_summary.py +++ b/src/oci/database_management/models/my_sql_data_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_database_usage_metrics.py b/src/oci/database_management/models/my_sql_database_usage_metrics.py index f7d3e9e0bd..990bc3c4c4 100644 --- a/src/oci/database_management/models/my_sql_database_usage_metrics.py +++ b/src/oci/database_management/models/my_sql_database_usage_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_fleet_by_category.py b/src/oci/database_management/models/my_sql_fleet_by_category.py index ef66aed44d..915cce9ddd 100644 --- a/src/oci/database_management/models/my_sql_fleet_by_category.py +++ b/src/oci/database_management/models/my_sql_fleet_by_category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_fleet_metric_definition.py b/src/oci/database_management/models/my_sql_fleet_metric_definition.py index bc0531be57..d4c523bb94 100644 --- a/src/oci/database_management/models/my_sql_fleet_metric_definition.py +++ b/src/oci/database_management/models/my_sql_fleet_metric_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_fleet_metric_summary_definition.py b/src/oci/database_management/models/my_sql_fleet_metric_summary_definition.py index 4b52b7e4d1..c59f42584c 100644 --- a/src/oci/database_management/models/my_sql_fleet_metric_summary_definition.py +++ b/src/oci/database_management/models/my_sql_fleet_metric_summary_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_fleet_metrics.py b/src/oci/database_management/models/my_sql_fleet_metrics.py index 717d711111..33cbb22ff5 100644 --- a/src/oci/database_management/models/my_sql_fleet_metrics.py +++ b/src/oci/database_management/models/my_sql_fleet_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/my_sql_fleet_summary.py b/src/oci/database_management/models/my_sql_fleet_summary.py index 5e468c4588..25df42b5d4 100644 --- a/src/oci/database_management/models/my_sql_fleet_summary.py +++ b/src/oci/database_management/models/my_sql_fleet_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/named_credential.py b/src/oci/database_management/models/named_credential.py index bf4a17a42c..21e8f5b679 100644 --- a/src/oci/database_management/models/named_credential.py +++ b/src/oci/database_management/models/named_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/named_credential_collection.py b/src/oci/database_management/models/named_credential_collection.py index 242f08322c..3217adeb0e 100644 --- a/src/oci/database_management/models/named_credential_collection.py +++ b/src/oci/database_management/models/named_credential_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/named_credential_content.py b/src/oci/database_management/models/named_credential_content.py index 2fc4bb76f0..6dd281fa47 100644 --- a/src/oci/database_management/models/named_credential_content.py +++ b/src/oci/database_management/models/named_credential_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/named_credential_summary.py b/src/oci/database_management/models/named_credential_summary.py index 8145d8de15..17484b0a0d 100644 --- a/src/oci/database_management/models/named_credential_summary.py +++ b/src/oci/database_management/models/named_credential_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/named_preferred_credential.py b/src/oci/database_management/models/named_preferred_credential.py index b64a6e39ae..654757b6f9 100644 --- a/src/oci/database_management/models/named_preferred_credential.py +++ b/src/oci/database_management/models/named_preferred_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/object_privilege_collection.py b/src/oci/database_management/models/object_privilege_collection.py index 0d40373e52..87fd24ba08 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/object_privilege_summary.py b/src/oci/database_management/models/object_privilege_summary.py index 7882984eb7..abef22bea3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 d248c0c79c..b914c9167c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 7343d2d775..c767a60ade 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/open_alert_history.py b/src/oci/database_management/models/open_alert_history.py index e61155f515..645fa58bae 100644 --- a/src/oci/database_management/models/open_alert_history.py +++ b/src/oci/database_management/models/open_alert_history.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/open_alert_summary.py b/src/oci/database_management/models/open_alert_summary.py index ed5ee677cc..0176bb225c 100644 --- a/src/oci/database_management/models/open_alert_summary.py +++ b/src/oci/database_management/models/open_alert_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_database.py b/src/oci/database_management/models/optimizer_database.py index 9c1d7bef28..f2631f9184 100644 --- a/src/oci/database_management/models/optimizer_database.py +++ b/src/oci/database_management/models/optimizer_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_advisor_execution.py b/src/oci/database_management/models/optimizer_statistics_advisor_execution.py index 8c77c4944d..f677d1208c 100644 --- a/src/oci/database_management/models/optimizer_statistics_advisor_execution.py +++ b/src/oci/database_management/models/optimizer_statistics_advisor_execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_advisor_execution_report.py b/src/oci/database_management/models/optimizer_statistics_advisor_execution_report.py index 21bedcb9d2..c3624d7384 100644 --- a/src/oci/database_management/models/optimizer_statistics_advisor_execution_report.py +++ b/src/oci/database_management/models/optimizer_statistics_advisor_execution_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_advisor_execution_script.py b/src/oci/database_management/models/optimizer_statistics_advisor_execution_script.py index 0226ae3bb1..0248c916d7 100644 --- a/src/oci/database_management/models/optimizer_statistics_advisor_execution_script.py +++ b/src/oci/database_management/models/optimizer_statistics_advisor_execution_script.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_advisor_execution_summary.py b/src/oci/database_management/models/optimizer_statistics_advisor_execution_summary.py index c09b5aa183..d9f9480063 100644 --- a/src/oci/database_management/models/optimizer_statistics_advisor_execution_summary.py +++ b/src/oci/database_management/models/optimizer_statistics_advisor_execution_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_advisor_executions_collection.py b/src/oci/database_management/models/optimizer_statistics_advisor_executions_collection.py index dda47030b4..3a51c485e9 100644 --- a/src/oci/database_management/models/optimizer_statistics_advisor_executions_collection.py +++ b/src/oci/database_management/models/optimizer_statistics_advisor_executions_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_collection_aggregation_summary.py b/src/oci/database_management/models/optimizer_statistics_collection_aggregation_summary.py index 0a5d66823c..2eb0e374f8 100644 --- a/src/oci/database_management/models/optimizer_statistics_collection_aggregation_summary.py +++ b/src/oci/database_management/models/optimizer_statistics_collection_aggregation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_collection_aggregations_collection.py b/src/oci/database_management/models/optimizer_statistics_collection_aggregations_collection.py index 10cb9d018c..d80808aa0d 100644 --- a/src/oci/database_management/models/optimizer_statistics_collection_aggregations_collection.py +++ b/src/oci/database_management/models/optimizer_statistics_collection_aggregations_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_collection_operation.py b/src/oci/database_management/models/optimizer_statistics_collection_operation.py index f37f71bbc4..efde43ce6b 100644 --- a/src/oci/database_management/models/optimizer_statistics_collection_operation.py +++ b/src/oci/database_management/models/optimizer_statistics_collection_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_collection_operation_summary.py b/src/oci/database_management/models/optimizer_statistics_collection_operation_summary.py index 6b9d49ee5e..aa382c549c 100644 --- a/src/oci/database_management/models/optimizer_statistics_collection_operation_summary.py +++ b/src/oci/database_management/models/optimizer_statistics_collection_operation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_collection_operations_collection.py b/src/oci/database_management/models/optimizer_statistics_collection_operations_collection.py index 58feccb3de..6341be8dfe 100644 --- a/src/oci/database_management/models/optimizer_statistics_collection_operations_collection.py +++ b/src/oci/database_management/models/optimizer_statistics_collection_operations_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/optimizer_statistics_operation_task.py b/src/oci/database_management/models/optimizer_statistics_operation_task.py index 3573c2625f..55a2c39c3f 100644 --- a/src/oci/database_management/models/optimizer_statistics_operation_task.py +++ b/src/oci/database_management/models/optimizer_statistics_operation_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/parent_group.py b/src/oci/database_management/models/parent_group.py index 1b5849e789..d75713615f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/patch_external_db_system_discovery_details.py b/src/oci/database_management/models/patch_external_db_system_discovery_details.py index e9dcc972b5..3c4ddef1ad 100644 --- a/src/oci/database_management/models/patch_external_db_system_discovery_details.py +++ b/src/oci/database_management/models/patch_external_db_system_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/patch_instruction.py b/src/oci/database_management/models/patch_instruction.py index 58aca91d21..c1e57a20d8 100644 --- a/src/oci/database_management/models/patch_instruction.py +++ b/src/oci/database_management/models/patch_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/patch_merge_instruction.py b/src/oci/database_management/models/patch_merge_instruction.py index 2ab94f61cf..077b4e69be 100644 --- a/src/oci/database_management/models/patch_merge_instruction.py +++ b/src/oci/database_management/models/patch_merge_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/pdb_metrics.py b/src/oci/database_management/models/pdb_metrics.py index 40f3054421..fad37b8e72 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/pdb_status_details.py b/src/oci/database_management/models/pdb_status_details.py index 13e88923e9..0020cfb567 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/peer_database_metrics.py b/src/oci/database_management/models/peer_database_metrics.py index 3a1b7547da..fd1bbba8df 100644 --- a/src/oci/database_management/models/peer_database_metrics.py +++ b/src/oci/database_management/models/peer_database_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/performance_metrics.py b/src/oci/database_management/models/performance_metrics.py index 749865a774..af5a045cd0 100644 --- a/src/oci/database_management/models/performance_metrics.py +++ b/src/oci/database_management/models/performance_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/performance_metrics_data.py b/src/oci/database_management/models/performance_metrics_data.py index 5b290bc195..a9dd4d843f 100644 --- a/src/oci/database_management/models/performance_metrics_data.py +++ b/src/oci/database_management/models/performance_metrics_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/preferred_credential.py b/src/oci/database_management/models/preferred_credential.py index 0fffad4325..8f113e5c6a 100644 --- a/src/oci/database_management/models/preferred_credential.py +++ b/src/oci/database_management/models/preferred_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/preferred_credential_collection.py b/src/oci/database_management/models/preferred_credential_collection.py index f058136481..eb02849129 100644 --- a/src/oci/database_management/models/preferred_credential_collection.py +++ b/src/oci/database_management/models/preferred_credential_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/preferred_credential_summary.py b/src/oci/database_management/models/preferred_credential_summary.py index 204d0ddc5a..5905327945 100644 --- a/src/oci/database_management/models/preferred_credential_summary.py +++ b/src/oci/database_management/models/preferred_credential_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/private_end_point_connector_details.py b/src/oci/database_management/models/private_end_point_connector_details.py index 92a48dd644..1fec130dfa 100644 --- a/src/oci/database_management/models/private_end_point_connector_details.py +++ b/src/oci/database_management/models/private_end_point_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 842c7d1cf5..155cf8fa8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 7ec1623d0b..d83d14658b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/proxy_user_collection.py b/src/oci/database_management/models/proxy_user_collection.py index a43a79a87d..67cf77c1a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/proxy_user_summary.py b/src/oci/database_management/models/proxy_user_summary.py index 93334540db..e77253fb95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/recommendation.py b/src/oci/database_management/models/recommendation.py index cfc582f534..cfe0521e6d 100644 --- a/src/oci/database_management/models/recommendation.py +++ b/src/oci/database_management/models/recommendation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/recommendation_example.py b/src/oci/database_management/models/recommendation_example.py index a6358d8877..709b9b56b7 100644 --- a/src/oci/database_management/models/recommendation_example.py +++ b/src/oci/database_management/models/recommendation_example.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/recommendation_example_line.py b/src/oci/database_management/models/recommendation_example_line.py index 1a26c039e5..7261eece7f 100644 --- a/src/oci/database_management/models/recommendation_example_line.py +++ b/src/oci/database_management/models/recommendation_example_line.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/recommendation_rationale.py b/src/oci/database_management/models/recommendation_rationale.py index bfb753fa73..a30020cbbe 100644 --- a/src/oci/database_management/models/recommendation_rationale.py +++ b/src/oci/database_management/models/recommendation_rationale.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/remove_data_file_details.py b/src/oci/database_management/models/remove_data_file_details.py index fd4fded9ad..3991864a28 100644 --- a/src/oci/database_management/models/remove_data_file_details.py +++ b/src/oci/database_management/models/remove_data_file_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 0e3b182fe3..7218536a85 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 aeea61a3a1..bc23413282 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/resize_data_file_details.py b/src/oci/database_management/models/resize_data_file_details.py index ce059aa2f1..070498e5a7 100644 --- a/src/oci/database_management/models/resize_data_file_details.py +++ b/src/oci/database_management/models/resize_data_file_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/rest_credential.py b/src/oci/database_management/models/rest_credential.py index 76e43450fd..ff35b9dfc8 100644 --- a/src/oci/database_management/models/rest_credential.py +++ b/src/oci/database_management/models/rest_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/role_collection.py b/src/oci/database_management/models/role_collection.py index a50b634e13..f69ba0b19f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/role_summary.py b/src/oci/database_management/models/role_summary.py index e4f4bdd0cf..daa247a5fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/rule_finding.py b/src/oci/database_management/models/rule_finding.py index bad9955505..874d650763 100644 --- a/src/oci/database_management/models/rule_finding.py +++ b/src/oci/database_management/models/rule_finding.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/run_historic_addm_details.py b/src/oci/database_management/models/run_historic_addm_details.py index 46b859791b..d05a8ca2e7 100644 --- a/src/oci/database_management/models/run_historic_addm_details.py +++ b/src/oci/database_management/models/run_historic_addm_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/save_sql_tuning_set_as_details.py b/src/oci/database_management/models/save_sql_tuning_set_as_details.py index 40bea298b9..48b5127867 100644 --- a/src/oci/database_management/models/save_sql_tuning_set_as_details.py +++ b/src/oci/database_management/models/save_sql_tuning_set_as_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/schema_definition.py b/src/oci/database_management/models/schema_definition.py index af5f9e83d6..237aa785dd 100644 --- a/src/oci/database_management/models/schema_definition.py +++ b/src/oci/database_management/models/schema_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/snapshot_details.py b/src/oci/database_management/models/snapshot_details.py index 4f5093f1e4..145a12bd67 100644 --- a/src/oci/database_management/models/snapshot_details.py +++ b/src/oci/database_management/models/snapshot_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/spm_evolve_task_parameters.py b/src/oci/database_management/models/spm_evolve_task_parameters.py index f37882e83f..ccd3c99183 100644 --- a/src/oci/database_management/models/spm_evolve_task_parameters.py +++ b/src/oci/database_management/models/spm_evolve_task_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_cpu_activity.py b/src/oci/database_management/models/sql_cpu_activity.py index a205155d18..ebc600df7c 100644 --- a/src/oci/database_management/models/sql_cpu_activity.py +++ b/src/oci/database_management/models/sql_cpu_activity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_in_sql_tuning_set.py b/src/oci/database_management/models/sql_in_sql_tuning_set.py index d33c6b6c78..3ad4cd2fe2 100644 --- a/src/oci/database_management/models/sql_in_sql_tuning_set.py +++ b/src/oci/database_management/models/sql_in_sql_tuning_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_job.py b/src/oci/database_management/models/sql_job.py index cfa32e1ac5..520d1a6412 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_metrics.py b/src/oci/database_management/models/sql_metrics.py index e1a5739eed..37383437d1 100644 --- a/src/oci/database_management/models/sql_metrics.py +++ b/src/oci/database_management/models/sql_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline.py b/src/oci/database_management/models/sql_plan_baseline.py index 119f2e4662..6974639f8b 100644 --- a/src/oci/database_management/models/sql_plan_baseline.py +++ b/src/oci/database_management/models/sql_plan_baseline.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline_aggregation.py b/src/oci/database_management/models/sql_plan_baseline_aggregation.py index 4c32d68c58..e469205662 100644 --- a/src/oci/database_management/models/sql_plan_baseline_aggregation.py +++ b/src/oci/database_management/models/sql_plan_baseline_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline_aggregation_collection.py b/src/oci/database_management/models/sql_plan_baseline_aggregation_collection.py index 335c678bac..71b1520842 100644 --- a/src/oci/database_management/models/sql_plan_baseline_aggregation_collection.py +++ b/src/oci/database_management/models/sql_plan_baseline_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline_collection.py b/src/oci/database_management/models/sql_plan_baseline_collection.py index fc608fe835..03ffca3f98 100644 --- a/src/oci/database_management/models/sql_plan_baseline_collection.py +++ b/src/oci/database_management/models/sql_plan_baseline_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline_configuration.py b/src/oci/database_management/models/sql_plan_baseline_configuration.py index 48803761ac..ba969252aa 100644 --- a/src/oci/database_management/models/sql_plan_baseline_configuration.py +++ b/src/oci/database_management/models/sql_plan_baseline_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline_dimensions.py b/src/oci/database_management/models/sql_plan_baseline_dimensions.py index a7ae9c81b6..392fa4c43e 100644 --- a/src/oci/database_management/models/sql_plan_baseline_dimensions.py +++ b/src/oci/database_management/models/sql_plan_baseline_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline_job.py b/src/oci/database_management/models/sql_plan_baseline_job.py index 56e4c5a692..0bd7c6caca 100644 --- a/src/oci/database_management/models/sql_plan_baseline_job.py +++ b/src/oci/database_management/models/sql_plan_baseline_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline_job_collection.py b/src/oci/database_management/models/sql_plan_baseline_job_collection.py index f70272e4e7..a9ae6c18a9 100644 --- a/src/oci/database_management/models/sql_plan_baseline_job_collection.py +++ b/src/oci/database_management/models/sql_plan_baseline_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline_job_summary.py b/src/oci/database_management/models/sql_plan_baseline_job_summary.py index 8117cef4e9..8f825366c3 100644 --- a/src/oci/database_management/models/sql_plan_baseline_job_summary.py +++ b/src/oci/database_management/models/sql_plan_baseline_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_plan_baseline_summary.py b/src/oci/database_management/models/sql_plan_baseline_summary.py index 7881601333..2d43595203 100644 --- a/src/oci/database_management/models/sql_plan_baseline_summary.py +++ b/src/oci/database_management/models/sql_plan_baseline_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 12bfa64f79..0803763955 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 30f773c7e7..5fd121b455 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 0af6407702..b5ae93d736 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 c646b672aa..49a93266d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 53929d1109..115fb0333b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 4c78267074..7c6a41060d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 117cd157c2..fcc11c10c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 c8916cb763..ee198806e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 e43041779d..839a4ddafe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 2614ef3055..79e3baaae2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 d6b264980c..2395af3fd2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 aeb1045548..36768c0f8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 60cc90f284..d9de3e7dc4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 667084b7f0..d9a62bef1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 f69dea32e5..fbbfe9fb3f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_tuning_set.py b/src/oci/database_management/models/sql_tuning_set.py index 4125d339e3..808dd2f272 100644 --- a/src/oci/database_management/models/sql_tuning_set.py +++ b/src/oci/database_management/models/sql_tuning_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_tuning_set_admin_action_status.py b/src/oci/database_management/models/sql_tuning_set_admin_action_status.py index f79bd3291a..e13ae21453 100644 --- a/src/oci/database_management/models/sql_tuning_set_admin_action_status.py +++ b/src/oci/database_management/models/sql_tuning_set_admin_action_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_tuning_set_admin_credential_details.py b/src/oci/database_management/models/sql_tuning_set_admin_credential_details.py index 026e38ba09..b84e5cc75d 100644 --- a/src/oci/database_management/models/sql_tuning_set_admin_credential_details.py +++ b/src/oci/database_management/models/sql_tuning_set_admin_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_tuning_set_admin_password_credential_details.py b/src/oci/database_management/models/sql_tuning_set_admin_password_credential_details.py index 28ad1b8b1c..4126ad35b5 100644 --- a/src/oci/database_management/models/sql_tuning_set_admin_password_credential_details.py +++ b/src/oci/database_management/models/sql_tuning_set_admin_password_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_tuning_set_admin_secret_credential_details.py b/src/oci/database_management/models/sql_tuning_set_admin_secret_credential_details.py index 926728d923..451779f190 100644 --- a/src/oci/database_management/models/sql_tuning_set_admin_secret_credential_details.py +++ b/src/oci/database_management/models/sql_tuning_set_admin_secret_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_tuning_set_collection.py b/src/oci/database_management/models/sql_tuning_set_collection.py index 13fc656eb9..87ea72b77e 100644 --- a/src/oci/database_management/models/sql_tuning_set_collection.py +++ b/src/oci/database_management/models/sql_tuning_set_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_tuning_set_input.py b/src/oci/database_management/models/sql_tuning_set_input.py index fdf424e4e9..304674600f 100644 --- a/src/oci/database_management/models/sql_tuning_set_input.py +++ b/src/oci/database_management/models/sql_tuning_set_input.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/sql_tuning_set_summary.py b/src/oci/database_management/models/sql_tuning_set_summary.py index 3348314a6f..c3c8f72ed7 100644 --- a/src/oci/database_management/models/sql_tuning_set_summary.py +++ b/src/oci/database_management/models/sql_tuning_set_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 1b4620992a..fe16ce738b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 37280764e6..1851fac2ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 b9a4d47444..aac934209e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 5b8c132c77..4125173cfd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 22d287257f..69954ba5af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 b5d9bb376b..e30eac318a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 8348700e84..0af7685e41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 ce656c4d79..b6024171b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/statements_aggregate_metrics.py b/src/oci/database_management/models/statements_aggregate_metrics.py index bfb63f71ff..dfea588a72 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/system_privilege_collection.py b/src/oci/database_management/models/system_privilege_collection.py index 8ada351344..fcac78a42b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/system_privilege_summary.py b/src/oci/database_management/models/system_privilege_summary.py index 771f3a8645..f1effc3e1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/table_statistic_summary.py b/src/oci/database_management/models/table_statistic_summary.py index a24bfd30db..e5389fd42c 100644 --- a/src/oci/database_management/models/table_statistic_summary.py +++ b/src/oci/database_management/models/table_statistic_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/table_statistics_collection.py b/src/oci/database_management/models/table_statistics_collection.py index a389fd2f69..eb12c207d7 100644 --- a/src/oci/database_management/models/table_statistics_collection.py +++ b/src/oci/database_management/models/table_statistics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/tablespace.py b/src/oci/database_management/models/tablespace.py index 99b638a872..a2b0eac71b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/tablespace_admin_credential_details.py b/src/oci/database_management/models/tablespace_admin_credential_details.py index 99b2f5bbf4..9dc60df8ed 100644 --- a/src/oci/database_management/models/tablespace_admin_credential_details.py +++ b/src/oci/database_management/models/tablespace_admin_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/tablespace_admin_password_credential_details.py b/src/oci/database_management/models/tablespace_admin_password_credential_details.py index 25d9fd139a..464684de93 100644 --- a/src/oci/database_management/models/tablespace_admin_password_credential_details.py +++ b/src/oci/database_management/models/tablespace_admin_password_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/tablespace_admin_secret_credential_details.py b/src/oci/database_management/models/tablespace_admin_secret_credential_details.py index 4a305d7fd9..963edffec0 100644 --- a/src/oci/database_management/models/tablespace_admin_secret_credential_details.py +++ b/src/oci/database_management/models/tablespace_admin_secret_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/tablespace_admin_status.py b/src/oci/database_management/models/tablespace_admin_status.py index 7ead407bc6..0fbcb90341 100644 --- a/src/oci/database_management/models/tablespace_admin_status.py +++ b/src/oci/database_management/models/tablespace_admin_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/tablespace_collection.py b/src/oci/database_management/models/tablespace_collection.py index d51cfe880d..c4a44119cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/tablespace_storage_size.py b/src/oci/database_management/models/tablespace_storage_size.py index 71b4ca3e0e..9a9b6baa33 100644 --- a/src/oci/database_management/models/tablespace_storage_size.py +++ b/src/oci/database_management/models/tablespace_storage_size.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/tablespace_summary.py b/src/oci/database_management/models/tablespace_summary.py index 3b82de0729..374ba0733d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/test_basic_preferred_credential_details.py b/src/oci/database_management/models/test_basic_preferred_credential_details.py index f092a8a177..85c42e6687 100644 --- a/src/oci/database_management/models/test_basic_preferred_credential_details.py +++ b/src/oci/database_management/models/test_basic_preferred_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/test_named_credential_details.py b/src/oci/database_management/models/test_named_credential_details.py index cb71c93ea7..b97842e149 100644 --- a/src/oci/database_management/models/test_named_credential_details.py +++ b/src/oci/database_management/models/test_named_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/test_named_credential_status.py b/src/oci/database_management/models/test_named_credential_status.py index d9de20bdc2..7be1dcd773 100644 --- a/src/oci/database_management/models/test_named_credential_status.py +++ b/src/oci/database_management/models/test_named_credential_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/test_named_preferred_credential_details.py b/src/oci/database_management/models/test_named_preferred_credential_details.py index 614bc6fddd..475f616833 100644 --- a/src/oci/database_management/models/test_named_preferred_credential_details.py +++ b/src/oci/database_management/models/test_named_preferred_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/test_preferred_credential_details.py b/src/oci/database_management/models/test_preferred_credential_details.py index 2eaa38475b..8de7c96229 100644 --- a/src/oci/database_management/models/test_preferred_credential_details.py +++ b/src/oci/database_management/models/test_preferred_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/test_preferred_credential_status.py b/src/oci/database_management/models/test_preferred_credential_status.py index 83a3119bad..b2b1707a9f 100644 --- a/src/oci/database_management/models/test_preferred_credential_status.py +++ b/src/oci/database_management/models/test_preferred_credential_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 146b3f9697..1b6e5507f1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 3e733cf9da..8c29e24690 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/top_sql_cpu_activity.py b/src/oci/database_management/models/top_sql_cpu_activity.py index e1950d1dd9..36bacbba0a 100644 --- a/src/oci/database_management/models/top_sql_cpu_activity.py +++ b/src/oci/database_management/models/top_sql_cpu_activity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_basic_preferred_credential_details.py b/src/oci/database_management/models/update_basic_preferred_credential_details.py index 2721b43973..5b5a9191fc 100644 --- a/src/oci/database_management/models/update_basic_preferred_credential_details.py +++ b/src/oci/database_management/models/update_basic_preferred_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 505ff1703b..a1dbfa0e18 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 0b6e2e1f91..53fb9d9acd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_asm_details.py b/src/oci/database_management/models/update_external_asm_details.py index 26414fe360..7965402eb1 100644 --- a/src/oci/database_management/models/update_external_asm_details.py +++ b/src/oci/database_management/models/update_external_asm_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_asm_instance_details.py b/src/oci/database_management/models/update_external_asm_instance_details.py index c3b18f572e..36da7e4848 100644 --- a/src/oci/database_management/models/update_external_asm_instance_details.py +++ b/src/oci/database_management/models/update_external_asm_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_cluster_details.py b/src/oci/database_management/models/update_external_cluster_details.py index 54322571d0..4767bf4a6a 100644 --- a/src/oci/database_management/models/update_external_cluster_details.py +++ b/src/oci/database_management/models/update_external_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_cluster_instance_details.py b/src/oci/database_management/models/update_external_cluster_instance_details.py index 3199acd469..4fd8d11f0f 100644 --- a/src/oci/database_management/models/update_external_cluster_instance_details.py +++ b/src/oci/database_management/models/update_external_cluster_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_db_home_details.py b/src/oci/database_management/models/update_external_db_home_details.py index 9cadef551a..572299ce1b 100644 --- a/src/oci/database_management/models/update_external_db_home_details.py +++ b/src/oci/database_management/models/update_external_db_home_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_db_node_details.py b/src/oci/database_management/models/update_external_db_node_details.py index 9d6ac41153..0c2f297997 100644 --- a/src/oci/database_management/models/update_external_db_node_details.py +++ b/src/oci/database_management/models/update_external_db_node_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_db_system_connector_details.py b/src/oci/database_management/models/update_external_db_system_connector_details.py index c6c4a75aa8..38c9e876fd 100644 --- a/src/oci/database_management/models/update_external_db_system_connector_details.py +++ b/src/oci/database_management/models/update_external_db_system_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_db_system_details.py b/src/oci/database_management/models/update_external_db_system_details.py index 0c5cf782bb..97d6dd4c9d 100644 --- a/src/oci/database_management/models/update_external_db_system_details.py +++ b/src/oci/database_management/models/update_external_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_db_system_discovery_details.py b/src/oci/database_management/models/update_external_db_system_discovery_details.py index 87be873f4d..784cab3049 100644 --- a/src/oci/database_management/models/update_external_db_system_discovery_details.py +++ b/src/oci/database_management/models/update_external_db_system_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_db_system_macs_connector_details.py b/src/oci/database_management/models/update_external_db_system_macs_connector_details.py index efb5511244..26157a0431 100644 --- a/src/oci/database_management/models/update_external_db_system_macs_connector_details.py +++ b/src/oci/database_management/models/update_external_db_system_macs_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_exadata_infrastructure_details.py b/src/oci/database_management/models/update_external_exadata_infrastructure_details.py index b27f193dc9..1e14d1b4e0 100644 --- a/src/oci/database_management/models/update_external_exadata_infrastructure_details.py +++ b/src/oci/database_management/models/update_external_exadata_infrastructure_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_exadata_storage_connector_details.py b/src/oci/database_management/models/update_external_exadata_storage_connector_details.py index c40443c21e..f0b27e9412 100644 --- a/src/oci/database_management/models/update_external_exadata_storage_connector_details.py +++ b/src/oci/database_management/models/update_external_exadata_storage_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_exadata_storage_grid_details.py b/src/oci/database_management/models/update_external_exadata_storage_grid_details.py index a8627335fb..7092205bb5 100644 --- a/src/oci/database_management/models/update_external_exadata_storage_grid_details.py +++ b/src/oci/database_management/models/update_external_exadata_storage_grid_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_exadata_storage_server_details.py b/src/oci/database_management/models/update_external_exadata_storage_server_details.py index f3aec1c09c..e949d7ead5 100644 --- a/src/oci/database_management/models/update_external_exadata_storage_server_details.py +++ b/src/oci/database_management/models/update_external_exadata_storage_server_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_external_listener_details.py b/src/oci/database_management/models/update_external_listener_details.py index b1fa94eb5f..bdadd5466f 100644 --- a/src/oci/database_management/models/update_external_listener_details.py +++ b/src/oci/database_management/models/update_external_listener_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_job_details.py b/src/oci/database_management/models/update_job_details.py index 28508d00fd..d75fa37e15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_managed_database_details.py b/src/oci/database_management/models/update_managed_database_details.py index c81a997fa5..4553c9a313 100644 --- a/src/oci/database_management/models/update_managed_database_details.py +++ b/src/oci/database_management/models/update_managed_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 ac5de4800f..8613ed3397 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_named_credential_details.py b/src/oci/database_management/models/update_named_credential_details.py index a85eacf8d6..261e35ac29 100644 --- a/src/oci/database_management/models/update_named_credential_details.py +++ b/src/oci/database_management/models/update_named_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_named_preferred_credential_details.py b/src/oci/database_management/models/update_named_preferred_credential_details.py index 65fa7b88e1..9f0d2af214 100644 --- a/src/oci/database_management/models/update_named_preferred_credential_details.py +++ b/src/oci/database_management/models/update_named_preferred_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_preferred_credential_details.py b/src/oci/database_management/models/update_preferred_credential_details.py index 3b935c4344..4779c7f15d 100644 --- a/src/oci/database_management/models/update_preferred_credential_details.py +++ b/src/oci/database_management/models/update_preferred_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 caf0fd8e91..9f1fe8459c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/update_tablespace_details.py b/src/oci/database_management/models/update_tablespace_details.py index 8d190c769f..0d99eba2f5 100644 --- a/src/oci/database_management/models/update_tablespace_details.py +++ b/src/oci/database_management/models/update_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/user.py b/src/oci/database_management/models/user.py index f540cb6f56..6757bb4ff2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/user_collection.py b/src/oci/database_management/models/user_collection.py index 339b61771f..3fa1616c69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/user_summary.py b/src/oci/database_management/models/user_summary.py index 661818977a..21a424ad34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/validate_basic_filter_details.py b/src/oci/database_management/models/validate_basic_filter_details.py index c99b6dc808..363aba0099 100644 --- a/src/oci/database_management/models/validate_basic_filter_details.py +++ b/src/oci/database_management/models/validate_basic_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/work_request.py b/src/oci/database_management/models/work_request.py index e33db767eb..6cda009819 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/work_request_collection.py b/src/oci/database_management/models/work_request_collection.py index 316523e786..95b0030ce4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/work_request_error.py b/src/oci/database_management/models/work_request_error.py index 8748809bd4..e3565ab38a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 5eaa279e28..8a7e4de906 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 56ba1e0076..e9f4ddeba0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 287fcae5c1..778c80ee9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/work_request_resource.py b/src/oci/database_management/models/work_request_resource.py index f2045dea87..807ecbcc05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/work_request_sub_resource.py b/src/oci/database_management/models/work_request_sub_resource.py index f469f10755..d7871067d7 100644 --- a/src/oci/database_management/models/work_request_sub_resource.py +++ b/src/oci/database_management/models/work_request_sub_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/models/work_request_summary.py b/src/oci/database_management/models/work_request_summary.py index b032f3957b..530e4bad10 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/perfhub_client.py b/src/oci/database_management/perfhub_client.py index 91e0dc133d..b954b6e651 100644 --- a/src/oci/database_management/perfhub_client.py +++ b/src/oci/database_management/perfhub_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/perfhub_client_composite_operations.py b/src/oci/database_management/perfhub_client_composite_operations.py index 3da6679e3b..089eb2fb74 100644 --- a/src/oci/database_management/perfhub_client_composite_operations.py +++ b/src/oci/database_management/perfhub_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_management/sql_tuning_client.py b/src/oci/database_management/sql_tuning_client.py index 6ff3544f0f..2e747617a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 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 f9f4e30253..8c0372033d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201101 diff --git a/src/oci/database_migration/__init__.py b/src/oci/database_migration/__init__.py index 64b9a44418..3974e72f57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/database_migration_client.py b/src/oci/database_migration/database_migration_client.py index bdf4e97c63..8dca95c3e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 6f8be72a89..0dc9a9a8e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/__init__.py b/src/oci/database_migration/models/__init__.py index 8a38e3a34a..773c7afa41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/adb_dedicated_auto_create_tablespace_details.py b/src/oci/database_migration/models/adb_dedicated_auto_create_tablespace_details.py index 0e663bef6e..bc1a4383a4 100644 --- a/src/oci/database_migration/models/adb_dedicated_auto_create_tablespace_details.py +++ b/src/oci/database_migration/models/adb_dedicated_auto_create_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/adb_dedicated_remap_target_tablespace_details.py b/src/oci/database_migration/models/adb_dedicated_remap_target_tablespace_details.py index 12cda90daa..b07ecdf583 100644 --- a/src/oci/database_migration/models/adb_dedicated_remap_target_tablespace_details.py +++ b/src/oci/database_migration/models/adb_dedicated_remap_target_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/adb_serverles_tablespace_details.py b/src/oci/database_migration/models/adb_serverles_tablespace_details.py index fa50e82d86..230ce02ace 100644 --- a/src/oci/database_migration/models/adb_serverles_tablespace_details.py +++ b/src/oci/database_migration/models/adb_serverles_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/admin_credentials.py b/src/oci/database_migration/models/admin_credentials.py index 3cc477346e..797f8536da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/advisor_report.py b/src/oci/database_migration/models/advisor_report.py index 6e15bc4a9f..d7e31a1946 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 0f952173bf..91e8a7c81d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 9eb9e0e671..1bf6b51334 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 4441fbf3a0..50e7c3d19a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 55d31714fd..e6fe840e3f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/clone_migration_details.py b/src/oci/database_migration/models/clone_migration_details.py index 37d130197a..1cbd89e972 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/connection.py b/src/oci/database_migration/models/connection.py index 5e13e0eac2..b8c2d67b2f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/connection_collection.py b/src/oci/database_migration/models/connection_collection.py index c5d88c2697..41df11c55a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/connection_summary.py b/src/oci/database_migration/models/connection_summary.py index ee75fed61a..6990ee77a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_adb_dedicated_auto_create_tablespace_details.py b/src/oci/database_migration/models/create_adb_dedicated_auto_create_tablespace_details.py index afb5600f11..ebbb66c07c 100644 --- a/src/oci/database_migration/models/create_adb_dedicated_auto_create_tablespace_details.py +++ b/src/oci/database_migration/models/create_adb_dedicated_auto_create_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_adb_dedicated_remap_target_tablespace_details.py b/src/oci/database_migration/models/create_adb_dedicated_remap_target_tablespace_details.py index 36d324446d..0a68ce568c 100644 --- a/src/oci/database_migration/models/create_adb_dedicated_remap_target_tablespace_details.py +++ b/src/oci/database_migration/models/create_adb_dedicated_remap_target_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_adb_serverles_tablespace_details.py b/src/oci/database_migration/models/create_adb_serverles_tablespace_details.py index 0806608567..032efa819e 100644 --- a/src/oci/database_migration/models/create_adb_serverles_tablespace_details.py +++ b/src/oci/database_migration/models/create_adb_serverles_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_admin_credentials.py b/src/oci/database_migration/models/create_admin_credentials.py index 8103b75b40..717c6b7a92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_connection_details.py b/src/oci/database_migration/models/create_connection_details.py index a6fd7cf0a4..b0308ad791 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 476f46ab78..4374d978a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 7a96ff99b7..9355f5cb2f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_directory_object.py b/src/oci/database_migration/models/create_directory_object.py index b2331b9763..d4c3cb25ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_extract.py b/src/oci/database_migration/models/create_extract.py index 6669b48396..e7875c896e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_golden_gate_hub_details.py b/src/oci/database_migration/models/create_golden_gate_hub_details.py index 0a23ebbc38..757aa08bfd 100644 --- a/src/oci/database_migration/models/create_golden_gate_hub_details.py +++ b/src/oci/database_migration/models/create_golden_gate_hub_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 af04f66ee6..5ba8d01766 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_migration_details.py b/src/oci/database_migration/models/create_migration_details.py index e49cb24c71..dd0e9d4672 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_my_sql_advisor_settings.py b/src/oci/database_migration/models/create_my_sql_advisor_settings.py index 815c46443c..8334c91331 100644 --- a/src/oci/database_migration/models/create_my_sql_advisor_settings.py +++ b/src/oci/database_migration/models/create_my_sql_advisor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_my_sql_data_transfer_medium_details.py b/src/oci/database_migration/models/create_my_sql_data_transfer_medium_details.py index 0861fb11d3..9871f2528b 100644 --- a/src/oci/database_migration/models/create_my_sql_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/create_my_sql_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_my_sql_ggs_deployment_details.py b/src/oci/database_migration/models/create_my_sql_ggs_deployment_details.py index 8a958f8a57..fdcb4625da 100644 --- a/src/oci/database_migration/models/create_my_sql_ggs_deployment_details.py +++ b/src/oci/database_migration/models/create_my_sql_ggs_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_my_sql_initial_load_settings.py b/src/oci/database_migration/models/create_my_sql_initial_load_settings.py index 35630353bc..98689158f2 100644 --- a/src/oci/database_migration/models/create_my_sql_initial_load_settings.py +++ b/src/oci/database_migration/models/create_my_sql_initial_load_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_my_sql_migration_details.py b/src/oci/database_migration/models/create_my_sql_migration_details.py index 31ce380fe3..0799d01a67 100644 --- a/src/oci/database_migration/models/create_my_sql_migration_details.py +++ b/src/oci/database_migration/models/create_my_sql_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_my_sql_object_storage_data_transfer_medium_details.py b/src/oci/database_migration/models/create_my_sql_object_storage_data_transfer_medium_details.py index 00caefe477..db74c5974e 100644 --- a/src/oci/database_migration/models/create_my_sql_object_storage_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/create_my_sql_object_storage_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_mysql_connection_details.py b/src/oci/database_migration/models/create_mysql_connection_details.py index 5a05ecab4b..b1885c6db3 100644 --- a/src/oci/database_migration/models/create_mysql_connection_details.py +++ b/src/oci/database_migration/models/create_mysql_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_non_adb_auto_create_tablespace_details.py b/src/oci/database_migration/models/create_non_adb_auto_create_tablespace_details.py index 005e2f0144..2e12659d1d 100644 --- a/src/oci/database_migration/models/create_non_adb_auto_create_tablespace_details.py +++ b/src/oci/database_migration/models/create_non_adb_auto_create_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_non_adb_remap_tablespace_details.py b/src/oci/database_migration/models/create_non_adb_remap_tablespace_details.py index 34a38e064a..e603da4165 100644 --- a/src/oci/database_migration/models/create_non_adb_remap_tablespace_details.py +++ b/src/oci/database_migration/models/create_non_adb_remap_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 aa588176ae..00d8232a1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 0ebab0e680..8f6eaa4b87 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_advisor_settings.py b/src/oci/database_migration/models/create_oracle_advisor_settings.py index 7b2dd7da75..fbc0287a40 100644 --- a/src/oci/database_migration/models/create_oracle_advisor_settings.py +++ b/src/oci/database_migration/models/create_oracle_advisor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_aws_s3_data_transfer_medium_details.py b/src/oci/database_migration/models/create_oracle_aws_s3_data_transfer_medium_details.py index db921ddfa8..8c8c7e4667 100644 --- a/src/oci/database_migration/models/create_oracle_aws_s3_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/create_oracle_aws_s3_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_connection_details.py b/src/oci/database_migration/models/create_oracle_connection_details.py index ff73574c8a..350ddc129d 100644 --- a/src/oci/database_migration/models/create_oracle_connection_details.py +++ b/src/oci/database_migration/models/create_oracle_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_data_transfer_medium_details.py b/src/oci/database_migration/models/create_oracle_data_transfer_medium_details.py index d605b14b5c..5ee8eef8d4 100644 --- a/src/oci/database_migration/models/create_oracle_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/create_oracle_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_db_link_data_transfer_medium_details.py b/src/oci/database_migration/models/create_oracle_db_link_data_transfer_medium_details.py index 4e367a5141..39282b3320 100644 --- a/src/oci/database_migration/models/create_oracle_db_link_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/create_oracle_db_link_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_ggs_deployment_details.py b/src/oci/database_migration/models/create_oracle_ggs_deployment_details.py index b4efe333dc..b98a712963 100644 --- a/src/oci/database_migration/models/create_oracle_ggs_deployment_details.py +++ b/src/oci/database_migration/models/create_oracle_ggs_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_initial_load_settings.py b/src/oci/database_migration/models/create_oracle_initial_load_settings.py index adcf0eb709..a1d15cb0a9 100644 --- a/src/oci/database_migration/models/create_oracle_initial_load_settings.py +++ b/src/oci/database_migration/models/create_oracle_initial_load_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_migration_details.py b/src/oci/database_migration/models/create_oracle_migration_details.py index 44f667d155..ee95471a9c 100644 --- a/src/oci/database_migration/models/create_oracle_migration_details.py +++ b/src/oci/database_migration/models/create_oracle_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_nfs_data_transfer_medium_details.py b/src/oci/database_migration/models/create_oracle_nfs_data_transfer_medium_details.py index 4c2cf3ea3e..a4929407fe 100644 --- a/src/oci/database_migration/models/create_oracle_nfs_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/create_oracle_nfs_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_oracle_object_storage_data_transfer_medium_details.py b/src/oci/database_migration/models/create_oracle_object_storage_data_transfer_medium_details.py index bdf023acaf..7b82f394ee 100644 --- a/src/oci/database_migration/models/create_oracle_object_storage_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/create_oracle_object_storage_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_parameter_file_version_details.py b/src/oci/database_migration/models/create_parameter_file_version_details.py index 17d52c1b9c..5eaede5820 100644 --- a/src/oci/database_migration/models/create_parameter_file_version_details.py +++ b/src/oci/database_migration/models/create_parameter_file_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_replicat.py b/src/oci/database_migration/models/create_replicat.py index a66a0c36df..ca35bef11c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/create_target_type_tablespace_details.py b/src/oci/database_migration/models/create_target_type_tablespace_details.py index 81f4d75c07..d306cda56d 100644 --- a/src/oci/database_migration/models/create_target_type_tablespace_details.py +++ b/src/oci/database_migration/models/create_target_type_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/curl_transfer_details.py b/src/oci/database_migration/models/curl_transfer_details.py index 6c267d8824..78c2e9361b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/data_pump_parameters.py b/src/oci/database_migration/models/data_pump_parameters.py index d4f0f3bf1c..488e3c936f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/diagnostics_result.py b/src/oci/database_migration/models/diagnostics_result.py index f4de928232..3d5c2d476d 100644 --- a/src/oci/database_migration/models/diagnostics_result.py +++ b/src/oci/database_migration/models/diagnostics_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/directory_object.py b/src/oci/database_migration/models/directory_object.py index 6d878eec64..4f2e9a3ca1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/excluded_object_summary.py b/src/oci/database_migration/models/excluded_object_summary.py index 492e68a051..8e2df8f5e5 100644 --- a/src/oci/database_migration/models/excluded_object_summary.py +++ b/src/oci/database_migration/models/excluded_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/excluded_object_summary_collection.py b/src/oci/database_migration/models/excluded_object_summary_collection.py index c0a4303a24..79096d95f5 100644 --- a/src/oci/database_migration/models/excluded_object_summary_collection.py +++ b/src/oci/database_migration/models/excluded_object_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/extract.py b/src/oci/database_migration/models/extract.py index a3302cdf90..7e25124a14 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/ggs_deployment.py b/src/oci/database_migration/models/ggs_deployment.py index 4930d4e0ea..bc1f6d3ee2 100644 --- a/src/oci/database_migration/models/ggs_deployment.py +++ b/src/oci/database_migration/models/ggs_deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/golden_gate_hub_details.py b/src/oci/database_migration/models/golden_gate_hub_details.py index cc5725c2aa..ee61321bfb 100644 --- a/src/oci/database_migration/models/golden_gate_hub_details.py +++ b/src/oci/database_migration/models/golden_gate_hub_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 65912c8201..aa3671105c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/ingress_ip_details.py b/src/oci/database_migration/models/ingress_ip_details.py index b4a1b42365..a35653a235 100644 --- a/src/oci/database_migration/models/ingress_ip_details.py +++ b/src/oci/database_migration/models/ingress_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/job.py b/src/oci/database_migration/models/job.py index 000015a567..52262cd4f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/job_collection.py b/src/oci/database_migration/models/job_collection.py index 06d8bf82f3..795d45cc63 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/job_output_summary.py b/src/oci/database_migration/models/job_output_summary.py index 3b6e4ce3f5..5464a48b34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 6e84f8a7d4..67ca5a040b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/job_summary.py b/src/oci/database_migration/models/job_summary.py index 81dcd03068..98c0f6ece2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 cdbb24a844..c453d557c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/metadata_remap.py b/src/oci/database_migration/models/metadata_remap.py index 77f3a2bee9..9853379945 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration.py b/src/oci/database_migration/models/migration.py index 75d5a87595..ca528b4c0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration_collection.py b/src/oci/database_migration/models/migration_collection.py index 9940939efb..883e6c90ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 717e870167..90f01e8e08 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 29b502e03a..c2ec2345dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration_object_collection.py b/src/oci/database_migration/models/migration_object_collection.py index 8ab7780914..6df996da3a 100644 --- a/src/oci/database_migration/models/migration_object_collection.py +++ b/src/oci/database_migration/models/migration_object_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 b15421af31..f5018c54da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 8aec0a2b2c..2b209f276b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration_parameter_base.py b/src/oci/database_migration/models/migration_parameter_base.py index 1e46c187e5..97322e230e 100644 --- a/src/oci/database_migration/models/migration_parameter_base.py +++ b/src/oci/database_migration/models/migration_parameter_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration_parameter_details.py b/src/oci/database_migration/models/migration_parameter_details.py index b3e92a67bd..97b60dbc13 100644 --- a/src/oci/database_migration/models/migration_parameter_details.py +++ b/src/oci/database_migration/models/migration_parameter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration_parameter_summary.py b/src/oci/database_migration/models/migration_parameter_summary.py index 0bf83de703..802621309b 100644 --- a/src/oci/database_migration/models/migration_parameter_summary.py +++ b/src/oci/database_migration/models/migration_parameter_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration_parameter_summary_collection.py b/src/oci/database_migration/models/migration_parameter_summary_collection.py index 70575b7376..38de386df9 100644 --- a/src/oci/database_migration/models/migration_parameter_summary_collection.py +++ b/src/oci/database_migration/models/migration_parameter_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration_phase_collection.py b/src/oci/database_migration/models/migration_phase_collection.py index 34fcfd3a30..c934b3ffb2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration_phase_summary.py b/src/oci/database_migration/models/migration_phase_summary.py index 4f4df2dc34..c13a756efc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/migration_summary.py b/src/oci/database_migration/models/migration_summary.py index 99b7c0ce31..f383deb01c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_advisor_settings.py b/src/oci/database_migration/models/my_sql_advisor_settings.py index 0064efbdf6..d6c984cdf2 100644 --- a/src/oci/database_migration/models/my_sql_advisor_settings.py +++ b/src/oci/database_migration/models/my_sql_advisor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_clone_migration_details.py b/src/oci/database_migration/models/my_sql_clone_migration_details.py index f332036826..299cf1710d 100644 --- a/src/oci/database_migration/models/my_sql_clone_migration_details.py +++ b/src/oci/database_migration/models/my_sql_clone_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_data_transfer_medium_details.py b/src/oci/database_migration/models/my_sql_data_transfer_medium_details.py index a784a805f7..9bbd08d323 100644 --- a/src/oci/database_migration/models/my_sql_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/my_sql_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_database_object.py b/src/oci/database_migration/models/my_sql_database_object.py index 251e7c0f57..992d134dbf 100644 --- a/src/oci/database_migration/models/my_sql_database_object.py +++ b/src/oci/database_migration/models/my_sql_database_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_database_object_summary.py b/src/oci/database_migration/models/my_sql_database_object_summary.py index 9e9bc7c47e..9cd7c2ac25 100644 --- a/src/oci/database_migration/models/my_sql_database_object_summary.py +++ b/src/oci/database_migration/models/my_sql_database_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_ggs_deployment_details.py b/src/oci/database_migration/models/my_sql_ggs_deployment_details.py index 1d78b25620..bf27f259e9 100644 --- a/src/oci/database_migration/models/my_sql_ggs_deployment_details.py +++ b/src/oci/database_migration/models/my_sql_ggs_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_initial_load_settings.py b/src/oci/database_migration/models/my_sql_initial_load_settings.py index e82ed7b8f6..5d7f457e9a 100644 --- a/src/oci/database_migration/models/my_sql_initial_load_settings.py +++ b/src/oci/database_migration/models/my_sql_initial_load_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_migration.py b/src/oci/database_migration/models/my_sql_migration.py index 5c5ac549e0..bb118942e4 100644 --- a/src/oci/database_migration/models/my_sql_migration.py +++ b/src/oci/database_migration/models/my_sql_migration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_migration_object_collection.py b/src/oci/database_migration/models/my_sql_migration_object_collection.py index 47127ea34f..9e17932163 100644 --- a/src/oci/database_migration/models/my_sql_migration_object_collection.py +++ b/src/oci/database_migration/models/my_sql_migration_object_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_migration_summary.py b/src/oci/database_migration/models/my_sql_migration_summary.py index c9122875bb..72bfac8506 100644 --- a/src/oci/database_migration/models/my_sql_migration_summary.py +++ b/src/oci/database_migration/models/my_sql_migration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/my_sql_object_storage_data_transfer_medium_details.py b/src/oci/database_migration/models/my_sql_object_storage_data_transfer_medium_details.py index 31be32eef3..7010d897a0 100644 --- a/src/oci/database_migration/models/my_sql_object_storage_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/my_sql_object_storage_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/mysql_connection.py b/src/oci/database_migration/models/mysql_connection.py index 9e0a3d1471..9137b40393 100644 --- a/src/oci/database_migration/models/mysql_connection.py +++ b/src/oci/database_migration/models/mysql_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/mysql_connection_summary.py b/src/oci/database_migration/models/mysql_connection_summary.py index 76af86fff1..2ae1138281 100644 --- a/src/oci/database_migration/models/mysql_connection_summary.py +++ b/src/oci/database_migration/models/mysql_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/name_value_pair.py b/src/oci/database_migration/models/name_value_pair.py index 9ad326f1f2..6d2dee2f7b 100644 --- a/src/oci/database_migration/models/name_value_pair.py +++ b/src/oci/database_migration/models/name_value_pair.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/non_adb_auto_create_tablespace_details.py b/src/oci/database_migration/models/non_adb_auto_create_tablespace_details.py index 8f2c07b2d2..e3b208d144 100644 --- a/src/oci/database_migration/models/non_adb_auto_create_tablespace_details.py +++ b/src/oci/database_migration/models/non_adb_auto_create_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/non_adb_remap_tablespace_details.py b/src/oci/database_migration/models/non_adb_remap_tablespace_details.py index 106ddf5a0c..2ebc42a44e 100644 --- a/src/oci/database_migration/models/non_adb_remap_tablespace_details.py +++ b/src/oci/database_migration/models/non_adb_remap_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/object_store_bucket.py b/src/oci/database_migration/models/object_store_bucket.py index ffa2ae0995..99f6dc5120 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 1c51c27569..9cf0e01ed7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_advisor_settings.py b/src/oci/database_migration/models/oracle_advisor_settings.py index e2054c8d66..87edac7b5f 100644 --- a/src/oci/database_migration/models/oracle_advisor_settings.py +++ b/src/oci/database_migration/models/oracle_advisor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_aws_s3_data_transfer_medium_details.py b/src/oci/database_migration/models/oracle_aws_s3_data_transfer_medium_details.py index f0eaedcb0f..0626c97af3 100644 --- a/src/oci/database_migration/models/oracle_aws_s3_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/oracle_aws_s3_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_clone_migration_details.py b/src/oci/database_migration/models/oracle_clone_migration_details.py index dacbf37406..e4124cfee7 100644 --- a/src/oci/database_migration/models/oracle_clone_migration_details.py +++ b/src/oci/database_migration/models/oracle_clone_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_connection.py b/src/oci/database_migration/models/oracle_connection.py index 534a6d8f8d..3973ba775d 100644 --- a/src/oci/database_migration/models/oracle_connection.py +++ b/src/oci/database_migration/models/oracle_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_connection_summary.py b/src/oci/database_migration/models/oracle_connection_summary.py index bef7a55422..ffb2de7843 100644 --- a/src/oci/database_migration/models/oracle_connection_summary.py +++ b/src/oci/database_migration/models/oracle_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_data_transfer_medium_details.py b/src/oci/database_migration/models/oracle_data_transfer_medium_details.py index 494d641ac9..218470c506 100644 --- a/src/oci/database_migration/models/oracle_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/oracle_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_database_object.py b/src/oci/database_migration/models/oracle_database_object.py index 448a849261..c23cffe665 100644 --- a/src/oci/database_migration/models/oracle_database_object.py +++ b/src/oci/database_migration/models/oracle_database_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_database_object_summary.py b/src/oci/database_migration/models/oracle_database_object_summary.py index e537318a01..c9d60ee9c1 100644 --- a/src/oci/database_migration/models/oracle_database_object_summary.py +++ b/src/oci/database_migration/models/oracle_database_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_db_link_data_transfer_medium_details.py b/src/oci/database_migration/models/oracle_db_link_data_transfer_medium_details.py index e738a50ad0..177ca8038f 100644 --- a/src/oci/database_migration/models/oracle_db_link_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/oracle_db_link_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_ggs_deployment_details.py b/src/oci/database_migration/models/oracle_ggs_deployment_details.py index 65ad58fee8..75d8916058 100644 --- a/src/oci/database_migration/models/oracle_ggs_deployment_details.py +++ b/src/oci/database_migration/models/oracle_ggs_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_initial_load_settings.py b/src/oci/database_migration/models/oracle_initial_load_settings.py index bcb4079219..587b5bf4f9 100644 --- a/src/oci/database_migration/models/oracle_initial_load_settings.py +++ b/src/oci/database_migration/models/oracle_initial_load_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_migration.py b/src/oci/database_migration/models/oracle_migration.py index 1c62faf3e1..d838f33a2d 100644 --- a/src/oci/database_migration/models/oracle_migration.py +++ b/src/oci/database_migration/models/oracle_migration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_migration_object_collection.py b/src/oci/database_migration/models/oracle_migration_object_collection.py index 765e3a2234..f24143baad 100644 --- a/src/oci/database_migration/models/oracle_migration_object_collection.py +++ b/src/oci/database_migration/models/oracle_migration_object_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_migration_summary.py b/src/oci/database_migration/models/oracle_migration_summary.py index 879ba4053c..cb5271fd72 100644 --- a/src/oci/database_migration/models/oracle_migration_summary.py +++ b/src/oci/database_migration/models/oracle_migration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_nfs_data_transfer_medium_details.py b/src/oci/database_migration/models/oracle_nfs_data_transfer_medium_details.py index b72dfc3c3e..63fe151a95 100644 --- a/src/oci/database_migration/models/oracle_nfs_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/oracle_nfs_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/oracle_object_storage_data_transfer_medium_details.py b/src/oci/database_migration/models/oracle_object_storage_data_transfer_medium_details.py index 6aa8adb55a..026a8e65ce 100644 --- a/src/oci/database_migration/models/oracle_object_storage_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/oracle_object_storage_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/parameter_file_version.py b/src/oci/database_migration/models/parameter_file_version.py index e6e2d5a4f0..f976d16914 100644 --- a/src/oci/database_migration/models/parameter_file_version.py +++ b/src/oci/database_migration/models/parameter_file_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/parameter_file_version_collection.py b/src/oci/database_migration/models/parameter_file_version_collection.py index 2d941bc99c..6c5d097e12 100644 --- a/src/oci/database_migration/models/parameter_file_version_collection.py +++ b/src/oci/database_migration/models/parameter_file_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/parameter_file_version_summary.py b/src/oci/database_migration/models/parameter_file_version_summary.py index 112533f990..f05112a03c 100644 --- a/src/oci/database_migration/models/parameter_file_version_summary.py +++ b/src/oci/database_migration/models/parameter_file_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/phase_extract_entry.py b/src/oci/database_migration/models/phase_extract_entry.py index 068574972c..7d5be8add9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/phase_status.py b/src/oci/database_migration/models/phase_status.py index b68e9826ba..8c58f376ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/replicat.py b/src/oci/database_migration/models/replicat.py index db0d6f4f91..9a6c24912d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/result_error.py b/src/oci/database_migration/models/result_error.py index 8e42ead824..55b02b0340 100644 --- a/src/oci/database_migration/models/result_error.py +++ b/src/oci/database_migration/models/result_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/resume_job_details.py b/src/oci/database_migration/models/resume_job_details.py index d6e106f344..5f56e12860 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/start_migration_details.py b/src/oci/database_migration/models/start_migration_details.py index af899b180f..a380175804 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/target_type_tablespace_details.py b/src/oci/database_migration/models/target_type_tablespace_details.py index 870e6e8b9a..0c7938bcad 100644 --- a/src/oci/database_migration/models/target_type_tablespace_details.py +++ b/src/oci/database_migration/models/target_type_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/unsupported_database_object.py b/src/oci/database_migration/models/unsupported_database_object.py index 5f100adae9..3594665241 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_adb_dedicated_auto_create_tablespace_details.py b/src/oci/database_migration/models/update_adb_dedicated_auto_create_tablespace_details.py index 0ec5f587a9..aab44627d5 100644 --- a/src/oci/database_migration/models/update_adb_dedicated_auto_create_tablespace_details.py +++ b/src/oci/database_migration/models/update_adb_dedicated_auto_create_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_adb_dedicated_remap_target_tablespace_details.py b/src/oci/database_migration/models/update_adb_dedicated_remap_target_tablespace_details.py index 95b4ee1a56..9cec295742 100644 --- a/src/oci/database_migration/models/update_adb_dedicated_remap_target_tablespace_details.py +++ b/src/oci/database_migration/models/update_adb_dedicated_remap_target_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_adb_serverles_tablespace_details.py b/src/oci/database_migration/models/update_adb_serverles_tablespace_details.py index d0bba167a7..e940a822d8 100644 --- a/src/oci/database_migration/models/update_adb_serverles_tablespace_details.py +++ b/src/oci/database_migration/models/update_adb_serverles_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_admin_credentials.py b/src/oci/database_migration/models/update_admin_credentials.py index 076f7d649f..922ecc5ff2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_connection_details.py b/src/oci/database_migration/models/update_connection_details.py index 31d4d691a1..2ffbaed76c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 741a4969db..38aa0aa697 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 c87e1c4639..dcab8e3046 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_directory_object.py b/src/oci/database_migration/models/update_directory_object.py index 4558f3af06..a2d34fa3c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_extract.py b/src/oci/database_migration/models/update_extract.py index d5a5d78a3b..2fc8d15da9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_golden_gate_hub_details.py b/src/oci/database_migration/models/update_golden_gate_hub_details.py index 142cf049df..6cf31c262b 100644 --- a/src/oci/database_migration/models/update_golden_gate_hub_details.py +++ b/src/oci/database_migration/models/update_golden_gate_hub_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 ebf226f933..72888b3169 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_job_details.py b/src/oci/database_migration/models/update_job_details.py index d9e266cc50..02913295fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_migration_details.py b/src/oci/database_migration/models/update_migration_details.py index 52b0d8517c..5daadd53ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_my_sql_advisor_settings.py b/src/oci/database_migration/models/update_my_sql_advisor_settings.py index fd6d4b9a29..5230019533 100644 --- a/src/oci/database_migration/models/update_my_sql_advisor_settings.py +++ b/src/oci/database_migration/models/update_my_sql_advisor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_my_sql_data_transfer_medium_details.py b/src/oci/database_migration/models/update_my_sql_data_transfer_medium_details.py index 74a17539e9..e0a6cde37f 100644 --- a/src/oci/database_migration/models/update_my_sql_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/update_my_sql_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_my_sql_ggs_deployment_details.py b/src/oci/database_migration/models/update_my_sql_ggs_deployment_details.py index 619ca09a4c..815dcf210b 100644 --- a/src/oci/database_migration/models/update_my_sql_ggs_deployment_details.py +++ b/src/oci/database_migration/models/update_my_sql_ggs_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_my_sql_initial_load_settings.py b/src/oci/database_migration/models/update_my_sql_initial_load_settings.py index 6e08b7c572..5a481344d7 100644 --- a/src/oci/database_migration/models/update_my_sql_initial_load_settings.py +++ b/src/oci/database_migration/models/update_my_sql_initial_load_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_my_sql_migration_details.py b/src/oci/database_migration/models/update_my_sql_migration_details.py index 58045ed0c9..0f6769ef9a 100644 --- a/src/oci/database_migration/models/update_my_sql_migration_details.py +++ b/src/oci/database_migration/models/update_my_sql_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_my_sql_object_storage_data_transfer_medium_details.py b/src/oci/database_migration/models/update_my_sql_object_storage_data_transfer_medium_details.py index 2e0f5ae6dc..797a54b295 100644 --- a/src/oci/database_migration/models/update_my_sql_object_storage_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/update_my_sql_object_storage_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_mysql_connection_details.py b/src/oci/database_migration/models/update_mysql_connection_details.py index 920841dfd2..5ab3cf10e5 100644 --- a/src/oci/database_migration/models/update_mysql_connection_details.py +++ b/src/oci/database_migration/models/update_mysql_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_non_adb_auto_create_tablespace_details.py b/src/oci/database_migration/models/update_non_adb_auto_create_tablespace_details.py index e63d5fcfbc..a4c33fd3ff 100644 --- a/src/oci/database_migration/models/update_non_adb_auto_create_tablespace_details.py +++ b/src/oci/database_migration/models/update_non_adb_auto_create_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_non_adb_remap_tablespace_details.py b/src/oci/database_migration/models/update_non_adb_remap_tablespace_details.py index f8e4f39b6a..7e6e4b3c2e 100644 --- a/src/oci/database_migration/models/update_non_adb_remap_tablespace_details.py +++ b/src/oci/database_migration/models/update_non_adb_remap_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 d817b9ad2a..bfd6bc845c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 616e0d683e..42f8f58a31 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_advisor_settings.py b/src/oci/database_migration/models/update_oracle_advisor_settings.py index b982e32a21..1fd09de213 100644 --- a/src/oci/database_migration/models/update_oracle_advisor_settings.py +++ b/src/oci/database_migration/models/update_oracle_advisor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_aws_s3_data_transfer_medium_details.py b/src/oci/database_migration/models/update_oracle_aws_s3_data_transfer_medium_details.py index 653ada03f0..baddadb593 100644 --- a/src/oci/database_migration/models/update_oracle_aws_s3_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/update_oracle_aws_s3_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_connection_details.py b/src/oci/database_migration/models/update_oracle_connection_details.py index f7bbb11176..332e2f429e 100644 --- a/src/oci/database_migration/models/update_oracle_connection_details.py +++ b/src/oci/database_migration/models/update_oracle_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_data_transfer_medium_details.py b/src/oci/database_migration/models/update_oracle_data_transfer_medium_details.py index e61a8f9a8c..5c81e07d0e 100644 --- a/src/oci/database_migration/models/update_oracle_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/update_oracle_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_db_link_data_transfer_medium_details.py b/src/oci/database_migration/models/update_oracle_db_link_data_transfer_medium_details.py index 0d85d35948..6e10f37c24 100644 --- a/src/oci/database_migration/models/update_oracle_db_link_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/update_oracle_db_link_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_ggs_deployment_details.py b/src/oci/database_migration/models/update_oracle_ggs_deployment_details.py index e43abe0b67..e96cda53f9 100644 --- a/src/oci/database_migration/models/update_oracle_ggs_deployment_details.py +++ b/src/oci/database_migration/models/update_oracle_ggs_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_initial_load_settings.py b/src/oci/database_migration/models/update_oracle_initial_load_settings.py index 861234ab17..210b67e932 100644 --- a/src/oci/database_migration/models/update_oracle_initial_load_settings.py +++ b/src/oci/database_migration/models/update_oracle_initial_load_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_migration_details.py b/src/oci/database_migration/models/update_oracle_migration_details.py index 8364680b2d..7ec134d49f 100644 --- a/src/oci/database_migration/models/update_oracle_migration_details.py +++ b/src/oci/database_migration/models/update_oracle_migration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_nfs_data_transfer_medium_details.py b/src/oci/database_migration/models/update_oracle_nfs_data_transfer_medium_details.py index 317e9ac657..84aabf00d3 100644 --- a/src/oci/database_migration/models/update_oracle_nfs_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/update_oracle_nfs_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_oracle_object_storage_data_transfer_medium_details.py b/src/oci/database_migration/models/update_oracle_object_storage_data_transfer_medium_details.py index 9665259223..6ea280cf6b 100644 --- a/src/oci/database_migration/models/update_oracle_object_storage_data_transfer_medium_details.py +++ b/src/oci/database_migration/models/update_oracle_object_storage_data_transfer_medium_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_replicat.py b/src/oci/database_migration/models/update_replicat.py index 7813109558..441ab3255a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_target_defaults_auto_create_tablespace_details.py b/src/oci/database_migration/models/update_target_defaults_auto_create_tablespace_details.py index eb669de697..5ebb657648 100644 --- a/src/oci/database_migration/models/update_target_defaults_auto_create_tablespace_details.py +++ b/src/oci/database_migration/models/update_target_defaults_auto_create_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_target_defaults_remap_tablespace_details.py b/src/oci/database_migration/models/update_target_defaults_remap_tablespace_details.py index dc4f913ad1..714be2eed5 100644 --- a/src/oci/database_migration/models/update_target_defaults_remap_tablespace_details.py +++ b/src/oci/database_migration/models/update_target_defaults_remap_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/update_target_type_tablespace_details.py b/src/oci/database_migration/models/update_target_type_tablespace_details.py index 62d50b0ca9..d232e01533 100644 --- a/src/oci/database_migration/models/update_target_type_tablespace_details.py +++ b/src/oci/database_migration/models/update_target_type_tablespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/work_request.py b/src/oci/database_migration/models/work_request.py index f1e5d09644..be24ac604f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/work_request_collection.py b/src/oci/database_migration/models/work_request_collection.py index b52a284f52..c31001ee3c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/work_request_error.py b/src/oci/database_migration/models/work_request_error.py index 237a27d558..274d0bdf51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 30b4f224f3..b9f8f93af3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 efd7cf59b6..cc7f2fe7c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 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 94eb30eb09..a9c1881c78 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/work_request_resource.py b/src/oci/database_migration/models/work_request_resource.py index 1f21c02fab..e2dec638c7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_migration/models/work_request_summary.py b/src/oci/database_migration/models/work_request_summary.py index dba9f09e51..323ee009fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230518 diff --git a/src/oci/database_tools/__init__.py b/src/oci/database_tools/__init__.py index 219f2f1286..ddd34e2523 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/database_tools_client.py b/src/oci/database_tools/database_tools_client.py index d8a50a6c32..409360a90d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 95271f834f..79f2da9f90 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/__init__.py b/src/oci/database_tools/models/__init__.py index 84df0dc9c7..930388027b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/add_resource_lock_details.py b/src/oci/database_tools/models/add_resource_lock_details.py index 50befad016..e27e2568b0 100644 --- a/src/oci/database_tools/models/add_resource_lock_details.py +++ b/src/oci/database_tools/models/add_resource_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 b166d6062e..39c647ba6e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 ee8dce814e..a34bce2a40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 6a5a1489f7..dc1e813058 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/create_database_tools_connection_generic_jdbc_details.py b/src/oci/database_tools/models/create_database_tools_connection_generic_jdbc_details.py index 6d57364196..2e6dc144ef 100644 --- a/src/oci/database_tools/models/create_database_tools_connection_generic_jdbc_details.py +++ b/src/oci/database_tools/models/create_database_tools_connection_generic_jdbc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/create_database_tools_connection_my_sql_details.py b/src/oci/database_tools/models/create_database_tools_connection_my_sql_details.py index ce1a943028..1e6b5b3327 100644 --- a/src/oci/database_tools/models/create_database_tools_connection_my_sql_details.py +++ b/src/oci/database_tools/models/create_database_tools_connection_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 9dae33e465..0c06917162 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/create_database_tools_connection_postgresql_details.py b/src/oci/database_tools/models/create_database_tools_connection_postgresql_details.py index 12171ba702..8e2f56b447 100644 --- a/src/oci/database_tools/models/create_database_tools_connection_postgresql_details.py +++ b/src/oci/database_tools/models/create_database_tools_connection_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 1ee5c20335..5cc5cba75e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 21a082fc85..f3ecae1af4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/create_database_tools_related_resource_my_sql_details.py b/src/oci/database_tools/models/create_database_tools_related_resource_my_sql_details.py index 882686d313..d7bc33c05a 100644 --- a/src/oci/database_tools/models/create_database_tools_related_resource_my_sql_details.py +++ b/src/oci/database_tools/models/create_database_tools_related_resource_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/create_database_tools_related_resource_postgresql_details.py b/src/oci/database_tools/models/create_database_tools_related_resource_postgresql_details.py index b7aae3b8a0..20d955c9bc 100644 --- a/src/oci/database_tools/models/create_database_tools_related_resource_postgresql_details.py +++ b/src/oci/database_tools/models/create_database_tools_related_resource_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection.py b/src/oci/database_tools/models/database_tools_connection.py index 96c937bd27..62a3bba9a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 47b1b4454b..1f68965f08 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_generic_jdbc.py b/src/oci/database_tools/models/database_tools_connection_generic_jdbc.py index 09ff8bef2e..a39bca3dd7 100644 --- a/src/oci/database_tools/models/database_tools_connection_generic_jdbc.py +++ b/src/oci/database_tools/models/database_tools_connection_generic_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_generic_jdbc_summary.py b/src/oci/database_tools/models/database_tools_connection_generic_jdbc_summary.py index 4e6e38c5e0..631534ff4e 100644 --- a/src/oci/database_tools/models/database_tools_connection_generic_jdbc_summary.py +++ b/src/oci/database_tools/models/database_tools_connection_generic_jdbc_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_my_sql.py b/src/oci/database_tools/models/database_tools_connection_my_sql.py index 2b7909d896..0d7b5aade7 100644 --- a/src/oci/database_tools/models/database_tools_connection_my_sql.py +++ b/src/oci/database_tools/models/database_tools_connection_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_my_sql_summary.py b/src/oci/database_tools/models/database_tools_connection_my_sql_summary.py index 80c3542148..b1586d3f0c 100644 --- a/src/oci/database_tools/models/database_tools_connection_my_sql_summary.py +++ b/src/oci/database_tools/models/database_tools_connection_my_sql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 c5ee7a3259..5b8bdab482 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client.py index 8d2536bab4..32e7ab6e7e 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_details.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_details.py index 80dc94eacd..eb9248821e 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_details.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy.py index df9c31fe70..a142def8bc 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy_details.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy_details.py index e8900d0c7c..8c0f0473b3 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy_details.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy_summary.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy_summary.py index ef8d68b881..6c19ccb379 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy_summary.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_no_proxy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_summary.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_summary.py index a147e00a9a..edc5b2009f 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_summary.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name.py index f40ef19c44..29a4326ee6 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name_details.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name_details.py index 1c79bc21ab..f57b92d636 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name_details.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name_summary.py b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name_summary.py index 5c28fd0710..54d3a84e7a 100644 --- a/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name_summary.py +++ b/src/oci/database_tools/models/database_tools_connection_oracle_database_proxy_client_user_name_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 a2beb2e4ce..a6c7aa233a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_postgresql.py b/src/oci/database_tools/models/database_tools_connection_postgresql.py index 3e31c9c610..8cc3057ba4 100644 --- a/src/oci/database_tools/models/database_tools_connection_postgresql.py +++ b/src/oci/database_tools/models/database_tools_connection_postgresql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_connection_postgresql_summary.py b/src/oci/database_tools/models/database_tools_connection_postgresql_summary.py index f716d2042a..492fc56ee2 100644 --- a/src/oci/database_tools/models/database_tools_connection_postgresql_summary.py +++ b/src/oci/database_tools/models/database_tools_connection_postgresql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 1eba7b44d7..32ec068ac1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 75b604749f..9ae686e74f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 9d931b60a2..733afc0add 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 41c328b6f4..2ed5b4ca0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 d668f8547d..719640c2e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 8e700a3065..797df9f049 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 7a0a341ae3..2c8adf6396 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc.py b/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc.py index e3ebd584a1..59bc90d794 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc_details.py b/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc_details.py index daaf2c17d5..fa0f1a43ef 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc_summary.py b/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc_summary.py index 7797db4a71..d41b371eff 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_generic_jdbc_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_my_sql.py b/src/oci/database_tools/models/database_tools_key_store_content_my_sql.py index 4acd5c3036..11629681cb 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_my_sql.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_my_sql_details.py b/src/oci/database_tools/models/database_tools_key_store_content_my_sql_details.py index baf83c3ab7..8c30864aa4 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_my_sql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_my_sql_summary.py b/src/oci/database_tools/models/database_tools_key_store_content_my_sql_summary.py index ee7532f852..03afa09aae 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_my_sql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_my_sql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_postgresql.py b/src/oci/database_tools/models/database_tools_key_store_content_postgresql.py index 326096b943..a845e67fc2 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_postgresql.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_postgresql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_postgresql_details.py b/src/oci/database_tools/models/database_tools_key_store_content_postgresql_details.py index 137fd549ba..9e27189bda 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_postgresql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_postgresql_summary.py b/src/oci/database_tools/models/database_tools_key_store_content_postgresql_summary.py index c7f3ee2686..43d4179796 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_postgresql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_postgresql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 d28c8f2ed2..22f572b8e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 99e2459a97..b327832973 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc.py index 38795c1a08..8c560f27f5 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc_details.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc_details.py index 52d3ac6647..690d7a6d12 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc_summary.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc_summary.py index e988e58382..2222c58f1e 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_generic_jdbc_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql.py index 3de12b7437..5b04b650e7 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql_details.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql_details.py index 82dee30626..1910a4335d 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql_summary.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql_summary.py index a2f0a3a5fb..ec6ea5435b 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_my_sql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql.py index 1456e2ca7d..5800d2c9d2 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql_details.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql_details.py index e3087e15e6..614ba9487c 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql_summary.py b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql_summary.py index 9988dfee59..c418976e7c 100644 --- a/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_content_secret_id_postgresql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 d1cb8c817a..c0491011d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 319a8633f8..5f5433a52e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 4f4418349b..6476ad52cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_generic_jdbc.py b/src/oci/database_tools/models/database_tools_key_store_generic_jdbc.py index 9b43aec10d..c7568122b4 100644 --- a/src/oci/database_tools/models/database_tools_key_store_generic_jdbc.py +++ b/src/oci/database_tools/models/database_tools_key_store_generic_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_generic_jdbc_details.py b/src/oci/database_tools/models/database_tools_key_store_generic_jdbc_details.py index 78579c0dc4..cd8adc82bb 100644 --- a/src/oci/database_tools/models/database_tools_key_store_generic_jdbc_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_generic_jdbc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_generic_jdbc_summary.py b/src/oci/database_tools/models/database_tools_key_store_generic_jdbc_summary.py index ccaddf4bb3..04e45824bd 100644 --- a/src/oci/database_tools/models/database_tools_key_store_generic_jdbc_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_generic_jdbc_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_my_sql.py b/src/oci/database_tools/models/database_tools_key_store_my_sql.py index ff508be967..be4eb09138 100644 --- a/src/oci/database_tools/models/database_tools_key_store_my_sql.py +++ b/src/oci/database_tools/models/database_tools_key_store_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_my_sql_details.py b/src/oci/database_tools/models/database_tools_key_store_my_sql_details.py index 98c5d7d7b6..8701cf8e64 100644 --- a/src/oci/database_tools/models/database_tools_key_store_my_sql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_my_sql_summary.py b/src/oci/database_tools/models/database_tools_key_store_my_sql_summary.py index f152d8e5ad..24c8975a6b 100644 --- a/src/oci/database_tools/models/database_tools_key_store_my_sql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_my_sql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 266bafda43..6fc0f113f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 18c397a776..8120d56e3e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc.py b/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc.py index 7a162c79e9..927d6c3887 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc_details.py b/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc_details.py index 45afad26ed..c327137ce6 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc_summary.py b/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc_summary.py index 9cbba853a4..9973b6ed26 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_generic_jdbc_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_my_sql.py b/src/oci/database_tools/models/database_tools_key_store_password_my_sql.py index 6c79daf594..3737a15b71 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_my_sql.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_my_sql_details.py b/src/oci/database_tools/models/database_tools_key_store_password_my_sql_details.py index ec27c1abd4..550c5db29c 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_my_sql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_my_sql_summary.py b/src/oci/database_tools/models/database_tools_key_store_password_my_sql_summary.py index a084220073..664cd06ec6 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_my_sql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_my_sql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_postgresql.py b/src/oci/database_tools/models/database_tools_key_store_password_postgresql.py index 703877753a..8322497697 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_postgresql.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_postgresql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_postgresql_details.py b/src/oci/database_tools/models/database_tools_key_store_password_postgresql_details.py index 38b705aaf3..f04aeca6cf 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_postgresql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_postgresql_summary.py b/src/oci/database_tools/models/database_tools_key_store_password_postgresql_summary.py index 908855b53b..717525be7a 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_postgresql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_postgresql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 b6c8311197..a809bfc0fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 5efe36408a..e0ea0dcd34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc.py index e53c605df2..001af2d8dd 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc_details.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc_details.py index 6f7e36ce59..891e55eb9c 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc_summary.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc_summary.py index ca0c454527..5becae11e2 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_generic_jdbc_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql.py index 2eda81ac13..9476de5a05 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql_details.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql_details.py index b03a9c7f5d..2a1d2128ba 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql_summary.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql_summary.py index ab02c4b423..2a871c88b5 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_my_sql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql.py index 1f22216bd7..895b6212af 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql_details.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql_details.py index ded98a437c..59449a530e 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql_summary.py b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql_summary.py index eab048ba4b..e271265087 100644 --- a/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_password_secret_id_postgresql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 6aeb9adaa5..a1863cad00 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 fa25154dfc..60512d31e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_postgresql.py b/src/oci/database_tools/models/database_tools_key_store_postgresql.py index 036f780a0c..038526e332 100644 --- a/src/oci/database_tools/models/database_tools_key_store_postgresql.py +++ b/src/oci/database_tools/models/database_tools_key_store_postgresql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_postgresql_details.py b/src/oci/database_tools/models/database_tools_key_store_postgresql_details.py index 2d9f29ba4b..f888d3e694 100644 --- a/src/oci/database_tools/models/database_tools_key_store_postgresql_details.py +++ b/src/oci/database_tools/models/database_tools_key_store_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_key_store_postgresql_summary.py b/src/oci/database_tools/models/database_tools_key_store_postgresql_summary.py index 091556603b..db765ad982 100644 --- a/src/oci/database_tools/models/database_tools_key_store_postgresql_summary.py +++ b/src/oci/database_tools/models/database_tools_key_store_postgresql_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 e8220dee0d..54d3147539 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 cc42329dd5..6c55318c00 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 89c6671b4f..f28bee6075 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 4819b5bcef..38dd2b1de2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 abb15f61aa..bc26b54e53 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 aeeff78fd4..2f5c06cf9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 10a323754b..21a6f8a886 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_related_resource_my_sql.py b/src/oci/database_tools/models/database_tools_related_resource_my_sql.py index 4e0435c7fa..6597d60ae9 100644 --- a/src/oci/database_tools/models/database_tools_related_resource_my_sql.py +++ b/src/oci/database_tools/models/database_tools_related_resource_my_sql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/database_tools_related_resource_postgresql.py b/src/oci/database_tools/models/database_tools_related_resource_postgresql.py index b2d3007ddd..6983d884e0 100644 --- a/src/oci/database_tools/models/database_tools_related_resource_postgresql.py +++ b/src/oci/database_tools/models/database_tools_related_resource_postgresql.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 162a95eb78..37f6d3e99c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 792abeaa48..6934433313 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 fe35bb6f22..8f30b15f67 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 a8d679fa6f..4229e29313 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 6e9e03c90c..de9a12b197 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 97510ab497..7d88fd5453 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/remove_resource_lock_details.py b/src/oci/database_tools/models/remove_resource_lock_details.py index 712947a718..4fb06c6640 100644 --- a/src/oci/database_tools/models/remove_resource_lock_details.py +++ b/src/oci/database_tools/models/remove_resource_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/resource_lock.py b/src/oci/database_tools/models/resource_lock.py index 7769655e7f..99bb9e0e3c 100644 --- a/src/oci/database_tools/models/resource_lock.py +++ b/src/oci/database_tools/models/resource_lock.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 ed34bf4857..0a118ba9d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/update_database_tools_connection_generic_jdbc_details.py b/src/oci/database_tools/models/update_database_tools_connection_generic_jdbc_details.py index e4a70e8d89..7aafb7b532 100644 --- a/src/oci/database_tools/models/update_database_tools_connection_generic_jdbc_details.py +++ b/src/oci/database_tools/models/update_database_tools_connection_generic_jdbc_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/update_database_tools_connection_my_sql_details.py b/src/oci/database_tools/models/update_database_tools_connection_my_sql_details.py index 13ba0df517..391e501713 100644 --- a/src/oci/database_tools/models/update_database_tools_connection_my_sql_details.py +++ b/src/oci/database_tools/models/update_database_tools_connection_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 d129c44c47..c392b10b18 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/update_database_tools_connection_postgresql_details.py b/src/oci/database_tools/models/update_database_tools_connection_postgresql_details.py index 32b75d7d4b..840f8f3169 100644 --- a/src/oci/database_tools/models/update_database_tools_connection_postgresql_details.py +++ b/src/oci/database_tools/models/update_database_tools_connection_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 d9a677fd5f..907951d06a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 b292994e8c..2feb0fc465 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/update_database_tools_related_resource_my_sql_details.py b/src/oci/database_tools/models/update_database_tools_related_resource_my_sql_details.py index 9fa4da4a68..580269480f 100644 --- a/src/oci/database_tools/models/update_database_tools_related_resource_my_sql_details.py +++ b/src/oci/database_tools/models/update_database_tools_related_resource_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/update_database_tools_related_resource_postgresql_details.py b/src/oci/database_tools/models/update_database_tools_related_resource_postgresql_details.py index 8e35c62048..6d7a4d2586 100644 --- a/src/oci/database_tools/models/update_database_tools_related_resource_postgresql_details.py +++ b/src/oci/database_tools/models/update_database_tools_related_resource_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 1140ec760d..b56877e5e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/validate_database_tools_connection_my_sql_details.py b/src/oci/database_tools/models/validate_database_tools_connection_my_sql_details.py index 6a0586b080..7d948d57f0 100644 --- a/src/oci/database_tools/models/validate_database_tools_connection_my_sql_details.py +++ b/src/oci/database_tools/models/validate_database_tools_connection_my_sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/validate_database_tools_connection_my_sql_result.py b/src/oci/database_tools/models/validate_database_tools_connection_my_sql_result.py index e56a959aa1..3f8492e43e 100644 --- a/src/oci/database_tools/models/validate_database_tools_connection_my_sql_result.py +++ b/src/oci/database_tools/models/validate_database_tools_connection_my_sql_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 372297bb1e..b345ebf98b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 0640d9b0e1..e528200331 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/validate_database_tools_connection_postgresql_details.py b/src/oci/database_tools/models/validate_database_tools_connection_postgresql_details.py index 7caca801e8..a70ca9fecd 100644 --- a/src/oci/database_tools/models/validate_database_tools_connection_postgresql_details.py +++ b/src/oci/database_tools/models/validate_database_tools_connection_postgresql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/validate_database_tools_connection_postgresql_result.py b/src/oci/database_tools/models/validate_database_tools_connection_postgresql_result.py index a75064a67c..7a5409ff80 100644 --- a/src/oci/database_tools/models/validate_database_tools_connection_postgresql_result.py +++ b/src/oci/database_tools/models/validate_database_tools_connection_postgresql_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 82e7325217..0207a679c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/work_request.py b/src/oci/database_tools/models/work_request.py index 79e49b9f65..8da6b240a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/work_request_collection.py b/src/oci/database_tools/models/work_request_collection.py index 567d3fd5dd..f07297ecc9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/work_request_error.py b/src/oci/database_tools/models/work_request_error.py index 325b1d6b39..ded9dee50b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 db297acd98..311da75967 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 61d2e18e37..7e41406928 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 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 72b845e4f4..bf3bd59f05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/work_request_resource.py b/src/oci/database_tools/models/work_request_resource.py index c5979966f6..8bfe75a8a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/database_tools/models/work_request_summary.py b/src/oci/database_tools/models/work_request_summary.py index ae0bd339c4..5f351002c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201005 diff --git a/src/oci/decorators.py b/src/oci/decorators.py index 083d0e58db..b5d3574ccd 100644 --- a/src/oci/decorators.py +++ b/src/oci/decorators.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. diff --git a/src/oci/delegate_access_control/__init__.py b/src/oci/delegate_access_control/__init__.py index e6fc1c6aaa..59daffce6f 100644 --- a/src/oci/delegate_access_control/__init__.py +++ b/src/oci/delegate_access_control/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/delegate_access_control_client.py b/src/oci/delegate_access_control/delegate_access_control_client.py index 696f988023..17b082d891 100644 --- a/src/oci/delegate_access_control/delegate_access_control_client.py +++ b/src/oci/delegate_access_control/delegate_access_control_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/delegate_access_control_client_composite_operations.py b/src/oci/delegate_access_control/delegate_access_control_client_composite_operations.py index c511912829..a7b37a9c38 100644 --- a/src/oci/delegate_access_control/delegate_access_control_client_composite_operations.py +++ b/src/oci/delegate_access_control/delegate_access_control_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/__init__.py b/src/oci/delegate_access_control/models/__init__.py index 98ff23ced3..432ac75c39 100644 --- a/src/oci/delegate_access_control/models/__init__.py +++ b/src/oci/delegate_access_control/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/approve_delegated_resource_access_request_details.py b/src/oci/delegate_access_control/models/approve_delegated_resource_access_request_details.py index ba73bb23b6..85214b1bfc 100644 --- a/src/oci/delegate_access_control/models/approve_delegated_resource_access_request_details.py +++ b/src/oci/delegate_access_control/models/approve_delegated_resource_access_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/change_delegation_control_compartment_details.py b/src/oci/delegate_access_control/models/change_delegation_control_compartment_details.py index 4db0c20e05..7213668b1a 100644 --- a/src/oci/delegate_access_control/models/change_delegation_control_compartment_details.py +++ b/src/oci/delegate_access_control/models/change_delegation_control_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/change_delegation_subscription_compartment_details.py b/src/oci/delegate_access_control/models/change_delegation_subscription_compartment_details.py index 6215efa69b..10cf22451e 100644 --- a/src/oci/delegate_access_control/models/change_delegation_subscription_compartment_details.py +++ b/src/oci/delegate_access_control/models/change_delegation_subscription_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/create_delegation_control_details.py b/src/oci/delegate_access_control/models/create_delegation_control_details.py index 306aa8c5c7..6b9043b1eb 100644 --- a/src/oci/delegate_access_control/models/create_delegation_control_details.py +++ b/src/oci/delegate_access_control/models/create_delegation_control_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/create_delegation_subscription_details.py b/src/oci/delegate_access_control/models/create_delegation_subscription_details.py index 68a25d2e7e..ecfbb52a25 100644 --- a/src/oci/delegate_access_control/models/create_delegation_subscription_details.py +++ b/src/oci/delegate_access_control/models/create_delegation_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegated_resource_access_request.py b/src/oci/delegate_access_control/models/delegated_resource_access_request.py index 4a07521258..f1a4eadc89 100644 --- a/src/oci/delegate_access_control/models/delegated_resource_access_request.py +++ b/src/oci/delegate_access_control/models/delegated_resource_access_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegated_resource_access_request_approval_details.py b/src/oci/delegate_access_control/models/delegated_resource_access_request_approval_details.py index cb09846f90..9f6cce4851 100644 --- a/src/oci/delegate_access_control/models/delegated_resource_access_request_approval_details.py +++ b/src/oci/delegate_access_control/models/delegated_resource_access_request_approval_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegated_resource_access_request_audit_log_report.py b/src/oci/delegate_access_control/models/delegated_resource_access_request_audit_log_report.py index 65cc6a8e6b..851609a44c 100644 --- a/src/oci/delegate_access_control/models/delegated_resource_access_request_audit_log_report.py +++ b/src/oci/delegate_access_control/models/delegated_resource_access_request_audit_log_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegated_resource_access_request_history_collection.py b/src/oci/delegate_access_control/models/delegated_resource_access_request_history_collection.py index abf4f1d75f..a9c881364b 100644 --- a/src/oci/delegate_access_control/models/delegated_resource_access_request_history_collection.py +++ b/src/oci/delegate_access_control/models/delegated_resource_access_request_history_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegated_resource_access_request_history_summary.py b/src/oci/delegate_access_control/models/delegated_resource_access_request_history_summary.py index 8a5130cc82..f6d93429e3 100644 --- a/src/oci/delegate_access_control/models/delegated_resource_access_request_history_summary.py +++ b/src/oci/delegate_access_control/models/delegated_resource_access_request_history_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegated_resource_access_request_summary.py b/src/oci/delegate_access_control/models/delegated_resource_access_request_summary.py index 199678de23..63e66150b9 100644 --- a/src/oci/delegate_access_control/models/delegated_resource_access_request_summary.py +++ b/src/oci/delegate_access_control/models/delegated_resource_access_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegated_resource_access_request_summary_collection.py b/src/oci/delegate_access_control/models/delegated_resource_access_request_summary_collection.py index fd3877f418..e661a7cc7a 100644 --- a/src/oci/delegate_access_control/models/delegated_resource_access_request_summary_collection.py +++ b/src/oci/delegate_access_control/models/delegated_resource_access_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegation_control.py b/src/oci/delegate_access_control/models/delegation_control.py index 33386ee29c..838f7f7d09 100644 --- a/src/oci/delegate_access_control/models/delegation_control.py +++ b/src/oci/delegate_access_control/models/delegation_control.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegation_control_resource_collection.py b/src/oci/delegate_access_control/models/delegation_control_resource_collection.py index 273b62550d..ee95d28954 100644 --- a/src/oci/delegate_access_control/models/delegation_control_resource_collection.py +++ b/src/oci/delegate_access_control/models/delegation_control_resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegation_control_resource_summary.py b/src/oci/delegate_access_control/models/delegation_control_resource_summary.py index e2b25bd6c6..43e702bfaa 100644 --- a/src/oci/delegate_access_control/models/delegation_control_resource_summary.py +++ b/src/oci/delegate_access_control/models/delegation_control_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegation_control_summary.py b/src/oci/delegate_access_control/models/delegation_control_summary.py index 5641db3dc1..7a046bcb42 100644 --- a/src/oci/delegate_access_control/models/delegation_control_summary.py +++ b/src/oci/delegate_access_control/models/delegation_control_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegation_control_summary_collection.py b/src/oci/delegate_access_control/models/delegation_control_summary_collection.py index c28f6456a1..d0a11118c5 100644 --- a/src/oci/delegate_access_control/models/delegation_control_summary_collection.py +++ b/src/oci/delegate_access_control/models/delegation_control_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegation_subscription.py b/src/oci/delegate_access_control/models/delegation_subscription.py index 6a52120b36..030450b37e 100644 --- a/src/oci/delegate_access_control/models/delegation_subscription.py +++ b/src/oci/delegate_access_control/models/delegation_subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegation_subscription_summary.py b/src/oci/delegate_access_control/models/delegation_subscription_summary.py index 9ee46679fc..0e32d50644 100644 --- a/src/oci/delegate_access_control/models/delegation_subscription_summary.py +++ b/src/oci/delegate_access_control/models/delegation_subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/delegation_subscription_summary_collection.py b/src/oci/delegate_access_control/models/delegation_subscription_summary_collection.py index 39c59824c0..eb94e41af1 100644 --- a/src/oci/delegate_access_control/models/delegation_subscription_summary_collection.py +++ b/src/oci/delegate_access_control/models/delegation_subscription_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/reject_delegated_resource_access_request_details.py b/src/oci/delegate_access_control/models/reject_delegated_resource_access_request_details.py index 32cca80e9b..b8f8a6f53f 100644 --- a/src/oci/delegate_access_control/models/reject_delegated_resource_access_request_details.py +++ b/src/oci/delegate_access_control/models/reject_delegated_resource_access_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/revoke_delegated_resource_access_request_details.py b/src/oci/delegate_access_control/models/revoke_delegated_resource_access_request_details.py index c098885c97..0bd628a65d 100644 --- a/src/oci/delegate_access_control/models/revoke_delegated_resource_access_request_details.py +++ b/src/oci/delegate_access_control/models/revoke_delegated_resource_access_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider.py b/src/oci/delegate_access_control/models/service_provider.py index 643dc96212..1a39ce7bec 100644 --- a/src/oci/delegate_access_control/models/service_provider.py +++ b/src/oci/delegate_access_control/models/service_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider_action.py b/src/oci/delegate_access_control/models/service_provider_action.py index 5d279e5ca2..ad102d2b2f 100644 --- a/src/oci/delegate_access_control/models/service_provider_action.py +++ b/src/oci/delegate_access_control/models/service_provider_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider_action_properties.py b/src/oci/delegate_access_control/models/service_provider_action_properties.py index 0dfec6ba91..a5999f66d4 100644 --- a/src/oci/delegate_access_control/models/service_provider_action_properties.py +++ b/src/oci/delegate_access_control/models/service_provider_action_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider_action_summary.py b/src/oci/delegate_access_control/models/service_provider_action_summary.py index de9f8f03af..012d719984 100644 --- a/src/oci/delegate_access_control/models/service_provider_action_summary.py +++ b/src/oci/delegate_access_control/models/service_provider_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider_action_summary_collection.py b/src/oci/delegate_access_control/models/service_provider_action_summary_collection.py index a84c099b6e..5ed63804d0 100644 --- a/src/oci/delegate_access_control/models/service_provider_action_summary_collection.py +++ b/src/oci/delegate_access_control/models/service_provider_action_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider_interaction_collection.py b/src/oci/delegate_access_control/models/service_provider_interaction_collection.py index 54c024f6ce..bd5d830a5f 100644 --- a/src/oci/delegate_access_control/models/service_provider_interaction_collection.py +++ b/src/oci/delegate_access_control/models/service_provider_interaction_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider_interaction_request_details.py b/src/oci/delegate_access_control/models/service_provider_interaction_request_details.py index faf8670777..8e0e53df29 100644 --- a/src/oci/delegate_access_control/models/service_provider_interaction_request_details.py +++ b/src/oci/delegate_access_control/models/service_provider_interaction_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider_interaction_summary.py b/src/oci/delegate_access_control/models/service_provider_interaction_summary.py index f7638051b3..81f713c2cb 100644 --- a/src/oci/delegate_access_control/models/service_provider_interaction_summary.py +++ b/src/oci/delegate_access_control/models/service_provider_interaction_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider_summary.py b/src/oci/delegate_access_control/models/service_provider_summary.py index 305b9bdec5..eadf77c6ef 100644 --- a/src/oci/delegate_access_control/models/service_provider_summary.py +++ b/src/oci/delegate_access_control/models/service_provider_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/service_provider_summary_collection.py b/src/oci/delegate_access_control/models/service_provider_summary_collection.py index ea55954e27..0333e9b11a 100644 --- a/src/oci/delegate_access_control/models/service_provider_summary_collection.py +++ b/src/oci/delegate_access_control/models/service_provider_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/update_delegation_control_details.py b/src/oci/delegate_access_control/models/update_delegation_control_details.py index dddcab7694..1d9a705eaf 100644 --- a/src/oci/delegate_access_control/models/update_delegation_control_details.py +++ b/src/oci/delegate_access_control/models/update_delegation_control_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/update_delegation_subscription_details.py b/src/oci/delegate_access_control/models/update_delegation_subscription_details.py index f1038542ce..6d6067e0d4 100644 --- a/src/oci/delegate_access_control/models/update_delegation_subscription_details.py +++ b/src/oci/delegate_access_control/models/update_delegation_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/work_request.py b/src/oci/delegate_access_control/models/work_request.py index e22bf277ea..718b29f3ac 100644 --- a/src/oci/delegate_access_control/models/work_request.py +++ b/src/oci/delegate_access_control/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/work_request_error.py b/src/oci/delegate_access_control/models/work_request_error.py index 025288b885..b3ef080113 100644 --- a/src/oci/delegate_access_control/models/work_request_error.py +++ b/src/oci/delegate_access_control/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/work_request_error_collection.py b/src/oci/delegate_access_control/models/work_request_error_collection.py index d43fc15397..76475c6d2e 100644 --- a/src/oci/delegate_access_control/models/work_request_error_collection.py +++ b/src/oci/delegate_access_control/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/work_request_log_entry.py b/src/oci/delegate_access_control/models/work_request_log_entry.py index e25a0f3b55..a2163b2e69 100644 --- a/src/oci/delegate_access_control/models/work_request_log_entry.py +++ b/src/oci/delegate_access_control/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/work_request_log_entry_collection.py b/src/oci/delegate_access_control/models/work_request_log_entry_collection.py index 5779ad7ffa..faf139db61 100644 --- a/src/oci/delegate_access_control/models/work_request_log_entry_collection.py +++ b/src/oci/delegate_access_control/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/work_request_resource.py b/src/oci/delegate_access_control/models/work_request_resource.py index e64d463c9e..3029b32b28 100644 --- a/src/oci/delegate_access_control/models/work_request_resource.py +++ b/src/oci/delegate_access_control/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/work_request_summary.py b/src/oci/delegate_access_control/models/work_request_summary.py index cfb96daddf..ef1c18289a 100644 --- a/src/oci/delegate_access_control/models/work_request_summary.py +++ b/src/oci/delegate_access_control/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/models/work_request_summary_collection.py b/src/oci/delegate_access_control/models/work_request_summary_collection.py index 0b0bd2a7a5..b473c3ff53 100644 --- a/src/oci/delegate_access_control/models/work_request_summary_collection.py +++ b/src/oci/delegate_access_control/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/work_request_client.py b/src/oci/delegate_access_control/work_request_client.py index 3b4a5b26c4..6d6536bc5a 100644 --- a/src/oci/delegate_access_control/work_request_client.py +++ b/src/oci/delegate_access_control/work_request_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/delegate_access_control/work_request_client_composite_operations.py b/src/oci/delegate_access_control/work_request_client_composite_operations.py index 96028b2cd6..c5952a503e 100644 --- a/src/oci/delegate_access_control/work_request_client_composite_operations.py +++ b/src/oci/delegate_access_control/work_request_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230801 diff --git a/src/oci/demand_signal/__init__.py b/src/oci/demand_signal/__init__.py index 4f17b2456d..f5949b86b4 100644 --- a/src/oci/demand_signal/__init__.py +++ b/src/oci/demand_signal/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/__init__.py b/src/oci/demand_signal/models/__init__.py index 40ac3dc110..065cf720ea 100644 --- a/src/oci/demand_signal/models/__init__.py +++ b/src/oci/demand_signal/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/change_occ_demand_signal_compartment_details.py b/src/oci/demand_signal/models/change_occ_demand_signal_compartment_details.py index 6ebff4d4e8..2945a91173 100644 --- a/src/oci/demand_signal/models/change_occ_demand_signal_compartment_details.py +++ b/src/oci/demand_signal/models/change_occ_demand_signal_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/create_occ_demand_signal_details.py b/src/oci/demand_signal/models/create_occ_demand_signal_details.py index 8111f1c02c..23a286536c 100644 --- a/src/oci/demand_signal/models/create_occ_demand_signal_details.py +++ b/src/oci/demand_signal/models/create_occ_demand_signal_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/occ_demand_signal.py b/src/oci/demand_signal/models/occ_demand_signal.py index b0ace35739..814ae0cac3 100644 --- a/src/oci/demand_signal/models/occ_demand_signal.py +++ b/src/oci/demand_signal/models/occ_demand_signal.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/occ_demand_signal_collection.py b/src/oci/demand_signal/models/occ_demand_signal_collection.py index e081e9afbd..64f2fb686e 100644 --- a/src/oci/demand_signal/models/occ_demand_signal_collection.py +++ b/src/oci/demand_signal/models/occ_demand_signal_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/occ_demand_signal_data.py b/src/oci/demand_signal/models/occ_demand_signal_data.py index 4e7e3b6aa2..b76ff8404e 100644 --- a/src/oci/demand_signal/models/occ_demand_signal_data.py +++ b/src/oci/demand_signal/models/occ_demand_signal_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/occ_demand_signal_summary.py b/src/oci/demand_signal/models/occ_demand_signal_summary.py index dcaf0a7ba4..d885cc0680 100644 --- a/src/oci/demand_signal/models/occ_demand_signal_summary.py +++ b/src/oci/demand_signal/models/occ_demand_signal_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/occ_demand_signal_value.py b/src/oci/demand_signal/models/occ_demand_signal_value.py index 58ef139e1b..4bc176e2a0 100644 --- a/src/oci/demand_signal/models/occ_demand_signal_value.py +++ b/src/oci/demand_signal/models/occ_demand_signal_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_insert_instruction.py b/src/oci/demand_signal/models/patch_insert_instruction.py index 8346db4816..8cbc22a455 100644 --- a/src/oci/demand_signal/models/patch_insert_instruction.py +++ b/src/oci/demand_signal/models/patch_insert_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_insert_multiple_instruction.py b/src/oci/demand_signal/models/patch_insert_multiple_instruction.py index 63b3c3249c..7ea262f5a6 100644 --- a/src/oci/demand_signal/models/patch_insert_multiple_instruction.py +++ b/src/oci/demand_signal/models/patch_insert_multiple_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_instruction.py b/src/oci/demand_signal/models/patch_instruction.py index 004c755692..bd70937bd6 100644 --- a/src/oci/demand_signal/models/patch_instruction.py +++ b/src/oci/demand_signal/models/patch_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_merge_instruction.py b/src/oci/demand_signal/models/patch_merge_instruction.py index 58e50df957..c7a02b6c11 100644 --- a/src/oci/demand_signal/models/patch_merge_instruction.py +++ b/src/oci/demand_signal/models/patch_merge_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_move_instruction.py b/src/oci/demand_signal/models/patch_move_instruction.py index baff4d7f61..91a8f588e1 100644 --- a/src/oci/demand_signal/models/patch_move_instruction.py +++ b/src/oci/demand_signal/models/patch_move_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_occ_demand_signal_details.py b/src/oci/demand_signal/models/patch_occ_demand_signal_details.py index 5ac5bdd872..b06891dc8c 100644 --- a/src/oci/demand_signal/models/patch_occ_demand_signal_details.py +++ b/src/oci/demand_signal/models/patch_occ_demand_signal_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_prohibit_instruction.py b/src/oci/demand_signal/models/patch_prohibit_instruction.py index bf8b720efe..016301d02b 100644 --- a/src/oci/demand_signal/models/patch_prohibit_instruction.py +++ b/src/oci/demand_signal/models/patch_prohibit_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_remove_instruction.py b/src/oci/demand_signal/models/patch_remove_instruction.py index 0588a7124a..01cdb1420f 100644 --- a/src/oci/demand_signal/models/patch_remove_instruction.py +++ b/src/oci/demand_signal/models/patch_remove_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_replace_instruction.py b/src/oci/demand_signal/models/patch_replace_instruction.py index 185c9e7679..5a69121a05 100644 --- a/src/oci/demand_signal/models/patch_replace_instruction.py +++ b/src/oci/demand_signal/models/patch_replace_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/patch_require_instruction.py b/src/oci/demand_signal/models/patch_require_instruction.py index d6561a3007..91e9578463 100644 --- a/src/oci/demand_signal/models/patch_require_instruction.py +++ b/src/oci/demand_signal/models/patch_require_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/models/update_occ_demand_signal_details.py b/src/oci/demand_signal/models/update_occ_demand_signal_details.py index 3ea9f7ab0d..13e2eb86d0 100644 --- a/src/oci/demand_signal/models/update_occ_demand_signal_details.py +++ b/src/oci/demand_signal/models/update_occ_demand_signal_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/occ_demand_signal_client.py b/src/oci/demand_signal/occ_demand_signal_client.py index 8d9dd545d4..192105f6d3 100644 --- a/src/oci/demand_signal/occ_demand_signal_client.py +++ b/src/oci/demand_signal/occ_demand_signal_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/demand_signal/occ_demand_signal_client_composite_operations.py b/src/oci/demand_signal/occ_demand_signal_client_composite_operations.py index 9b0f3d6e50..35ba4a9e10 100644 --- a/src/oci/demand_signal/occ_demand_signal_client_composite_operations.py +++ b/src/oci/demand_signal/occ_demand_signal_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/desktops/__init__.py b/src/oci/desktops/__init__.py index eea748e600..d1709bc41f 100644 --- a/src/oci/desktops/__init__.py +++ b/src/oci/desktops/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/desktop_service_client.py b/src/oci/desktops/desktop_service_client.py index ddf67223a9..8dfc61a4a2 100644 --- a/src/oci/desktops/desktop_service_client.py +++ b/src/oci/desktops/desktop_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/desktop_service_client_composite_operations.py b/src/oci/desktops/desktop_service_client_composite_operations.py index d77adfc3e4..33b81d566e 100644 --- a/src/oci/desktops/desktop_service_client_composite_operations.py +++ b/src/oci/desktops/desktop_service_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/__init__.py b/src/oci/desktops/models/__init__.py index 1fb567dab5..40e581e757 100644 --- a/src/oci/desktops/models/__init__.py +++ b/src/oci/desktops/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/change_desktop_pool_compartment_details.py b/src/oci/desktops/models/change_desktop_pool_compartment_details.py index 53fa6709ea..ab2626d21a 100644 --- a/src/oci/desktops/models/change_desktop_pool_compartment_details.py +++ b/src/oci/desktops/models/change_desktop_pool_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/create_desktop_pool_desktop_session_lifecycle_actions.py b/src/oci/desktops/models/create_desktop_pool_desktop_session_lifecycle_actions.py index 2fca8bfc34..9999c2509b 100644 --- a/src/oci/desktops/models/create_desktop_pool_desktop_session_lifecycle_actions.py +++ b/src/oci/desktops/models/create_desktop_pool_desktop_session_lifecycle_actions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/create_desktop_pool_details.py b/src/oci/desktops/models/create_desktop_pool_details.py index fee157c448..f94d601b51 100644 --- a/src/oci/desktops/models/create_desktop_pool_details.py +++ b/src/oci/desktops/models/create_desktop_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/create_desktop_pool_private_access_details.py b/src/oci/desktops/models/create_desktop_pool_private_access_details.py index fcbd80f563..a793f631fc 100644 --- a/src/oci/desktops/models/create_desktop_pool_private_access_details.py +++ b/src/oci/desktops/models/create_desktop_pool_private_access_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/create_desktop_pool_shape_config_details.py b/src/oci/desktops/models/create_desktop_pool_shape_config_details.py index d45b5fe39c..c950a15a00 100644 --- a/src/oci/desktops/models/create_desktop_pool_shape_config_details.py +++ b/src/oci/desktops/models/create_desktop_pool_shape_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop.py b/src/oci/desktops/models/desktop.py index 19802ece66..89c776b13f 100644 --- a/src/oci/desktops/models/desktop.py +++ b/src/oci/desktops/models/desktop.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_availability_policy.py b/src/oci/desktops/models/desktop_availability_policy.py index aaf293a76b..e08bfad2b2 100644 --- a/src/oci/desktops/models/desktop_availability_policy.py +++ b/src/oci/desktops/models/desktop_availability_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_collection.py b/src/oci/desktops/models/desktop_collection.py index 63922880a3..42283e5437 100644 --- a/src/oci/desktops/models/desktop_collection.py +++ b/src/oci/desktops/models/desktop_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_device_policy.py b/src/oci/desktops/models/desktop_device_policy.py index 45612069b9..c4b5652325 100644 --- a/src/oci/desktops/models/desktop_device_policy.py +++ b/src/oci/desktops/models/desktop_device_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_image.py b/src/oci/desktops/models/desktop_image.py index 75b24a69e2..7e6cb915c2 100644 --- a/src/oci/desktops/models/desktop_image.py +++ b/src/oci/desktops/models/desktop_image.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_network_configuration.py b/src/oci/desktops/models/desktop_network_configuration.py index e40d840281..1673a055aa 100644 --- a/src/oci/desktops/models/desktop_network_configuration.py +++ b/src/oci/desktops/models/desktop_network_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_pool.py b/src/oci/desktops/models/desktop_pool.py index 6ff8b872fb..59e516189d 100644 --- a/src/oci/desktops/models/desktop_pool.py +++ b/src/oci/desktops/models/desktop_pool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_pool_collection.py b/src/oci/desktops/models/desktop_pool_collection.py index e5c6650fc4..89409bf199 100644 --- a/src/oci/desktops/models/desktop_pool_collection.py +++ b/src/oci/desktops/models/desktop_pool_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_pool_desktop_collection.py b/src/oci/desktops/models/desktop_pool_desktop_collection.py index de09eee5b5..77bfa3420d 100644 --- a/src/oci/desktops/models/desktop_pool_desktop_collection.py +++ b/src/oci/desktops/models/desktop_pool_desktop_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_pool_desktop_summary.py b/src/oci/desktops/models/desktop_pool_desktop_summary.py index 90e4b6a6f6..6487a8e2cc 100644 --- a/src/oci/desktops/models/desktop_pool_desktop_summary.py +++ b/src/oci/desktops/models/desktop_pool_desktop_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_pool_private_access_details.py b/src/oci/desktops/models/desktop_pool_private_access_details.py index 1d8c1d707f..0dd88f6ace 100644 --- a/src/oci/desktops/models/desktop_pool_private_access_details.py +++ b/src/oci/desktops/models/desktop_pool_private_access_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_pool_shape_config.py b/src/oci/desktops/models/desktop_pool_shape_config.py index a6069b47fe..29c163e159 100644 --- a/src/oci/desktops/models/desktop_pool_shape_config.py +++ b/src/oci/desktops/models/desktop_pool_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_pool_summary.py b/src/oci/desktops/models/desktop_pool_summary.py index a023fef591..680520a6ee 100644 --- a/src/oci/desktops/models/desktop_pool_summary.py +++ b/src/oci/desktops/models/desktop_pool_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_pool_volume_collection.py b/src/oci/desktops/models/desktop_pool_volume_collection.py index b2c4a3fe2e..0c515da790 100644 --- a/src/oci/desktops/models/desktop_pool_volume_collection.py +++ b/src/oci/desktops/models/desktop_pool_volume_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_pool_volume_summary.py b/src/oci/desktops/models/desktop_pool_volume_summary.py index d9ceadf5a5..6790d74b15 100644 --- a/src/oci/desktops/models/desktop_pool_volume_summary.py +++ b/src/oci/desktops/models/desktop_pool_volume_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_schedule.py b/src/oci/desktops/models/desktop_schedule.py index 570c7e7aa6..a2e847a010 100644 --- a/src/oci/desktops/models/desktop_schedule.py +++ b/src/oci/desktops/models/desktop_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_session_lifecycle_actions.py b/src/oci/desktops/models/desktop_session_lifecycle_actions.py index 509564944b..8c970cccf0 100644 --- a/src/oci/desktops/models/desktop_session_lifecycle_actions.py +++ b/src/oci/desktops/models/desktop_session_lifecycle_actions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/desktop_summary.py b/src/oci/desktops/models/desktop_summary.py index 60b0127c96..255f7dcc25 100644 --- a/src/oci/desktops/models/desktop_summary.py +++ b/src/oci/desktops/models/desktop_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/disconnect_config.py b/src/oci/desktops/models/disconnect_config.py index dbcfa47933..8b7c2f3741 100644 --- a/src/oci/desktops/models/disconnect_config.py +++ b/src/oci/desktops/models/disconnect_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/hosting_options.py b/src/oci/desktops/models/hosting_options.py index d8de9c3101..468525647e 100644 --- a/src/oci/desktops/models/hosting_options.py +++ b/src/oci/desktops/models/hosting_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/inactivity_config.py b/src/oci/desktops/models/inactivity_config.py index 33b10c0630..1f2fb2bec5 100644 --- a/src/oci/desktops/models/inactivity_config.py +++ b/src/oci/desktops/models/inactivity_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/update_desktop_details.py b/src/oci/desktops/models/update_desktop_details.py index b75f4c1941..65956e9b1d 100644 --- a/src/oci/desktops/models/update_desktop_details.py +++ b/src/oci/desktops/models/update_desktop_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/update_desktop_pool_desktop_session_lifecycle_actions.py b/src/oci/desktops/models/update_desktop_pool_desktop_session_lifecycle_actions.py index cef72a9a07..fbd2109d00 100644 --- a/src/oci/desktops/models/update_desktop_pool_desktop_session_lifecycle_actions.py +++ b/src/oci/desktops/models/update_desktop_pool_desktop_session_lifecycle_actions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/update_desktop_pool_details.py b/src/oci/desktops/models/update_desktop_pool_details.py index df3b1b702b..9672f16c4a 100644 --- a/src/oci/desktops/models/update_desktop_pool_details.py +++ b/src/oci/desktops/models/update_desktop_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/work_request.py b/src/oci/desktops/models/work_request.py index 15a7075882..8b052567cf 100644 --- a/src/oci/desktops/models/work_request.py +++ b/src/oci/desktops/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/work_request_error.py b/src/oci/desktops/models/work_request_error.py index 304447040c..f218e3d8da 100644 --- a/src/oci/desktops/models/work_request_error.py +++ b/src/oci/desktops/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/work_request_error_collection.py b/src/oci/desktops/models/work_request_error_collection.py index 39ed17c6df..c2e3e7eacb 100644 --- a/src/oci/desktops/models/work_request_error_collection.py +++ b/src/oci/desktops/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/work_request_log_entry.py b/src/oci/desktops/models/work_request_log_entry.py index 7e6e4cd685..e22c1d3fa3 100644 --- a/src/oci/desktops/models/work_request_log_entry.py +++ b/src/oci/desktops/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/work_request_log_entry_collection.py b/src/oci/desktops/models/work_request_log_entry_collection.py index ab349cf21f..08750bb216 100644 --- a/src/oci/desktops/models/work_request_log_entry_collection.py +++ b/src/oci/desktops/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/work_request_resource.py b/src/oci/desktops/models/work_request_resource.py index 5156f8039b..850d82602e 100644 --- a/src/oci/desktops/models/work_request_resource.py +++ b/src/oci/desktops/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/work_request_summary.py b/src/oci/desktops/models/work_request_summary.py index 2493e28aca..e40c64c30b 100644 --- a/src/oci/desktops/models/work_request_summary.py +++ b/src/oci/desktops/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/desktops/models/work_request_summary_collection.py b/src/oci/desktops/models/work_request_summary_collection.py index e973f6f6e0..58eaa7c38c 100644 --- a/src/oci/desktops/models/work_request_summary_collection.py +++ b/src/oci/desktops/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220618 diff --git a/src/oci/devops/__init__.py b/src/oci/devops/__init__.py index fe1de69e7a..e70aeb3f97 100644 --- a/src/oci/devops/__init__.py +++ b/src/oci/devops/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/devops_client.py b/src/oci/devops/devops_client.py index ad64ed844a..b387d95b04 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/devops_client_composite_operations.py b/src/oci/devops/devops_client_composite_operations.py index 76b6abc7b5..8ba9cb2a47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/__init__.py b/src/oci/devops/models/__init__.py index 6636de0e32..6d935154c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/absolute_wait_criteria.py b/src/oci/devops/models/absolute_wait_criteria.py index 69e3a805f7..068e88f304 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/absolute_wait_criteria_summary.py b/src/oci/devops/models/absolute_wait_criteria_summary.py index f2d03583d0..0c980ecc4d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 971ae8e391..11b0f04e6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/approval_action.py b/src/oci/devops/models/approval_action.py index 2f204689d7..61616a9068 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/approval_activity_summary.py b/src/oci/devops/models/approval_activity_summary.py index eba21355b9..0787da9190 100644 --- a/src/oci/devops/models/approval_activity_summary.py +++ b/src/oci/devops/models/approval_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/approval_policy.py b/src/oci/devops/models/approval_policy.py index bc8aa1beb0..c5c0ed1579 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/approval_rule.py b/src/oci/devops/models/approval_rule.py index 12c3aa5899..5d66d2fda2 100644 --- a/src/oci/devops/models/approval_rule.py +++ b/src/oci/devops/models/approval_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/approval_rule_collection.py b/src/oci/devops/models/approval_rule_collection.py index fe3c6eacd6..4516ae8b4f 100644 --- a/src/oci/devops/models/approval_rule_collection.py +++ b/src/oci/devops/models/approval_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/approval_rule_merge_check.py b/src/oci/devops/models/approval_rule_merge_check.py index 959c8a7fad..7dc304acc0 100644 --- a/src/oci/devops/models/approval_rule_merge_check.py +++ b/src/oci/devops/models/approval_rule_merge_check.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/approve_deployment_details.py b/src/oci/devops/models/approve_deployment_details.py index 0ee529f8cd..148b4e52bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 6dd5b9af14..694d0b98b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/backend_set_ip_collection.py b/src/oci/devops/models/backend_set_ip_collection.py index 745ee5696e..c90b0cc35a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_app_password_connection.py b/src/oci/devops/models/bitbucket_cloud_app_password_connection.py index e089b73c6b..be912f0ca0 100644 --- a/src/oci/devops/models/bitbucket_cloud_app_password_connection.py +++ b/src/oci/devops/models/bitbucket_cloud_app_password_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_app_password_connection_summary.py b/src/oci/devops/models/bitbucket_cloud_app_password_connection_summary.py index 054a4de6ba..7a522f6505 100644 --- a/src/oci/devops/models/bitbucket_cloud_app_password_connection_summary.py +++ b/src/oci/devops/models/bitbucket_cloud_app_password_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_build_run_source.py b/src/oci/devops/models/bitbucket_cloud_build_run_source.py index 49e86e49f7..48b1d31f9c 100644 --- a/src/oci/devops/models/bitbucket_cloud_build_run_source.py +++ b/src/oci/devops/models/bitbucket_cloud_build_run_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_build_source.py b/src/oci/devops/models/bitbucket_cloud_build_source.py index 6dc1c9613d..0890332e5e 100644 --- a/src/oci/devops/models/bitbucket_cloud_build_source.py +++ b/src/oci/devops/models/bitbucket_cloud_build_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_filter.py b/src/oci/devops/models/bitbucket_cloud_filter.py index d9b6fc013b..dc10cad524 100644 --- a/src/oci/devops/models/bitbucket_cloud_filter.py +++ b/src/oci/devops/models/bitbucket_cloud_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_filter_attributes.py b/src/oci/devops/models/bitbucket_cloud_filter_attributes.py index 0d15464b56..b988e4a4f4 100644 --- a/src/oci/devops/models/bitbucket_cloud_filter_attributes.py +++ b/src/oci/devops/models/bitbucket_cloud_filter_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_filter_exclusion_attributes.py b/src/oci/devops/models/bitbucket_cloud_filter_exclusion_attributes.py index ec56c05cb0..5199577ebd 100644 --- a/src/oci/devops/models/bitbucket_cloud_filter_exclusion_attributes.py +++ b/src/oci/devops/models/bitbucket_cloud_filter_exclusion_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_trigger.py b/src/oci/devops/models/bitbucket_cloud_trigger.py index 583ec81166..f47bdc8251 100644 --- a/src/oci/devops/models/bitbucket_cloud_trigger.py +++ b/src/oci/devops/models/bitbucket_cloud_trigger.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_trigger_create_result.py b/src/oci/devops/models/bitbucket_cloud_trigger_create_result.py index 6ad724a682..620036cb87 100644 --- a/src/oci/devops/models/bitbucket_cloud_trigger_create_result.py +++ b/src/oci/devops/models/bitbucket_cloud_trigger_create_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_cloud_trigger_summary.py b/src/oci/devops/models/bitbucket_cloud_trigger_summary.py index b22897cbd3..e64515dc78 100644 --- a/src/oci/devops/models/bitbucket_cloud_trigger_summary.py +++ b/src/oci/devops/models/bitbucket_cloud_trigger_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_server_access_token_connection.py b/src/oci/devops/models/bitbucket_server_access_token_connection.py index 3c3a0f01da..7e6524e9e2 100644 --- a/src/oci/devops/models/bitbucket_server_access_token_connection.py +++ b/src/oci/devops/models/bitbucket_server_access_token_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_server_build_run_source.py b/src/oci/devops/models/bitbucket_server_build_run_source.py index 6d976b0148..3b919cab57 100644 --- a/src/oci/devops/models/bitbucket_server_build_run_source.py +++ b/src/oci/devops/models/bitbucket_server_build_run_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_server_build_source.py b/src/oci/devops/models/bitbucket_server_build_source.py index e79a9fa5dd..a4a732353a 100644 --- a/src/oci/devops/models/bitbucket_server_build_source.py +++ b/src/oci/devops/models/bitbucket_server_build_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_server_filter.py b/src/oci/devops/models/bitbucket_server_filter.py index 3d6d6d85b2..b6954e42ef 100644 --- a/src/oci/devops/models/bitbucket_server_filter.py +++ b/src/oci/devops/models/bitbucket_server_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_server_filter_attributes.py b/src/oci/devops/models/bitbucket_server_filter_attributes.py index 706414d1cb..185ee9e0d3 100644 --- a/src/oci/devops/models/bitbucket_server_filter_attributes.py +++ b/src/oci/devops/models/bitbucket_server_filter_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_server_token_connection_summary.py b/src/oci/devops/models/bitbucket_server_token_connection_summary.py index e9eff54e6f..bc8266f106 100644 --- a/src/oci/devops/models/bitbucket_server_token_connection_summary.py +++ b/src/oci/devops/models/bitbucket_server_token_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_server_trigger.py b/src/oci/devops/models/bitbucket_server_trigger.py index 862f97cfbd..fce5c2e520 100644 --- a/src/oci/devops/models/bitbucket_server_trigger.py +++ b/src/oci/devops/models/bitbucket_server_trigger.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_server_trigger_create_result.py b/src/oci/devops/models/bitbucket_server_trigger_create_result.py index 10ffaf0c69..5fff523b04 100644 --- a/src/oci/devops/models/bitbucket_server_trigger_create_result.py +++ b/src/oci/devops/models/bitbucket_server_trigger_create_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/bitbucket_server_trigger_summary.py b/src/oci/devops/models/bitbucket_server_trigger_summary.py index 690814cd47..67e831e705 100644 --- a/src/oci/devops/models/bitbucket_server_trigger_summary.py +++ b/src/oci/devops/models/bitbucket_server_trigger_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_merge_check.py b/src/oci/devops/models/build_merge_check.py index 915424d22f..1d32053a3e 100644 --- a/src/oci/devops/models/build_merge_check.py +++ b/src/oci/devops/models/build_merge_check.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_outputs.py b/src/oci/devops/models/build_outputs.py index 7dfaefa1cd..83f37d7b0d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_pipeline.py b/src/oci/devops/models/build_pipeline.py index 4133bdc78e..048980c19c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_pipeline_collection.py b/src/oci/devops/models/build_pipeline_collection.py index 0263c3686a..8283cfbb4e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_pipeline_parameter.py b/src/oci/devops/models/build_pipeline_parameter.py index 17437d865e..b5216365d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_pipeline_parameter_collection.py b/src/oci/devops/models/build_pipeline_parameter_collection.py index 8771adaf50..64b4f31ceb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_pipeline_stage.py b/src/oci/devops/models/build_pipeline_stage.py index 5519cab820..60f5105f90 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_pipeline_stage_collection.py b/src/oci/devops/models/build_pipeline_stage_collection.py index 58264afe44..51bfd8f6a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_pipeline_stage_predecessor.py b/src/oci/devops/models/build_pipeline_stage_predecessor.py index ad08b97f93..d41d82202d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 18b049bbe3..0a1121dca9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 d36dd80c08..0c1f05bce5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_pipeline_stage_summary.py b/src/oci/devops/models/build_pipeline_stage_summary.py index 6ff2e83f3d..dccb1f6198 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_pipeline_summary.py b/src/oci/devops/models/build_pipeline_summary.py index 819a103a57..50b9865c21 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run.py b/src/oci/devops/models/build_run.py index 35a1848e86..d4cce0eeb9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_argument.py b/src/oci/devops/models/build_run_argument.py index 57e9d4be2a..a32798d6cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_argument_collection.py b/src/oci/devops/models/build_run_argument_collection.py index 115ce85cf9..212b28483f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_progress.py b/src/oci/devops/models/build_run_progress.py index 95952c2531..ce31e7f198 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_progress_summary.py b/src/oci/devops/models/build_run_progress_summary.py index 2b74472639..5003d24780 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_snapshot.py b/src/oci/devops/models/build_run_snapshot.py index ecfdd83c88..78c2f1a4e3 100644 --- a/src/oci/devops/models/build_run_snapshot.py +++ b/src/oci/devops/models/build_run_snapshot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_snapshot_collection.py b/src/oci/devops/models/build_run_snapshot_collection.py index 30dd283b66..6144991dbb 100644 --- a/src/oci/devops/models/build_run_snapshot_collection.py +++ b/src/oci/devops/models/build_run_snapshot_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_snapshot_summary.py b/src/oci/devops/models/build_run_snapshot_summary.py index 7d827ddb78..68c2bfe037 100644 --- a/src/oci/devops/models/build_run_snapshot_summary.py +++ b/src/oci/devops/models/build_run_snapshot_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_source.py b/src/oci/devops/models/build_run_source.py index 6ee04cabb9..a5cfd227df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_summary.py b/src/oci/devops/models/build_run_summary.py index e455755eb7..d3fff61fff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_run_summary_collection.py b/src/oci/devops/models/build_run_summary_collection.py index d30b9d7238..d411a2fdd5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_runner_shape_config.py b/src/oci/devops/models/build_runner_shape_config.py index 083c8d91c3..002860685a 100644 --- a/src/oci/devops/models/build_runner_shape_config.py +++ b/src/oci/devops/models/build_runner_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_source.py b/src/oci/devops/models/build_source.py index 1db7246f95..57f36eaad8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_source_collection.py b/src/oci/devops/models/build_source_collection.py index d58fc505fe..3727bf6009 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_stage.py b/src/oci/devops/models/build_stage.py index 9f4ecef98c..0f3255db32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_stage_run_progress.py b/src/oci/devops/models/build_stage_run_progress.py index 09864de77d..c584ee0537 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_stage_run_step.py b/src/oci/devops/models/build_stage_run_step.py index 4aa875b881..616115c85b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/build_stage_summary.py b/src/oci/devops/models/build_stage_summary.py index 37efb73626..fda84851a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/ca_cert_verify.py b/src/oci/devops/models/ca_cert_verify.py index 5761cc4b7e..f90ed885ba 100644 --- a/src/oci/devops/models/ca_cert_verify.py +++ b/src/oci/devops/models/ca_cert_verify.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/cancel_build_run_details.py b/src/oci/devops/models/cancel_build_run_details.py index 012cab24ac..4f836d4755 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/cancel_deployment_details.py b/src/oci/devops/models/cancel_deployment_details.py index b8ad9683b1..aabd2c35cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/change_project_compartment_details.py b/src/oci/devops/models/change_project_compartment_details.py index 9bd534a639..1f818c8b4d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/comment_activity_summary.py b/src/oci/devops/models/comment_activity_summary.py index ea30e1209e..25d29fb64e 100644 --- a/src/oci/devops/models/comment_activity_summary.py +++ b/src/oci/devops/models/comment_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/commit_activity_summary.py b/src/oci/devops/models/commit_activity_summary.py index 65a41f0cc8..c621d53a8e 100644 --- a/src/oci/devops/models/commit_activity_summary.py +++ b/src/oci/devops/models/commit_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/commit_analytics_author_collection.py b/src/oci/devops/models/commit_analytics_author_collection.py index ebd462cfc8..43b7bda59d 100644 --- a/src/oci/devops/models/commit_analytics_author_collection.py +++ b/src/oci/devops/models/commit_analytics_author_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/commit_analytics_author_summary.py b/src/oci/devops/models/commit_analytics_author_summary.py index e503a7baf3..7bb2595fe5 100644 --- a/src/oci/devops/models/commit_analytics_author_summary.py +++ b/src/oci/devops/models/commit_analytics_author_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/commit_info.py b/src/oci/devops/models/commit_info.py index 3102ba1fcd..703ee9f9bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage.py b/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage.py index d0c9f40e86..72eb2bcd8c 100644 --- a/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage.py +++ b/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 bc1cf6b000..6a73f67749 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage_summary.py b/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage_summary.py index 391aab406e..82cab9d951 100644 --- a/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage_summary.py +++ b/src/oci/devops/models/compute_instance_group_blue_green_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage.py b/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage.py index 638ef33b46..981305c5be 100644 --- a/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage.py +++ b/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 2612beba21..7226a16b8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_summary.py b/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_summary.py index 1ee3937a03..6218b9eeda 100644 --- a/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_summary.py +++ b/src/oci/devops/models/compute_instance_group_blue_green_traffic_shift_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 0c2b11799c..58501478fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 53c21656d1..7823635f66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage.py b/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage.py index cefcd66a03..4e5d453f12 100644 --- a/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage.py +++ b/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 f3f44a2ee1..b940bfcd62 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_summary.py b/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_summary.py index 5d19915d3f..05fc5c5a9d 100644 --- a/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_summary.py +++ b/src/oci/devops/models/compute_instance_group_canary_approval_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_canary_deploy_stage.py b/src/oci/devops/models/compute_instance_group_canary_deploy_stage.py index 9d39c75c86..938b640000 100644 --- a/src/oci/devops/models/compute_instance_group_canary_deploy_stage.py +++ b/src/oci/devops/models/compute_instance_group_canary_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 973bcba4bb..3832ff415e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_canary_deploy_stage_summary.py b/src/oci/devops/models/compute_instance_group_canary_deploy_stage_summary.py index bed19cdb4b..8c191bc8a9 100644 --- a/src/oci/devops/models/compute_instance_group_canary_deploy_stage_summary.py +++ b/src/oci/devops/models/compute_instance_group_canary_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage.py b/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage.py index 97c3b116a6..55b67e5d51 100644 --- a/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage.py +++ b/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 f866db3e90..7fdd3f5b94 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_summary.py b/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_summary.py index 4ce6930d95..017702b1a7 100644 --- a/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_summary.py +++ b/src/oci/devops/models/compute_instance_group_canary_traffic_shift_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 178895a3c9..97e93e4fa5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 382417bc32..c380cafb16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 4eb181c2ee..0702310d56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 c3eb3e046d..6bb29eefdc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 53201d9e10..f317e81f63 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 766ad44dd5..c0796d323f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 d2b4d5c011..46609349eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 19463c12e5..094a3d2046 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 bd90a4a0ca..ddd7c43f66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 dfc0fae589..4def8d84b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 0c3c11376b..f57f099735 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/compute_instance_group_selector.py b/src/oci/devops/models/compute_instance_group_selector.py index b2867e04f4..113ccce5f1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 deda57d82a..b6375539df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/conflict_merge_check.py b/src/oci/devops/models/conflict_merge_check.py index b9c5629078..7c33ea3d1a 100644 --- a/src/oci/devops/models/conflict_merge_check.py +++ b/src/oci/devops/models/conflict_merge_check.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/connection.py b/src/oci/devops/models/connection.py index 1f3dd569eb..49e568d57d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/connection_collection.py b/src/oci/devops/models/connection_collection.py index aa8d56930f..5e2ed0f450 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/connection_summary.py b/src/oci/devops/models/connection_summary.py index ca93e09312..ce36fb2641 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/connection_validation_result.py b/src/oci/devops/models/connection_validation_result.py index cdb4b7d099..54554acb74 100644 --- a/src/oci/devops/models/connection_validation_result.py +++ b/src/oci/devops/models/connection_validation_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/container_config.py b/src/oci/devops/models/container_config.py index 4fa2f3c888..e9dc572af3 100644 --- a/src/oci/devops/models/container_config.py +++ b/src/oci/devops/models/container_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/container_instance_config.py b/src/oci/devops/models/container_instance_config.py index c65c6fe37f..23f04e3405 100644 --- a/src/oci/devops/models/container_instance_config.py +++ b/src/oci/devops/models/container_instance_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/container_registry_delivered_artifact.py b/src/oci/devops/models/container_registry_delivered_artifact.py index 5e93af90fd..582d2b27a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/count_based_approval_policy.py b/src/oci/devops/models/count_based_approval_policy.py index 24dd8128cc..b4e4b1b173 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 c9898995ea..f8ec0f65db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_bitbucket_cloud_app_password_connection_details.py b/src/oci/devops/models/create_bitbucket_cloud_app_password_connection_details.py index bad4584019..640a8cb0b7 100644 --- a/src/oci/devops/models/create_bitbucket_cloud_app_password_connection_details.py +++ b/src/oci/devops/models/create_bitbucket_cloud_app_password_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_bitbucket_cloud_trigger_details.py b/src/oci/devops/models/create_bitbucket_cloud_trigger_details.py index abacc131ed..fad6f879b7 100644 --- a/src/oci/devops/models/create_bitbucket_cloud_trigger_details.py +++ b/src/oci/devops/models/create_bitbucket_cloud_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_bitbucket_server_access_token_connection_details.py b/src/oci/devops/models/create_bitbucket_server_access_token_connection_details.py index 448fa9dbf1..03a016ac88 100644 --- a/src/oci/devops/models/create_bitbucket_server_access_token_connection_details.py +++ b/src/oci/devops/models/create_bitbucket_server_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_bitbucket_server_trigger_details.py b/src/oci/devops/models/create_bitbucket_server_trigger_details.py index 6dd38f81bc..f1915ccb58 100644 --- a/src/oci/devops/models/create_bitbucket_server_trigger_details.py +++ b/src/oci/devops/models/create_bitbucket_server_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_build_pipeline_details.py b/src/oci/devops/models/create_build_pipeline_details.py index 3bd3197860..447fbdf6c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 fcb63f34b0..189280babf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_build_run_details.py b/src/oci/devops/models/create_build_run_details.py index a7d980cefe..df1c420428 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_build_stage_details.py b/src/oci/devops/models/create_build_stage_details.py index 3280d7888e..9e0511cb39 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_compute_instance_group_blue_green_deploy_stage_details.py b/src/oci/devops/models/create_compute_instance_group_blue_green_deploy_stage_details.py index d53026d6bd..be9b7e248c 100644 --- a/src/oci/devops/models/create_compute_instance_group_blue_green_deploy_stage_details.py +++ b/src/oci/devops/models/create_compute_instance_group_blue_green_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/create_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.py index d50ff3cd3c..b04ee3c249 100644 --- a/src/oci/devops/models/create_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/create_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_compute_instance_group_canary_approval_deploy_stage_details.py b/src/oci/devops/models/create_compute_instance_group_canary_approval_deploy_stage_details.py index 34da2ccdea..404eeb67f9 100644 --- a/src/oci/devops/models/create_compute_instance_group_canary_approval_deploy_stage_details.py +++ b/src/oci/devops/models/create_compute_instance_group_canary_approval_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_compute_instance_group_canary_deploy_stage_details.py b/src/oci/devops/models/create_compute_instance_group_canary_deploy_stage_details.py index 4e37518a4a..1059b0af5f 100644 --- a/src/oci/devops/models/create_compute_instance_group_canary_deploy_stage_details.py +++ b/src/oci/devops/models/create_compute_instance_group_canary_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_compute_instance_group_canary_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/create_compute_instance_group_canary_traffic_shift_deploy_stage_details.py index d46d862c40..d09085e5f8 100644 --- a/src/oci/devops/models/create_compute_instance_group_canary_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/create_compute_instance_group_canary_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 2e824be965..6612d6e2cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 1b0cbc315d..d89924eb21 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_connection_details.py b/src/oci/devops/models/create_connection_details.py index 07fdf278db..4597cb283e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 4f15df5d1d..ef10ad97c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_deploy_artifact_details.py b/src/oci/devops/models/create_deploy_artifact_details.py index ef8fc9f0f3..4235307164 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_deploy_environment_details.py b/src/oci/devops/models/create_deploy_environment_details.py index 88af27891f..b6d0d89bb0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 988d14fbd8..5fa278ffae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_deploy_pipeline_details.py b/src/oci/devops/models/create_deploy_pipeline_details.py index 2dddc5c341..9e6aeb36ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 0b941044a7..369ce8f023 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_deploy_stage_details.py b/src/oci/devops/models/create_deploy_stage_details.py index 928294a4d6..183c3624ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_deployment_details.py b/src/oci/devops/models/create_deployment_details.py index 710b9794d1..d4fc4055e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 87de75403d..5f387ec3df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 280a14d08b..22678e0b1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 695e6fd229..b86038bed7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 d89a85d549..a8c68abd71 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_github_trigger_details.py b/src/oci/devops/models/create_github_trigger_details.py index 87c0c1a336..2e6071976e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 f2af70cbc7..a1f95f2fe7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_gitlab_server_access_token_connection_details.py b/src/oci/devops/models/create_gitlab_server_access_token_connection_details.py index b047ad0cd3..14bf9eae85 100644 --- a/src/oci/devops/models/create_gitlab_server_access_token_connection_details.py +++ b/src/oci/devops/models/create_gitlab_server_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_gitlab_server_trigger_details.py b/src/oci/devops/models/create_gitlab_server_trigger_details.py index 2dd735fdc1..929258dae6 100644 --- a/src/oci/devops/models/create_gitlab_server_trigger_details.py +++ b/src/oci/devops/models/create_gitlab_server_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_gitlab_trigger_details.py b/src/oci/devops/models/create_gitlab_trigger_details.py index 55d158ef8d..72d5bd1edd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 0e48fa8949..b98dbfbd43 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 ec59e2157a..f9d5b63bb6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 46b38068de..a20bcf3745 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_oke_blue_green_deploy_stage_details.py b/src/oci/devops/models/create_oke_blue_green_deploy_stage_details.py index e76cf02b2f..8289b56a74 100644 --- a/src/oci/devops/models/create_oke_blue_green_deploy_stage_details.py +++ b/src/oci/devops/models/create_oke_blue_green_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_oke_blue_green_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/create_oke_blue_green_traffic_shift_deploy_stage_details.py index da965df47c..4945230d86 100644 --- a/src/oci/devops/models/create_oke_blue_green_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/create_oke_blue_green_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_oke_canary_approval_deploy_stage_details.py b/src/oci/devops/models/create_oke_canary_approval_deploy_stage_details.py index 523e5faa29..5c7e7580c1 100644 --- a/src/oci/devops/models/create_oke_canary_approval_deploy_stage_details.py +++ b/src/oci/devops/models/create_oke_canary_approval_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_oke_canary_deploy_stage_details.py b/src/oci/devops/models/create_oke_canary_deploy_stage_details.py index 5a9dbbd1eb..1e09f8566c 100644 --- a/src/oci/devops/models/create_oke_canary_deploy_stage_details.py +++ b/src/oci/devops/models/create_oke_canary_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_oke_canary_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/create_oke_canary_traffic_shift_deploy_stage_details.py index 8982d1160c..043456d0f5 100644 --- a/src/oci/devops/models/create_oke_canary_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/create_oke_canary_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 7bb22a3e26..25b95abfc5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 18b893db6f..13f333c93f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_oke_helm_chart_deploy_stage_details.py b/src/oci/devops/models/create_oke_helm_chart_deploy_stage_details.py index a454d97a07..b7cfe944fd 100644 --- a/src/oci/devops/models/create_oke_helm_chart_deploy_stage_details.py +++ b/src/oci/devops/models/create_oke_helm_chart_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_or_update_git_branch_details.py b/src/oci/devops/models/create_or_update_git_branch_details.py index d7a46aef06..1308b8c41e 100644 --- a/src/oci/devops/models/create_or_update_git_branch_details.py +++ b/src/oci/devops/models/create_or_update_git_branch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_or_update_git_ref_details.py b/src/oci/devops/models/create_or_update_git_ref_details.py index 75819002ae..2793945b60 100644 --- a/src/oci/devops/models/create_or_update_git_ref_details.py +++ b/src/oci/devops/models/create_or_update_git_ref_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_or_update_git_tag_details.py b/src/oci/devops/models/create_or_update_git_tag_details.py index caafb7e167..5a2b66e294 100644 --- a/src/oci/devops/models/create_or_update_git_tag_details.py +++ b/src/oci/devops/models/create_or_update_git_tag_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_or_update_protected_branch_details.py b/src/oci/devops/models/create_or_update_protected_branch_details.py index 4bdbc24e1e..8189ed51dd 100644 --- a/src/oci/devops/models/create_or_update_protected_branch_details.py +++ b/src/oci/devops/models/create_or_update_protected_branch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_project_details.py b/src/oci/devops/models/create_project_details.py index a563dd9448..cc54b09393 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_pull_request_comment_details.py b/src/oci/devops/models/create_pull_request_comment_details.py index a8c51dc0cb..c9693e98d4 100644 --- a/src/oci/devops/models/create_pull_request_comment_details.py +++ b/src/oci/devops/models/create_pull_request_comment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_pull_request_details.py b/src/oci/devops/models/create_pull_request_details.py index 581c0b219d..0ed93cd5c7 100644 --- a/src/oci/devops/models/create_pull_request_details.py +++ b/src/oci/devops/models/create_pull_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_repository_details.py b/src/oci/devops/models/create_repository_details.py index 2d1d09285d..d60dc9a7f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_reviewer_details.py b/src/oci/devops/models/create_reviewer_details.py index 9ca845eebe..64f198fa05 100644 --- a/src/oci/devops/models/create_reviewer_details.py +++ b/src/oci/devops/models/create_reviewer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_shell_deploy_stage_details.py b/src/oci/devops/models/create_shell_deploy_stage_details.py index 10f100e2ec..2358a9157c 100644 --- a/src/oci/devops/models/create_shell_deploy_stage_details.py +++ b/src/oci/devops/models/create_shell_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 83163cbc2b..655ab56a93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_single_deploy_stage_redeployment_details.py b/src/oci/devops/models/create_single_deploy_stage_redeployment_details.py index e9ebd416f5..f54c64533f 100644 --- a/src/oci/devops/models/create_single_deploy_stage_redeployment_details.py +++ b/src/oci/devops/models/create_single_deploy_stage_redeployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 0f55e8bf82..647ffa24ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_trigger_details.py b/src/oci/devops/models/create_trigger_details.py index 4b30759807..20549ecce0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_vbs_access_token_connection_details.py b/src/oci/devops/models/create_vbs_access_token_connection_details.py index d94f94fbbb..e046935eca 100644 --- a/src/oci/devops/models/create_vbs_access_token_connection_details.py +++ b/src/oci/devops/models/create_vbs_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_vbs_trigger_details.py b/src/oci/devops/models/create_vbs_trigger_details.py index 09c8da1317..8352376bb3 100644 --- a/src/oci/devops/models/create_vbs_trigger_details.py +++ b/src/oci/devops/models/create_vbs_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_wait_criteria_details.py b/src/oci/devops/models/create_wait_criteria_details.py index 494f54655a..4011b0ed3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 62a14668a5..30e38c0327 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/create_wait_stage_details.py b/src/oci/devops/models/create_wait_stage_details.py index c1a8cd995a..036f18e599 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/custom_build_runner_shape_config.py b/src/oci/devops/models/custom_build_runner_shape_config.py index f17f1bbaa9..31b3d7cfde 100644 --- a/src/oci/devops/models/custom_build_runner_shape_config.py +++ b/src/oci/devops/models/custom_build_runner_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/default_build_runner_shape_config.py b/src/oci/devops/models/default_build_runner_shape_config.py index 42c43759c7..2e61605926 100644 --- a/src/oci/devops/models/default_build_runner_shape_config.py +++ b/src/oci/devops/models/default_build_runner_shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/delete_git_ref_details.py b/src/oci/devops/models/delete_git_ref_details.py index f6ba699cd0..fc5cfdf004 100644 --- a/src/oci/devops/models/delete_git_ref_details.py +++ b/src/oci/devops/models/delete_git_ref_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/delete_protected_branch_details.py b/src/oci/devops/models/delete_protected_branch_details.py index d2ac5f225b..f0e73312ab 100644 --- a/src/oci/devops/models/delete_protected_branch_details.py +++ b/src/oci/devops/models/delete_protected_branch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deliver_artifact.py b/src/oci/devops/models/deliver_artifact.py index 33fe1bea79..c801618275 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deliver_artifact_collection.py b/src/oci/devops/models/deliver_artifact_collection.py index 729a3678bb..bc72e5ff07 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deliver_artifact_stage.py b/src/oci/devops/models/deliver_artifact_stage.py index b191e4809a..07d4a92546 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 9d7608c19c..3404f8752c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deliver_artifact_stage_summary.py b/src/oci/devops/models/deliver_artifact_stage_summary.py index 96c798c044..44779be173 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/delivered_artifact.py b/src/oci/devops/models/delivered_artifact.py index c6b2c7c293..72067d9611 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/delivered_artifact_collection.py b/src/oci/devops/models/delivered_artifact_collection.py index 7b4be5cbb4..cd9c0a132a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_artifact.py b/src/oci/devops/models/deploy_artifact.py index 871cbc6dd9..3c24414f2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_artifact_collection.py b/src/oci/devops/models/deploy_artifact_collection.py index d98a4288fc..f61d4b0dfd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_artifact_override_argument.py b/src/oci/devops/models/deploy_artifact_override_argument.py index 0e502e0cf0..297e76f4ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 ca266d70ed..5a00d7fd68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_artifact_source.py b/src/oci/devops/models/deploy_artifact_source.py index 6193c6896e..75f52ab8a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_artifact_summary.py b/src/oci/devops/models/deploy_artifact_summary.py index b697476602..9335d7eda4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_environment.py b/src/oci/devops/models/deploy_environment.py index 668d8a0d87..d5e5906096 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_environment_collection.py b/src/oci/devops/models/deploy_environment_collection.py index 53fbe183e5..a6e9813dc6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_environment_summary.py b/src/oci/devops/models/deploy_environment_summary.py index 78c7c38e5c..4a8c6132ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline.py b/src/oci/devops/models/deploy_pipeline.py index 393731afa4..14597ec9d1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_artifact.py b/src/oci/devops/models/deploy_pipeline_artifact.py index f07342b726..68e0c3bfa9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_artifact_collection.py b/src/oci/devops/models/deploy_pipeline_artifact_collection.py index 4ce03e6efa..c94e852ce4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_collection.py b/src/oci/devops/models/deploy_pipeline_collection.py index 05fbf326cd..213bce6d13 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_deployment.py b/src/oci/devops/models/deploy_pipeline_deployment.py index 14b5c4ebd9..1973689613 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_deployment_summary.py b/src/oci/devops/models/deploy_pipeline_deployment_summary.py index 4c97249655..a54536f426 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_environment.py b/src/oci/devops/models/deploy_pipeline_environment.py index 89c159fbd3..30668652c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_environment_collection.py b/src/oci/devops/models/deploy_pipeline_environment_collection.py index 2b612e70a8..7fcaea6916 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_parameter.py b/src/oci/devops/models/deploy_pipeline_parameter.py index 95f7c66203..f2648cbee4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_parameter_collection.py b/src/oci/devops/models/deploy_pipeline_parameter_collection.py index 0a423c9aa2..d7b4f6462f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_redeployment.py b/src/oci/devops/models/deploy_pipeline_redeployment.py index 571b39b424..203f9d6eee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_redeployment_summary.py b/src/oci/devops/models/deploy_pipeline_redeployment_summary.py index 83eed4e102..8ed7215090 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_stage.py b/src/oci/devops/models/deploy_pipeline_stage.py index ae66d286a6..a19cfae89c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_stage_collection.py b/src/oci/devops/models/deploy_pipeline_stage_collection.py index 2f16ac29d4..34361293d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_pipeline_summary.py b/src/oci/devops/models/deploy_pipeline_summary.py index c6802afad7..35569058da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage.py b/src/oci/devops/models/deploy_stage.py index caecb2bf79..71ad9329ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage_collection.py b/src/oci/devops/models/deploy_stage_collection.py index f535736309..80f52a5dd6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage_execution_progress.py b/src/oci/devops/models/deploy_stage_execution_progress.py index 1edbfd5372..31c17d9cee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 e52837e59f..db22a50772 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage_execution_step.py b/src/oci/devops/models/deploy_stage_execution_step.py index 1df521ffcd..fcb2da592d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage_override_argument.py b/src/oci/devops/models/deploy_stage_override_argument.py index 44be13a21a..ba8767e88a 100644 --- a/src/oci/devops/models/deploy_stage_override_argument.py +++ b/src/oci/devops/models/deploy_stage_override_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage_override_argument_collection.py b/src/oci/devops/models/deploy_stage_override_argument_collection.py index 9765cbb41c..62a5006920 100644 --- a/src/oci/devops/models/deploy_stage_override_argument_collection.py +++ b/src/oci/devops/models/deploy_stage_override_argument_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage_predecessor.py b/src/oci/devops/models/deploy_stage_predecessor.py index 94cb8fd730..d96b37c069 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage_predecessor_collection.py b/src/oci/devops/models/deploy_stage_predecessor_collection.py index a87b0e5970..66952df9b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage_rollback_policy.py b/src/oci/devops/models/deploy_stage_rollback_policy.py index e8a4566567..2ecafec9d1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deploy_stage_summary.py b/src/oci/devops/models/deploy_stage_summary.py index d021c03d45..54b6243096 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deployment.py b/src/oci/devops/models/deployment.py index 1543aa35ab..83a78b8e57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deployment_argument.py b/src/oci/devops/models/deployment_argument.py index 56b14437c8..43a87cb87f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deployment_argument_collection.py b/src/oci/devops/models/deployment_argument_collection.py index 48e3201251..2a85a2572b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deployment_collection.py b/src/oci/devops/models/deployment_collection.py index 64a7e255d0..b6d8eece1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deployment_execution_progress.py b/src/oci/devops/models/deployment_execution_progress.py index 5ff50825d8..508852d278 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/deployment_summary.py b/src/oci/devops/models/deployment_summary.py index d142f2d61b..f6b02fc2b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 2204083c9b..a8e18dc0d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 c6e52b2130..ed1a7b09eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/devops_code_repository_filter.py b/src/oci/devops/models/devops_code_repository_filter.py index 6cdbf944dc..b3635e3979 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 91c0fcf251..a7c272e23f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/devops_code_repository_filter_exclusion_attributes.py b/src/oci/devops/models/devops_code_repository_filter_exclusion_attributes.py index 3438a3ec44..7dd4ff89a8 100644 --- a/src/oci/devops/models/devops_code_repository_filter_exclusion_attributes.py +++ b/src/oci/devops/models/devops_code_repository_filter_exclusion_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/devops_code_repository_trigger.py b/src/oci/devops/models/devops_code_repository_trigger.py index 7f50d49531..510c88cfa7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 deea1a056d..22cc49aaff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 7bbca52f3a..9f9dee0230 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/diff_chunk.py b/src/oci/devops/models/diff_chunk.py index 18c436cbea..4b1fd8e980 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/diff_collection.py b/src/oci/devops/models/diff_collection.py index 0987210702..9500f00263 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/diff_line_details.py b/src/oci/devops/models/diff_line_details.py index 1bf39469a3..86013835b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/diff_response.py b/src/oci/devops/models/diff_response.py index c189556e97..876e66590b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/diff_response_entry.py b/src/oci/devops/models/diff_response_entry.py index 81af3d49cc..6fdcf0d964 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/diff_section.py b/src/oci/devops/models/diff_section.py index 828b6368cc..0f6a6b72c7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/diff_summary.py b/src/oci/devops/models/diff_summary.py index fa8e75cb8a..0d8d9a10e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/execute_merge_pull_request_details.py b/src/oci/devops/models/execute_merge_pull_request_details.py index bcdfe5984f..994a1104d2 100644 --- a/src/oci/devops/models/execute_merge_pull_request_details.py +++ b/src/oci/devops/models/execute_merge_pull_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/exported_variable.py b/src/oci/devops/models/exported_variable.py index 437fb677b0..23bbd70fab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/exported_variable_collection.py b/src/oci/devops/models/exported_variable_collection.py index f94cddd1e0..e7ec628049 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/file_diff_response.py b/src/oci/devops/models/file_diff_response.py index 864c6eec90..1c9d1b6c69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/file_filter.py b/src/oci/devops/models/file_filter.py index 57d36bcec0..d4c29e77b3 100644 --- a/src/oci/devops/models/file_filter.py +++ b/src/oci/devops/models/file_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/file_line_details.py b/src/oci/devops/models/file_line_details.py index d34399a82d..00a370889d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/filter.py b/src/oci/devops/models/filter.py index dc935e9271..bb353737b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/fork_sync_status_collection.py b/src/oci/devops/models/fork_sync_status_collection.py index 7ea019893b..c0c79520f3 100644 --- a/src/oci/devops/models/fork_sync_status_collection.py +++ b/src/oci/devops/models/fork_sync_status_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/fork_sync_status_summary.py b/src/oci/devops/models/fork_sync_status_summary.py index 7f6e14cde2..314cfdf71d 100644 --- a/src/oci/devops/models/fork_sync_status_summary.py +++ b/src/oci/devops/models/fork_sync_status_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/function_deploy_environment.py b/src/oci/devops/models/function_deploy_environment.py index 17cf085ce4..0171c20887 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/function_deploy_environment_summary.py b/src/oci/devops/models/function_deploy_environment_summary.py index 9fde4963aa..a124fbb9a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/function_deploy_stage.py b/src/oci/devops/models/function_deploy_stage.py index a03ad8a1d9..2e0d934d9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 1d65ce1872..11038dd32b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/function_deploy_stage_summary.py b/src/oci/devops/models/function_deploy_stage_summary.py index a29aa94299..38fe77dc4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/generic_artifact_location_details.py b/src/oci/devops/models/generic_artifact_location_details.py index 963a10c6f5..ea6b888f1b 100644 --- a/src/oci/devops/models/generic_artifact_location_details.py +++ b/src/oci/devops/models/generic_artifact_location_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/generic_artifacts.py b/src/oci/devops/models/generic_artifacts.py index 606a42a0e9..8795a7a9e7 100644 --- a/src/oci/devops/models/generic_artifacts.py +++ b/src/oci/devops/models/generic_artifacts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/generic_delivered_artifact.py b/src/oci/devops/models/generic_delivered_artifact.py index 9f5af73fc7..cdfc691fac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/generic_deploy_artifact_source.py b/src/oci/devops/models/generic_deploy_artifact_source.py index 08f29363e3..15a75b0a20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/github_access_token_connection.py b/src/oci/devops/models/github_access_token_connection.py index e16279b5a2..7ce3d30212 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 9165a35282..d1aedb4b26 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/github_build_run_source.py b/src/oci/devops/models/github_build_run_source.py index 8508ab7757..8129813d95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/github_build_source.py b/src/oci/devops/models/github_build_source.py index ba2735568a..e1599d2ad1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/github_filter.py b/src/oci/devops/models/github_filter.py index ee1861ad6f..21b6a8c5cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/github_filter_attributes.py b/src/oci/devops/models/github_filter_attributes.py index 4801963da2..e9c7519dd8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/github_filter_exclusion_attributes.py b/src/oci/devops/models/github_filter_exclusion_attributes.py index 1244ff66e1..aef6d1ada4 100644 --- a/src/oci/devops/models/github_filter_exclusion_attributes.py +++ b/src/oci/devops/models/github_filter_exclusion_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/github_trigger.py b/src/oci/devops/models/github_trigger.py index e073310059..d6f08271c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/github_trigger_create_result.py b/src/oci/devops/models/github_trigger_create_result.py index c690fa3ab0..3eaa487a82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/github_trigger_summary.py b/src/oci/devops/models/github_trigger_summary.py index 3846afb5ea..f8ea3a8ee7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_access_token_connection.py b/src/oci/devops/models/gitlab_access_token_connection.py index 2d5fcc8033..c5dbb71c61 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 196fc7625e..7bc72b241e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_build_run_source.py b/src/oci/devops/models/gitlab_build_run_source.py index 4da7d721db..d65d3ef8f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_build_source.py b/src/oci/devops/models/gitlab_build_source.py index 17db0c8589..6cd738a836 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_filter.py b/src/oci/devops/models/gitlab_filter.py index f6e9462483..e8011f9d26 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_filter_attributes.py b/src/oci/devops/models/gitlab_filter_attributes.py index cfe2b118d1..92787df591 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_filter_exclusion_attributes.py b/src/oci/devops/models/gitlab_filter_exclusion_attributes.py index 460e172c1a..0f669ceb3b 100644 --- a/src/oci/devops/models/gitlab_filter_exclusion_attributes.py +++ b/src/oci/devops/models/gitlab_filter_exclusion_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_access_token_connection.py b/src/oci/devops/models/gitlab_server_access_token_connection.py index 4266af533c..da4bfefd9f 100644 --- a/src/oci/devops/models/gitlab_server_access_token_connection.py +++ b/src/oci/devops/models/gitlab_server_access_token_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_access_token_connection_summary.py b/src/oci/devops/models/gitlab_server_access_token_connection_summary.py index 03a67b3170..14e6e3dcf1 100644 --- a/src/oci/devops/models/gitlab_server_access_token_connection_summary.py +++ b/src/oci/devops/models/gitlab_server_access_token_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_build_run_source.py b/src/oci/devops/models/gitlab_server_build_run_source.py index 470a32826b..c959fea819 100644 --- a/src/oci/devops/models/gitlab_server_build_run_source.py +++ b/src/oci/devops/models/gitlab_server_build_run_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_build_source.py b/src/oci/devops/models/gitlab_server_build_source.py index 15a831479d..56e8690032 100644 --- a/src/oci/devops/models/gitlab_server_build_source.py +++ b/src/oci/devops/models/gitlab_server_build_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_filter.py b/src/oci/devops/models/gitlab_server_filter.py index ef90f9efcd..2ef70427c0 100644 --- a/src/oci/devops/models/gitlab_server_filter.py +++ b/src/oci/devops/models/gitlab_server_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_filter_attributes.py b/src/oci/devops/models/gitlab_server_filter_attributes.py index 581c5d5ec8..4f553b72d2 100644 --- a/src/oci/devops/models/gitlab_server_filter_attributes.py +++ b/src/oci/devops/models/gitlab_server_filter_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_filter_exclusion_attributes.py b/src/oci/devops/models/gitlab_server_filter_exclusion_attributes.py index 70cf2a8b79..a0d150e13e 100644 --- a/src/oci/devops/models/gitlab_server_filter_exclusion_attributes.py +++ b/src/oci/devops/models/gitlab_server_filter_exclusion_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_trigger.py b/src/oci/devops/models/gitlab_server_trigger.py index 4c7b2da3b2..02722b07dd 100644 --- a/src/oci/devops/models/gitlab_server_trigger.py +++ b/src/oci/devops/models/gitlab_server_trigger.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_trigger_create_result.py b/src/oci/devops/models/gitlab_server_trigger_create_result.py index 7616a6d3e0..6bc6798861 100644 --- a/src/oci/devops/models/gitlab_server_trigger_create_result.py +++ b/src/oci/devops/models/gitlab_server_trigger_create_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_server_trigger_summary.py b/src/oci/devops/models/gitlab_server_trigger_summary.py index ed4e87de0f..dbc4136929 100644 --- a/src/oci/devops/models/gitlab_server_trigger_summary.py +++ b/src/oci/devops/models/gitlab_server_trigger_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_trigger.py b/src/oci/devops/models/gitlab_trigger.py index c93f354ee0..e1a97970dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_trigger_create_result.py b/src/oci/devops/models/gitlab_trigger_create_result.py index d0398399cf..846e8f6405 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/gitlab_trigger_summary.py b/src/oci/devops/models/gitlab_trigger_summary.py index ff0b99df1f..cb482e34c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/helm_command_spec_artifact_source.py b/src/oci/devops/models/helm_command_spec_artifact_source.py index 814b69ee08..d3cfde6fef 100644 --- a/src/oci/devops/models/helm_command_spec_artifact_source.py +++ b/src/oci/devops/models/helm_command_spec_artifact_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/helm_repository_deploy_artifact_source.py b/src/oci/devops/models/helm_repository_deploy_artifact_source.py index 3f93d2df6a..69d3cafa01 100644 --- a/src/oci/devops/models/helm_repository_deploy_artifact_source.py +++ b/src/oci/devops/models/helm_repository_deploy_artifact_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/helm_set_value.py b/src/oci/devops/models/helm_set_value.py index 3317a702ba..1dc66e3384 100644 --- a/src/oci/devops/models/helm_set_value.py +++ b/src/oci/devops/models/helm_set_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/helm_set_value_collection.py b/src/oci/devops/models/helm_set_value_collection.py index 05abcf1424..b31ca01184 100644 --- a/src/oci/devops/models/helm_set_value_collection.py +++ b/src/oci/devops/models/helm_set_value_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/inline_deploy_artifact_source.py b/src/oci/devops/models/inline_deploy_artifact_source.py index bc9fcc72ef..e8e36ef365 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/inline_public_key_verification_key_source.py b/src/oci/devops/models/inline_public_key_verification_key_source.py index 1b50e0cdc8..78e69d87db 100644 --- a/src/oci/devops/models/inline_public_key_verification_key_source.py +++ b/src/oci/devops/models/inline_public_key_verification_key_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/invoke_function_deploy_stage.py b/src/oci/devops/models/invoke_function_deploy_stage.py index 30fe99fac3..29443473ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 efaa9b1e3d..e9c7766112 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 55cab4e68c..e71211faf6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/load_balancer_config.py b/src/oci/devops/models/load_balancer_config.py index 9215388155..92e4b3f885 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 0cbfd9b8ed..0ac1ae270c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 e1b65b1eda..e0089465b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 2cac6148d2..01bc28e743 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 d4e1c3a50e..f245a671ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/manual_approval_deploy_stage.py b/src/oci/devops/models/manual_approval_deploy_stage.py index 78599fb228..a201a11858 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 a694b1c1e6..fc43409c7b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 49f203bf2a..bba528eed3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/manual_build_run_source.py b/src/oci/devops/models/manual_build_run_source.py index 58a3216201..edf4a106c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/merge_check.py b/src/oci/devops/models/merge_check.py index a2258e72b6..e32230fc6e 100644 --- a/src/oci/devops/models/merge_check.py +++ b/src/oci/devops/models/merge_check.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/merge_check_collection.py b/src/oci/devops/models/merge_check_collection.py index c458b47d35..bb37b58449 100644 --- a/src/oci/devops/models/merge_check_collection.py +++ b/src/oci/devops/models/merge_check_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/merge_checks.py b/src/oci/devops/models/merge_checks.py index d623f771af..f96d4cdee0 100644 --- a/src/oci/devops/models/merge_checks.py +++ b/src/oci/devops/models/merge_checks.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/merge_pull_request_details.py b/src/oci/devops/models/merge_pull_request_details.py index 6d26bdb2cc..d382ed3284 100644 --- a/src/oci/devops/models/merge_pull_request_details.py +++ b/src/oci/devops/models/merge_pull_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/merge_settings.py b/src/oci/devops/models/merge_settings.py index 273f5c81e1..c7303ee47b 100644 --- a/src/oci/devops/models/merge_settings.py +++ b/src/oci/devops/models/merge_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/mirror_repository_config.py b/src/oci/devops/models/mirror_repository_config.py index f8bf77c707..844e349366 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/network_channel.py b/src/oci/devops/models/network_channel.py index 069a966f81..f8b7ab1280 100644 --- a/src/oci/devops/models/network_channel.py +++ b/src/oci/devops/models/network_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/nginx_blue_green_strategy.py b/src/oci/devops/models/nginx_blue_green_strategy.py index 65f9ae0978..c2be6dd68f 100644 --- a/src/oci/devops/models/nginx_blue_green_strategy.py +++ b/src/oci/devops/models/nginx_blue_green_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/nginx_canary_strategy.py b/src/oci/devops/models/nginx_canary_strategy.py index 9b726e59a5..d4ab92b815 100644 --- a/src/oci/devops/models/nginx_canary_strategy.py +++ b/src/oci/devops/models/nginx_canary_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 c8c8ca4505..1946d2f9ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/none_verification_key_source.py b/src/oci/devops/models/none_verification_key_source.py index a9573c8bf8..e852ddbb47 100644 --- a/src/oci/devops/models/none_verification_key_source.py +++ b/src/oci/devops/models/none_verification_key_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/notification_config.py b/src/oci/devops/models/notification_config.py index 8b16c891d8..1395d059a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/object_storage_generic_artifact_location_details.py b/src/oci/devops/models/object_storage_generic_artifact_location_details.py index 6c367ff88a..7c3b928d32 100644 --- a/src/oci/devops/models/object_storage_generic_artifact_location_details.py +++ b/src/oci/devops/models/object_storage_generic_artifact_location_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/ocir_deploy_artifact_source.py b/src/oci/devops/models/ocir_deploy_artifact_source.py index 5b1e7861a1..c0af2a894f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_blue_green_deploy_stage.py b/src/oci/devops/models/oke_blue_green_deploy_stage.py index ccf3240ec0..9400b75e6b 100644 --- a/src/oci/devops/models/oke_blue_green_deploy_stage.py +++ b/src/oci/devops/models/oke_blue_green_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_blue_green_deploy_stage_execution_progress.py b/src/oci/devops/models/oke_blue_green_deploy_stage_execution_progress.py index d91fce5aef..db3b0e1779 100644 --- a/src/oci/devops/models/oke_blue_green_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/oke_blue_green_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_blue_green_deploy_stage_summary.py b/src/oci/devops/models/oke_blue_green_deploy_stage_summary.py index 9235a2196e..3b89f7b96f 100644 --- a/src/oci/devops/models/oke_blue_green_deploy_stage_summary.py +++ b/src/oci/devops/models/oke_blue_green_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_blue_green_strategy.py b/src/oci/devops/models/oke_blue_green_strategy.py index c1dd88b4ad..2a2dbb7686 100644 --- a/src/oci/devops/models/oke_blue_green_strategy.py +++ b/src/oci/devops/models/oke_blue_green_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage.py b/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage.py index da1067d5c3..9529cc2dfa 100644 --- a/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage.py +++ b/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage_execution_progress.py b/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage_execution_progress.py index 8df678460f..9e542e5b68 100644 --- a/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage_summary.py b/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage_summary.py index 8233b2fba9..64f6efb08c 100644 --- a/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage_summary.py +++ b/src/oci/devops/models/oke_blue_green_traffic_shift_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_approval_deploy_stage.py b/src/oci/devops/models/oke_canary_approval_deploy_stage.py index 7679da79a2..d777a277e8 100644 --- a/src/oci/devops/models/oke_canary_approval_deploy_stage.py +++ b/src/oci/devops/models/oke_canary_approval_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_approval_deploy_stage_execution_progress.py b/src/oci/devops/models/oke_canary_approval_deploy_stage_execution_progress.py index e3e6db9097..acf747a4f9 100644 --- a/src/oci/devops/models/oke_canary_approval_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/oke_canary_approval_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_approval_deploy_stage_summary.py b/src/oci/devops/models/oke_canary_approval_deploy_stage_summary.py index 670cf168e9..2db59083ae 100644 --- a/src/oci/devops/models/oke_canary_approval_deploy_stage_summary.py +++ b/src/oci/devops/models/oke_canary_approval_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_deploy_stage.py b/src/oci/devops/models/oke_canary_deploy_stage.py index 865127e53e..f8abf2b271 100644 --- a/src/oci/devops/models/oke_canary_deploy_stage.py +++ b/src/oci/devops/models/oke_canary_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_deploy_stage_execution_progress.py b/src/oci/devops/models/oke_canary_deploy_stage_execution_progress.py index 4a468d6b09..66ed780157 100644 --- a/src/oci/devops/models/oke_canary_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/oke_canary_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_deploy_stage_summary.py b/src/oci/devops/models/oke_canary_deploy_stage_summary.py index 0cd70a9908..55a9c69832 100644 --- a/src/oci/devops/models/oke_canary_deploy_stage_summary.py +++ b/src/oci/devops/models/oke_canary_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_strategy.py b/src/oci/devops/models/oke_canary_strategy.py index bbccbb8418..4e8ccf103a 100644 --- a/src/oci/devops/models/oke_canary_strategy.py +++ b/src/oci/devops/models/oke_canary_strategy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage.py b/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage.py index 582620c2ae..dfaf7350a4 100644 --- a/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage.py +++ b/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage_execution_progress.py b/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage_execution_progress.py index ca56b7abd8..5892370f63 100644 --- a/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage_summary.py b/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage_summary.py index d216a76a57..0c5ec8f8bc 100644 --- a/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage_summary.py +++ b/src/oci/devops/models/oke_canary_traffic_shift_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_cluster_deploy_environment.py b/src/oci/devops/models/oke_cluster_deploy_environment.py index 159e48ec0d..de224163e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 d99f1f8120..90599f46fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_deploy_stage.py b/src/oci/devops/models/oke_deploy_stage.py index f593cadd2d..ea7da14d2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 04ed19b8ba..df1ef3895b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_deploy_stage_summary.py b/src/oci/devops/models/oke_deploy_stage_summary.py index bbfd81bf4d..7339995cfc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_helm_chart_deploy_stage.py b/src/oci/devops/models/oke_helm_chart_deploy_stage.py index 6a8a1f1395..f81a859b82 100644 --- a/src/oci/devops/models/oke_helm_chart_deploy_stage.py +++ b/src/oci/devops/models/oke_helm_chart_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_helm_chart_deploy_stage_summary.py b/src/oci/devops/models/oke_helm_chart_deploy_stage_summary.py index a31c21e2b6..1143052ac7 100644 --- a/src/oci/devops/models/oke_helm_chart_deploy_stage_summary.py +++ b/src/oci/devops/models/oke_helm_chart_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.py b/src/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.py index 26b184889d..cb1b0d58a3 100644 --- a/src/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.py +++ b/src/oci/devops/models/oke_helm_chart_deployment_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/patch_insert_instruction.py b/src/oci/devops/models/patch_insert_instruction.py index a3ff4b8e66..8f758e847a 100644 --- a/src/oci/devops/models/patch_insert_instruction.py +++ b/src/oci/devops/models/patch_insert_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/patch_instruction.py b/src/oci/devops/models/patch_instruction.py index 658dbf2b69..d5a4b3de71 100644 --- a/src/oci/devops/models/patch_instruction.py +++ b/src/oci/devops/models/patch_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/patch_merge_instruction.py b/src/oci/devops/models/patch_merge_instruction.py index f10a688a79..962d60dd36 100644 --- a/src/oci/devops/models/patch_merge_instruction.py +++ b/src/oci/devops/models/patch_merge_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/patch_move_instruction.py b/src/oci/devops/models/patch_move_instruction.py index d2920482bc..0577115eb3 100644 --- a/src/oci/devops/models/patch_move_instruction.py +++ b/src/oci/devops/models/patch_move_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/patch_prohibit_instruction.py b/src/oci/devops/models/patch_prohibit_instruction.py index e7ea218637..9e13901e1b 100644 --- a/src/oci/devops/models/patch_prohibit_instruction.py +++ b/src/oci/devops/models/patch_prohibit_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/patch_pull_request_details.py b/src/oci/devops/models/patch_pull_request_details.py index 9bf66b372c..09af93d568 100644 --- a/src/oci/devops/models/patch_pull_request_details.py +++ b/src/oci/devops/models/patch_pull_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/patch_remove_instruction.py b/src/oci/devops/models/patch_remove_instruction.py index d42021c11f..16d659ef5c 100644 --- a/src/oci/devops/models/patch_remove_instruction.py +++ b/src/oci/devops/models/patch_remove_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/patch_replace_instruction.py b/src/oci/devops/models/patch_replace_instruction.py index 44eae9bde1..82f117230b 100644 --- a/src/oci/devops/models/patch_replace_instruction.py +++ b/src/oci/devops/models/patch_replace_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/patch_require_instruction.py b/src/oci/devops/models/patch_require_instruction.py index 2348836702..a49d4a6734 100644 --- a/src/oci/devops/models/patch_require_instruction.py +++ b/src/oci/devops/models/patch_require_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/principal_details.py b/src/oci/devops/models/principal_details.py index 96c98c58c9..571e3fde96 100644 --- a/src/oci/devops/models/principal_details.py +++ b/src/oci/devops/models/principal_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/private_endpoint_channel.py b/src/oci/devops/models/private_endpoint_channel.py index ffdf1c6e49..3faddf4303 100644 --- a/src/oci/devops/models/private_endpoint_channel.py +++ b/src/oci/devops/models/private_endpoint_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/project.py b/src/oci/devops/models/project.py index db4ce08097..a290ba5797 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/project_collection.py b/src/oci/devops/models/project_collection.py index 2c2754d9fe..faf9c999e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/project_notification_preference.py b/src/oci/devops/models/project_notification_preference.py index 0ae6d32a2c..1d92304029 100644 --- a/src/oci/devops/models/project_notification_preference.py +++ b/src/oci/devops/models/project_notification_preference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/project_repository_settings.py b/src/oci/devops/models/project_repository_settings.py index 2aa0586114..837a79eab2 100644 --- a/src/oci/devops/models/project_repository_settings.py +++ b/src/oci/devops/models/project_repository_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/project_summary.py b/src/oci/devops/models/project_summary.py index 7feac1058d..25cfa63396 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/protected_branch.py b/src/oci/devops/models/protected_branch.py index 1580a1722e..6e09c444ac 100644 --- a/src/oci/devops/models/protected_branch.py +++ b/src/oci/devops/models/protected_branch.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/protected_branch_collection.py b/src/oci/devops/models/protected_branch_collection.py index 7d291019bb..197d0ad957 100644 --- a/src/oci/devops/models/protected_branch_collection.py +++ b/src/oci/devops/models/protected_branch_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/protected_branch_summary.py b/src/oci/devops/models/protected_branch_summary.py index 667ac00f9b..7e9027f41d 100644 --- a/src/oci/devops/models/protected_branch_summary.py +++ b/src/oci/devops/models/protected_branch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request.py b/src/oci/devops/models/pull_request.py index 09327afaa3..e27f6b7480 100644 --- a/src/oci/devops/models/pull_request.py +++ b/src/oci/devops/models/pull_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_activity_collection.py b/src/oci/devops/models/pull_request_activity_collection.py index af4222c77f..083fd8e84f 100644 --- a/src/oci/devops/models/pull_request_activity_collection.py +++ b/src/oci/devops/models/pull_request_activity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_activity_summary.py b/src/oci/devops/models/pull_request_activity_summary.py index 49d73c85ba..863648e39d 100644 --- a/src/oci/devops/models/pull_request_activity_summary.py +++ b/src/oci/devops/models/pull_request_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_attachment.py b/src/oci/devops/models/pull_request_attachment.py index a2fddfea70..08e104c207 100644 --- a/src/oci/devops/models/pull_request_attachment.py +++ b/src/oci/devops/models/pull_request_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_attachment_collection.py b/src/oci/devops/models/pull_request_attachment_collection.py index bed598dcfa..2482e0d572 100644 --- a/src/oci/devops/models/pull_request_attachment_collection.py +++ b/src/oci/devops/models/pull_request_attachment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_attachment_summary.py b/src/oci/devops/models/pull_request_attachment_summary.py index 2485c9039c..a943d85916 100644 --- a/src/oci/devops/models/pull_request_attachment_summary.py +++ b/src/oci/devops/models/pull_request_attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_author_collection.py b/src/oci/devops/models/pull_request_author_collection.py index 57f0e78013..0af7db77dd 100644 --- a/src/oci/devops/models/pull_request_author_collection.py +++ b/src/oci/devops/models/pull_request_author_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_author_summary.py b/src/oci/devops/models/pull_request_author_summary.py index a03bc57788..32100f932f 100644 --- a/src/oci/devops/models/pull_request_author_summary.py +++ b/src/oci/devops/models/pull_request_author_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_change_summary_metrics.py b/src/oci/devops/models/pull_request_change_summary_metrics.py index 963f52c19b..c968cd4f7f 100644 --- a/src/oci/devops/models/pull_request_change_summary_metrics.py +++ b/src/oci/devops/models/pull_request_change_summary_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_collection.py b/src/oci/devops/models/pull_request_collection.py index 3cbd4ae178..975eb5f3cc 100644 --- a/src/oci/devops/models/pull_request_collection.py +++ b/src/oci/devops/models/pull_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_comment.py b/src/oci/devops/models/pull_request_comment.py index 43a1147692..16f4f22be6 100644 --- a/src/oci/devops/models/pull_request_comment.py +++ b/src/oci/devops/models/pull_request_comment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_comment_collection.py b/src/oci/devops/models/pull_request_comment_collection.py index f0cc10bf4f..7619a40c71 100644 --- a/src/oci/devops/models/pull_request_comment_collection.py +++ b/src/oci/devops/models/pull_request_comment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_comment_like_collection.py b/src/oci/devops/models/pull_request_comment_like_collection.py index 88d9a511ee..1946d9b590 100644 --- a/src/oci/devops/models/pull_request_comment_like_collection.py +++ b/src/oci/devops/models/pull_request_comment_like_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_comment_summary.py b/src/oci/devops/models/pull_request_comment_summary.py index 9f8f40d448..f540c5e935 100644 --- a/src/oci/devops/models/pull_request_comment_summary.py +++ b/src/oci/devops/models/pull_request_comment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_file_change_collection.py b/src/oci/devops/models/pull_request_file_change_collection.py index 2cceb0ac3d..7e6e24bd07 100644 --- a/src/oci/devops/models/pull_request_file_change_collection.py +++ b/src/oci/devops/models/pull_request_file_change_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_file_change_summary.py b/src/oci/devops/models/pull_request_file_change_summary.py index c73f1048c5..91cc1f4054 100644 --- a/src/oci/devops/models/pull_request_file_change_summary.py +++ b/src/oci/devops/models/pull_request_file_change_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_lifecycle_activity_summary.py b/src/oci/devops/models/pull_request_lifecycle_activity_summary.py index 067da08343..bc4165ca05 100644 --- a/src/oci/devops/models/pull_request_lifecycle_activity_summary.py +++ b/src/oci/devops/models/pull_request_lifecycle_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_notification_preference.py b/src/oci/devops/models/pull_request_notification_preference.py index 50e2105a20..a4040e11b2 100644 --- a/src/oci/devops/models/pull_request_notification_preference.py +++ b/src/oci/devops/models/pull_request_notification_preference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/pull_request_summary.py b/src/oci/devops/models/pull_request_summary.py index dce8dcb9d1..ec5284294a 100644 --- a/src/oci/devops/models/pull_request_summary.py +++ b/src/oci/devops/models/pull_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/put_repository_branch_details.py b/src/oci/devops/models/put_repository_branch_details.py index ca78ab9bb0..8317e125bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/put_repository_ref_details.py b/src/oci/devops/models/put_repository_ref_details.py index ceefe4c11f..39761dd6ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/put_repository_tag_details.py b/src/oci/devops/models/put_repository_tag_details.py index 821c0eb48c..95b87b948b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository.py b/src/oci/devops/models/repository.py index d2455ccfb9..8dcc505750 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_analytics_details.py b/src/oci/devops/models/repository_analytics_details.py index 8b01f84d11..9d32d7f20a 100644 --- a/src/oci/devops/models/repository_analytics_details.py +++ b/src/oci/devops/models/repository_analytics_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_author_collection.py b/src/oci/devops/models/repository_author_collection.py index 9482258d11..881eeb917d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_author_summary.py b/src/oci/devops/models/repository_author_summary.py index 094eb6a54f..4dc0fe5151 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_branch.py b/src/oci/devops/models/repository_branch.py index 112bac3bcd..e29649a6e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_branch_summary.py b/src/oci/devops/models/repository_branch_summary.py index d59809a03b..b03e712bba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_collection.py b/src/oci/devops/models/repository_collection.py index 809d8f59f9..c28815ab7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_commit.py b/src/oci/devops/models/repository_commit.py index 7b9d05c72d..2976bb5834 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_commit_collection.py b/src/oci/devops/models/repository_commit_collection.py index 7e569e3730..9440ddfbc4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_commit_summary.py b/src/oci/devops/models/repository_commit_summary.py index eefec5b514..ad1f92f8a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_file_lines.py b/src/oci/devops/models/repository_file_lines.py index 08e398e826..8a6f37b419 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_metric_aggregation.py b/src/oci/devops/models/repository_metric_aggregation.py index 5ff1b774e4..d806665e09 100644 --- a/src/oci/devops/models/repository_metric_aggregation.py +++ b/src/oci/devops/models/repository_metric_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_metric_summary.py b/src/oci/devops/models/repository_metric_summary.py index 30a982f887..4b291b08ee 100644 --- a/src/oci/devops/models/repository_metric_summary.py +++ b/src/oci/devops/models/repository_metric_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_mirror_record.py b/src/oci/devops/models/repository_mirror_record.py index d5369c259c..596280fd82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_mirror_record_collection.py b/src/oci/devops/models/repository_mirror_record_collection.py index c4bd476d48..79ade220d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_mirror_record_summary.py b/src/oci/devops/models/repository_mirror_record_summary.py index 743ff17c23..14b96432da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_notification_preference.py b/src/oci/devops/models/repository_notification_preference.py index cd7fe452c2..df422663fd 100644 --- a/src/oci/devops/models/repository_notification_preference.py +++ b/src/oci/devops/models/repository_notification_preference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_object.py b/src/oci/devops/models/repository_object.py index 8a3de58aa8..baa32527f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_path_collection.py b/src/oci/devops/models/repository_path_collection.py index 80ef766b7b..1d94460aa2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_path_summary.py b/src/oci/devops/models/repository_path_summary.py index f31b624476..05df5d3490 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_ref.py b/src/oci/devops/models/repository_ref.py index 9157a1cde3..b9e13a7efe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_ref_collection.py b/src/oci/devops/models/repository_ref_collection.py index fdef0afb4e..08d5c1a2c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_ref_summary.py b/src/oci/devops/models/repository_ref_summary.py index e0c8af8772..2878238c86 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_settings.py b/src/oci/devops/models/repository_settings.py index 52a38da669..29f223d58e 100644 --- a/src/oci/devops/models/repository_settings.py +++ b/src/oci/devops/models/repository_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_summary.py b/src/oci/devops/models/repository_summary.py index 9c395092f1..7c2e61da93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_tag.py b/src/oci/devops/models/repository_tag.py index 44273c42e9..aff754c256 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/repository_tag_summary.py b/src/oci/devops/models/repository_tag_summary.py index 2317dc9f21..ae901df57a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/review_pull_request_details.py b/src/oci/devops/models/review_pull_request_details.py index 2db6078393..1e83894ab9 100644 --- a/src/oci/devops/models/review_pull_request_details.py +++ b/src/oci/devops/models/review_pull_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/reviewer.py b/src/oci/devops/models/reviewer.py index 94f7cac35a..62206f0bd9 100644 --- a/src/oci/devops/models/reviewer.py +++ b/src/oci/devops/models/reviewer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/reviewer_activity_summary.py b/src/oci/devops/models/reviewer_activity_summary.py index 24e6312d9d..6ccbdd0de7 100644 --- a/src/oci/devops/models/reviewer_activity_summary.py +++ b/src/oci/devops/models/reviewer_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/service_vnic_channel.py b/src/oci/devops/models/service_vnic_channel.py index b37b4ebca0..64872e845c 100644 --- a/src/oci/devops/models/service_vnic_channel.py +++ b/src/oci/devops/models/service_vnic_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/shape_config.py b/src/oci/devops/models/shape_config.py index 86bcfebfd3..14eff38de4 100644 --- a/src/oci/devops/models/shape_config.py +++ b/src/oci/devops/models/shape_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/shell_deploy_stage.py b/src/oci/devops/models/shell_deploy_stage.py index 48bc68f29a..f19b7f43c3 100644 --- a/src/oci/devops/models/shell_deploy_stage.py +++ b/src/oci/devops/models/shell_deploy_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/shell_deploy_stage_execution_progress.py b/src/oci/devops/models/shell_deploy_stage_execution_progress.py index f53f803a76..5e8a6f1039 100644 --- a/src/oci/devops/models/shell_deploy_stage_execution_progress.py +++ b/src/oci/devops/models/shell_deploy_stage_execution_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/shell_deploy_stage_summary.py b/src/oci/devops/models/shell_deploy_stage_summary.py index 7e778fecc2..defccf1958 100644 --- a/src/oci/devops/models/shell_deploy_stage_summary.py +++ b/src/oci/devops/models/shell_deploy_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/single_deploy_stage_deployment.py b/src/oci/devops/models/single_deploy_stage_deployment.py index 4ac87bcdfd..e12f583607 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 18ff611e18..eae474f575 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/single_deploy_stage_redeployment.py b/src/oci/devops/models/single_deploy_stage_redeployment.py index 357cadf25b..1a3584b8c2 100644 --- a/src/oci/devops/models/single_deploy_stage_redeployment.py +++ b/src/oci/devops/models/single_deploy_stage_redeployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/single_deploy_stage_redeployment_summary.py b/src/oci/devops/models/single_deploy_stage_redeployment_summary.py index 5cc3318c47..f96640080c 100644 --- a/src/oci/devops/models/single_deploy_stage_redeployment_summary.py +++ b/src/oci/devops/models/single_deploy_stage_redeployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/stage_output.py b/src/oci/devops/models/stage_output.py index 43910b4be4..7de7970ab8 100644 --- a/src/oci/devops/models/stage_output.py +++ b/src/oci/devops/models/stage_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/summarize_project_repository_analytics_details.py b/src/oci/devops/models/summarize_project_repository_analytics_details.py index a4ac59599f..bf9efa5073 100644 --- a/src/oci/devops/models/summarize_project_repository_analytics_details.py +++ b/src/oci/devops/models/summarize_project_repository_analytics_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/summarize_repository_analytics_details.py b/src/oci/devops/models/summarize_repository_analytics_details.py index 4b861239bd..6f2ec6e889 100644 --- a/src/oci/devops/models/summarize_repository_analytics_details.py +++ b/src/oci/devops/models/summarize_repository_analytics_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/sync_repository_details.py b/src/oci/devops/models/sync_repository_details.py index 82747a2a79..1660a82408 100644 --- a/src/oci/devops/models/sync_repository_details.py +++ b/src/oci/devops/models/sync_repository_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/test_report_output.py b/src/oci/devops/models/test_report_output.py index ea4dbbfd0f..22aef0c34b 100644 --- a/src/oci/devops/models/test_report_output.py +++ b/src/oci/devops/models/test_report_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/tls_verify_config.py b/src/oci/devops/models/tls_verify_config.py index 3af7db78d7..f6e7062fcf 100644 --- a/src/oci/devops/models/tls_verify_config.py +++ b/src/oci/devops/models/tls_verify_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger.py b/src/oci/devops/models/trigger.py index a78cd6fdd6..0eb9e51c24 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger_action.py b/src/oci/devops/models/trigger_action.py index f2299334a2..0bb23d9a7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger_build_pipeline_action.py b/src/oci/devops/models/trigger_build_pipeline_action.py index 3c7a6d77bd..04ec0c4cbe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger_collection.py b/src/oci/devops/models/trigger_collection.py index b5254b313c..b906c1a996 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger_create_result.py b/src/oci/devops/models/trigger_create_result.py index bea435d37d..c1e77e9062 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 63dba4f9f6..4f993b3e1c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger_deployment_stage.py b/src/oci/devops/models/trigger_deployment_stage.py index be80f496bc..78401b271e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger_deployment_stage_summary.py b/src/oci/devops/models/trigger_deployment_stage_summary.py index 24ae14df1f..33e8ae361c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger_info.py b/src/oci/devops/models/trigger_info.py index e092e3d349..6709f6cb37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger_schedule.py b/src/oci/devops/models/trigger_schedule.py index dedd6a9b12..6e88f7d150 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/trigger_summary.py b/src/oci/devops/models/trigger_summary.py index 7784aab6fc..3e336646be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 493fdbb352..46fe7aca84 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_approval_rule_details.py b/src/oci/devops/models/update_approval_rule_details.py index 4939395b3c..affe1ceac0 100644 --- a/src/oci/devops/models/update_approval_rule_details.py +++ b/src/oci/devops/models/update_approval_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_approval_rule_details_collection.py b/src/oci/devops/models/update_approval_rule_details_collection.py index 8ff4849aaf..7969bb7d64 100644 --- a/src/oci/devops/models/update_approval_rule_details_collection.py +++ b/src/oci/devops/models/update_approval_rule_details_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_bitbucket_cloud_app_password_connection_details.py b/src/oci/devops/models/update_bitbucket_cloud_app_password_connection_details.py index 96dbcaea38..83b3d7dd1d 100644 --- a/src/oci/devops/models/update_bitbucket_cloud_app_password_connection_details.py +++ b/src/oci/devops/models/update_bitbucket_cloud_app_password_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_bitbucket_cloud_trigger_details.py b/src/oci/devops/models/update_bitbucket_cloud_trigger_details.py index 08a419f127..7e497cc66c 100644 --- a/src/oci/devops/models/update_bitbucket_cloud_trigger_details.py +++ b/src/oci/devops/models/update_bitbucket_cloud_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_bitbucket_server_access_token_connection_details.py b/src/oci/devops/models/update_bitbucket_server_access_token_connection_details.py index 74995bbb04..ab59401275 100644 --- a/src/oci/devops/models/update_bitbucket_server_access_token_connection_details.py +++ b/src/oci/devops/models/update_bitbucket_server_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_bitbucket_server_trigger_details.py b/src/oci/devops/models/update_bitbucket_server_trigger_details.py index 8ddc32b7d8..5426899d21 100644 --- a/src/oci/devops/models/update_bitbucket_server_trigger_details.py +++ b/src/oci/devops/models/update_bitbucket_server_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_build_pipeline_details.py b/src/oci/devops/models/update_build_pipeline_details.py index cf8614a435..d43f2f9ef5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 eb897230db..859eb14fbf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_build_run_details.py b/src/oci/devops/models/update_build_run_details.py index a75a23c410..f2ec6401f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_build_stage_details.py b/src/oci/devops/models/update_build_stage_details.py index 26e9a8deb9..bd1425a33c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_compute_instance_group_blue_green_deploy_stage_details.py b/src/oci/devops/models/update_compute_instance_group_blue_green_deploy_stage_details.py index eb69694a4f..ec87eaf61c 100644 --- a/src/oci/devops/models/update_compute_instance_group_blue_green_deploy_stage_details.py +++ b/src/oci/devops/models/update_compute_instance_group_blue_green_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/update_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.py index 4b04b67bf8..55d8b3a414 100644 --- a/src/oci/devops/models/update_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/update_compute_instance_group_blue_green_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_compute_instance_group_canary_approval_deploy_stage_details.py b/src/oci/devops/models/update_compute_instance_group_canary_approval_deploy_stage_details.py index 4bc987ff94..a30ddd9e40 100644 --- a/src/oci/devops/models/update_compute_instance_group_canary_approval_deploy_stage_details.py +++ b/src/oci/devops/models/update_compute_instance_group_canary_approval_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_compute_instance_group_canary_deploy_stage_details.py b/src/oci/devops/models/update_compute_instance_group_canary_deploy_stage_details.py index cfcbd2b049..d81bf32642 100644 --- a/src/oci/devops/models/update_compute_instance_group_canary_deploy_stage_details.py +++ b/src/oci/devops/models/update_compute_instance_group_canary_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_compute_instance_group_canary_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/update_compute_instance_group_canary_traffic_shift_deploy_stage_details.py index 5e3290d9d8..9dbd745d6d 100644 --- a/src/oci/devops/models/update_compute_instance_group_canary_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/update_compute_instance_group_canary_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 50339cddb6..eaa19f4ed1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 8849723341..091db371a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_connection_details.py b/src/oci/devops/models/update_connection_details.py index 7e0e5a0389..18a204fc60 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 3b784fc04b..0fb4c586db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_deploy_artifact_details.py b/src/oci/devops/models/update_deploy_artifact_details.py index 9f09719e10..e40949c3af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_deploy_environment_details.py b/src/oci/devops/models/update_deploy_environment_details.py index 9ff45a2dd6..079d649b79 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 a5261c0060..2ccf723fd0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_deploy_pipeline_details.py b/src/oci/devops/models/update_deploy_pipeline_details.py index 7f29f4c6b1..b70185ed98 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 2686899989..2224e7a200 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_deploy_stage_details.py b/src/oci/devops/models/update_deploy_stage_details.py index e041370b68..30eb75e808 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_deployment_details.py b/src/oci/devops/models/update_deployment_details.py index 7b6b1fe207..79b3b643cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 d18ec5e444..1767be765f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 d0f6144363..ebeb196a5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 4a2f076bcf..7a71f46670 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 9519df5dff..7b1f163b20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_github_trigger_details.py b/src/oci/devops/models/update_github_trigger_details.py index dbcead5c9d..325870e8b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 2a405a3e8d..e2e878aae0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_gitlab_server_access_token_connection_details.py b/src/oci/devops/models/update_gitlab_server_access_token_connection_details.py index a3727a6e3c..06e989fa6a 100644 --- a/src/oci/devops/models/update_gitlab_server_access_token_connection_details.py +++ b/src/oci/devops/models/update_gitlab_server_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_gitlab_server_trigger_details.py b/src/oci/devops/models/update_gitlab_server_trigger_details.py index 9e6cfdbd01..b9dda7bef7 100644 --- a/src/oci/devops/models/update_gitlab_server_trigger_details.py +++ b/src/oci/devops/models/update_gitlab_server_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_gitlab_trigger_details.py b/src/oci/devops/models/update_gitlab_trigger_details.py index 0dbcc17ebe..208a1051bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 14aab09011..be294b5b4d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 68b0af6691..e2a978b97f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 84c3dd4fb4..0767a9ba8a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_oke_blue_green_deploy_stage_details.py b/src/oci/devops/models/update_oke_blue_green_deploy_stage_details.py index a47e086b1f..49f968f6a6 100644 --- a/src/oci/devops/models/update_oke_blue_green_deploy_stage_details.py +++ b/src/oci/devops/models/update_oke_blue_green_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_oke_blue_green_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/update_oke_blue_green_traffic_shift_deploy_stage_details.py index c6cdaac0e7..5e89f1a705 100644 --- a/src/oci/devops/models/update_oke_blue_green_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/update_oke_blue_green_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_oke_canary_approval_deploy_stage_details.py b/src/oci/devops/models/update_oke_canary_approval_deploy_stage_details.py index f78b7a24ac..e373be053f 100644 --- a/src/oci/devops/models/update_oke_canary_approval_deploy_stage_details.py +++ b/src/oci/devops/models/update_oke_canary_approval_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_oke_canary_deploy_stage_details.py b/src/oci/devops/models/update_oke_canary_deploy_stage_details.py index 1265636d32..8fead70cf9 100644 --- a/src/oci/devops/models/update_oke_canary_deploy_stage_details.py +++ b/src/oci/devops/models/update_oke_canary_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_oke_canary_traffic_shift_deploy_stage_details.py b/src/oci/devops/models/update_oke_canary_traffic_shift_deploy_stage_details.py index 4ba54707be..1f2b224816 100644 --- a/src/oci/devops/models/update_oke_canary_traffic_shift_deploy_stage_details.py +++ b/src/oci/devops/models/update_oke_canary_traffic_shift_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 ffec4c391e..c1ca3a918b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 8642e6d9c5..ab8f652007 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_oke_helm_chart_deploy_stage_details.py b/src/oci/devops/models/update_oke_helm_chart_deploy_stage_details.py index a70899e24a..406a0c49e6 100644 --- a/src/oci/devops/models/update_oke_helm_chart_deploy_stage_details.py +++ b/src/oci/devops/models/update_oke_helm_chart_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_project_details.py b/src/oci/devops/models/update_project_details.py index 4a6f9ecd17..fcdeadc4a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_project_notification_preference_details.py b/src/oci/devops/models/update_project_notification_preference_details.py index d213063db9..5799568520 100644 --- a/src/oci/devops/models/update_project_notification_preference_details.py +++ b/src/oci/devops/models/update_project_notification_preference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_project_repository_settings_details.py b/src/oci/devops/models/update_project_repository_settings_details.py index e6b899eb4e..359d5578c3 100644 --- a/src/oci/devops/models/update_project_repository_settings_details.py +++ b/src/oci/devops/models/update_project_repository_settings_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_pull_request_comment_details.py b/src/oci/devops/models/update_pull_request_comment_details.py index 294d807354..e2c51b79d8 100644 --- a/src/oci/devops/models/update_pull_request_comment_details.py +++ b/src/oci/devops/models/update_pull_request_comment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_pull_request_details.py b/src/oci/devops/models/update_pull_request_details.py index 93172e000e..bc4aea7a1f 100644 --- a/src/oci/devops/models/update_pull_request_details.py +++ b/src/oci/devops/models/update_pull_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_pull_request_notification_preference_details.py b/src/oci/devops/models/update_pull_request_notification_preference_details.py index b85a94f96d..723fee680e 100644 --- a/src/oci/devops/models/update_pull_request_notification_preference_details.py +++ b/src/oci/devops/models/update_pull_request_notification_preference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_repository_details.py b/src/oci/devops/models/update_repository_details.py index 5e20045195..7035003f92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_repository_notification_preference_details.py b/src/oci/devops/models/update_repository_notification_preference_details.py index ba659be859..415c2f7077 100644 --- a/src/oci/devops/models/update_repository_notification_preference_details.py +++ b/src/oci/devops/models/update_repository_notification_preference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_repository_settings_details.py b/src/oci/devops/models/update_repository_settings_details.py index 4f000bbcc7..1942466bc9 100644 --- a/src/oci/devops/models/update_repository_settings_details.py +++ b/src/oci/devops/models/update_repository_settings_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_reviewer_details.py b/src/oci/devops/models/update_reviewer_details.py index c7950aed0e..f25066bd2b 100644 --- a/src/oci/devops/models/update_reviewer_details.py +++ b/src/oci/devops/models/update_reviewer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_shell_deploy_stage_details.py b/src/oci/devops/models/update_shell_deploy_stage_details.py index d244eed80c..107a36d041 100644 --- a/src/oci/devops/models/update_shell_deploy_stage_details.py +++ b/src/oci/devops/models/update_shell_deploy_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 9e8f41d1de..7d59384081 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_single_deploy_stage_redeployment_details.py b/src/oci/devops/models/update_single_deploy_stage_redeployment_details.py index 518eced643..ad1a88f211 100644 --- a/src/oci/devops/models/update_single_deploy_stage_redeployment_details.py +++ b/src/oci/devops/models/update_single_deploy_stage_redeployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 162cf189f7..a7209f8e1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_trigger_details.py b/src/oci/devops/models/update_trigger_details.py index 58db74c323..fdd6cdf3e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_vbs_access_token_connection_details.py b/src/oci/devops/models/update_vbs_access_token_connection_details.py index eee9dd95a3..ea8a8927cd 100644 --- a/src/oci/devops/models/update_vbs_access_token_connection_details.py +++ b/src/oci/devops/models/update_vbs_access_token_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_vbs_trigger_details.py b/src/oci/devops/models/update_vbs_trigger_details.py index d1cb859877..9d714b7771 100644 --- a/src/oci/devops/models/update_vbs_trigger_details.py +++ b/src/oci/devops/models/update_vbs_trigger_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_wait_criteria_details.py b/src/oci/devops/models/update_wait_criteria_details.py index d1e551f79c..d1d57657e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 cb5171069b..0a4fb23e93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/update_wait_stage_details.py b/src/oci/devops/models/update_wait_stage_details.py index 6bf88ae8f9..eea5433900 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/validate_merge_pull_request_details.py b/src/oci/devops/models/validate_merge_pull_request_details.py index 776c2d7402..26ef483bd3 100644 --- a/src/oci/devops/models/validate_merge_pull_request_details.py +++ b/src/oci/devops/models/validate_merge_pull_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vault_secret_verification_key_source.py b/src/oci/devops/models/vault_secret_verification_key_source.py index 3983bd1744..548429e836 100644 --- a/src/oci/devops/models/vault_secret_verification_key_source.py +++ b/src/oci/devops/models/vault_secret_verification_key_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_access_token_connection.py b/src/oci/devops/models/vbs_access_token_connection.py index 6d75db65f4..6194af5b52 100644 --- a/src/oci/devops/models/vbs_access_token_connection.py +++ b/src/oci/devops/models/vbs_access_token_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_access_token_connection_summary.py b/src/oci/devops/models/vbs_access_token_connection_summary.py index 4a2fe6df8b..484bad92a3 100644 --- a/src/oci/devops/models/vbs_access_token_connection_summary.py +++ b/src/oci/devops/models/vbs_access_token_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_build_run_source.py b/src/oci/devops/models/vbs_build_run_source.py index 89cf267fe0..99fcd3bf66 100644 --- a/src/oci/devops/models/vbs_build_run_source.py +++ b/src/oci/devops/models/vbs_build_run_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_build_source.py b/src/oci/devops/models/vbs_build_source.py index 565c944867..e9bc4bd957 100644 --- a/src/oci/devops/models/vbs_build_source.py +++ b/src/oci/devops/models/vbs_build_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_filter.py b/src/oci/devops/models/vbs_filter.py index 26be8d7804..f085195ccb 100644 --- a/src/oci/devops/models/vbs_filter.py +++ b/src/oci/devops/models/vbs_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_filter_attributes.py b/src/oci/devops/models/vbs_filter_attributes.py index 5d57d690cd..b03d613865 100644 --- a/src/oci/devops/models/vbs_filter_attributes.py +++ b/src/oci/devops/models/vbs_filter_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_filter_exclusion_attributes.py b/src/oci/devops/models/vbs_filter_exclusion_attributes.py index 63566b1d6e..30a6492c5e 100644 --- a/src/oci/devops/models/vbs_filter_exclusion_attributes.py +++ b/src/oci/devops/models/vbs_filter_exclusion_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_trigger.py b/src/oci/devops/models/vbs_trigger.py index f4b6cc4ba1..497a69ed74 100644 --- a/src/oci/devops/models/vbs_trigger.py +++ b/src/oci/devops/models/vbs_trigger.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_trigger_create_result.py b/src/oci/devops/models/vbs_trigger_create_result.py index 6bd4b6df94..dbb5a73da6 100644 --- a/src/oci/devops/models/vbs_trigger_create_result.py +++ b/src/oci/devops/models/vbs_trigger_create_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vbs_trigger_summary.py b/src/oci/devops/models/vbs_trigger_summary.py index b783cc2565..24d9ff9c4a 100644 --- a/src/oci/devops/models/vbs_trigger_summary.py +++ b/src/oci/devops/models/vbs_trigger_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/verification_key_source.py b/src/oci/devops/models/verification_key_source.py index a2abe24cd4..61c29a7daa 100644 --- a/src/oci/devops/models/verification_key_source.py +++ b/src/oci/devops/models/verification_key_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vulnerability_audit_summary.py b/src/oci/devops/models/vulnerability_audit_summary.py index ee16b64fb3..bf31d0ddd8 100644 --- a/src/oci/devops/models/vulnerability_audit_summary.py +++ b/src/oci/devops/models/vulnerability_audit_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/vulnerability_audit_summary_collection.py b/src/oci/devops/models/vulnerability_audit_summary_collection.py index 108c247bcb..02ff9a3938 100644 --- a/src/oci/devops/models/vulnerability_audit_summary_collection.py +++ b/src/oci/devops/models/vulnerability_audit_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/wait_criteria.py b/src/oci/devops/models/wait_criteria.py index cdba62eab9..00fbcb4683 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/wait_criteria_summary.py b/src/oci/devops/models/wait_criteria_summary.py index b30fc68f99..d4ed4ea6ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/wait_deploy_stage.py b/src/oci/devops/models/wait_deploy_stage.py index 872b1d3fc0..d9396171f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 48e19af833..e663160d3c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/wait_deploy_stage_summary.py b/src/oci/devops/models/wait_deploy_stage_summary.py index 769697ba4b..a0956b697f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/wait_stage.py b/src/oci/devops/models/wait_stage.py index 3478768deb..ef44f6b3f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/wait_stage_run_progress.py b/src/oci/devops/models/wait_stage_run_progress.py index be0a7805f9..c05669d6eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/wait_stage_summary.py b/src/oci/devops/models/wait_stage_summary.py index afb6206aa3..1912642eab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/work_request.py b/src/oci/devops/models/work_request.py index fa840b7519..691219dd3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/work_request_collection.py b/src/oci/devops/models/work_request_collection.py index 3ef1cf0638..6a12784d89 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/work_request_error.py b/src/oci/devops/models/work_request_error.py index 6f61b8e026..d7d4234109 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/work_request_error_collection.py b/src/oci/devops/models/work_request_error_collection.py index fe5cee9f42..223848d1cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/work_request_log_entry.py b/src/oci/devops/models/work_request_log_entry.py index ea525b7c20..0050275c54 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 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 9e87e85a2c..332a18ce0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/work_request_resource.py b/src/oci/devops/models/work_request_resource.py index a7ea1fb055..7ed62ea76e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/devops/models/work_request_summary.py b/src/oci/devops/models/work_request_summary.py index e0cad26f36..2fd199881e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210630 diff --git a/src/oci/disaster_recovery/__init__.py b/src/oci/disaster_recovery/__init__.py index d1586a44d4..1fd8c9782e 100644 --- a/src/oci/disaster_recovery/__init__.py +++ b/src/oci/disaster_recovery/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/disaster_recovery_client.py b/src/oci/disaster_recovery/disaster_recovery_client.py index 0171ef496e..e7cb6443eb 100644 --- a/src/oci/disaster_recovery/disaster_recovery_client.py +++ b/src/oci/disaster_recovery/disaster_recovery_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/disaster_recovery_client_composite_operations.py b/src/oci/disaster_recovery/disaster_recovery_client_composite_operations.py index 7bb465266e..8417843414 100644 --- a/src/oci/disaster_recovery/disaster_recovery_client_composite_operations.py +++ b/src/oci/disaster_recovery/disaster_recovery_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/__init__.py b/src/oci/disaster_recovery/models/__init__.py index 9fa3ab329f..d75959475c 100644 --- a/src/oci/disaster_recovery/models/__init__.py +++ b/src/oci/disaster_recovery/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/associate_dr_protection_group_details.py b/src/oci/disaster_recovery/models/associate_dr_protection_group_details.py index 93b669b46c..dec68f2c26 100644 --- a/src/oci/disaster_recovery/models/associate_dr_protection_group_details.py +++ b/src/oci/disaster_recovery/models/associate_dr_protection_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/block_volume_attachment_details.py b/src/oci/disaster_recovery/models/block_volume_attachment_details.py index c599c6d813..8d06b0940a 100644 --- a/src/oci/disaster_recovery/models/block_volume_attachment_details.py +++ b/src/oci/disaster_recovery/models/block_volume_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/block_volume_mount_details.py b/src/oci/disaster_recovery/models/block_volume_mount_details.py index 34e192d7e0..f7bd8c6ef7 100644 --- a/src/oci/disaster_recovery/models/block_volume_mount_details.py +++ b/src/oci/disaster_recovery/models/block_volume_mount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/cancel_dr_plan_execution_details.py b/src/oci/disaster_recovery/models/cancel_dr_plan_execution_details.py index 828d05b31b..4980e95afa 100644 --- a/src/oci/disaster_recovery/models/cancel_dr_plan_execution_details.py +++ b/src/oci/disaster_recovery/models/cancel_dr_plan_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/change_dr_protection_group_compartment_details.py b/src/oci/disaster_recovery/models/change_dr_protection_group_compartment_details.py index 830a3dd5cb..ce07699dcd 100644 --- a/src/oci/disaster_recovery/models/change_dr_protection_group_compartment_details.py +++ b/src/oci/disaster_recovery/models/change_dr_protection_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/compute_instance_movable_file_system_operation.py b/src/oci/disaster_recovery/models/compute_instance_movable_file_system_operation.py index f819cbdfe3..72f8699d10 100644 --- a/src/oci/disaster_recovery/models/compute_instance_movable_file_system_operation.py +++ b/src/oci/disaster_recovery/models/compute_instance_movable_file_system_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/compute_instance_movable_vnic_mapping.py b/src/oci/disaster_recovery/models/compute_instance_movable_vnic_mapping.py index 9365a01fac..5725bebe96 100644 --- a/src/oci/disaster_recovery/models/compute_instance_movable_vnic_mapping.py +++ b/src/oci/disaster_recovery/models/compute_instance_movable_vnic_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/compute_instance_movable_vnic_mapping_details.py b/src/oci/disaster_recovery/models/compute_instance_movable_vnic_mapping_details.py index ece1cd351b..6f33e790a3 100644 --- a/src/oci/disaster_recovery/models/compute_instance_movable_vnic_mapping_details.py +++ b/src/oci/disaster_recovery/models/compute_instance_movable_vnic_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/compute_instance_non_movable_block_volume_operation.py b/src/oci/disaster_recovery/models/compute_instance_non_movable_block_volume_operation.py index 7110e08270..595de916e4 100644 --- a/src/oci/disaster_recovery/models/compute_instance_non_movable_block_volume_operation.py +++ b/src/oci/disaster_recovery/models/compute_instance_non_movable_block_volume_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/compute_instance_non_movable_file_system_operation.py b/src/oci/disaster_recovery/models/compute_instance_non_movable_file_system_operation.py index b5f3467e52..fc04b651b7 100644 --- a/src/oci/disaster_recovery/models/compute_instance_non_movable_file_system_operation.py +++ b/src/oci/disaster_recovery/models/compute_instance_non_movable_file_system_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/compute_instance_vnic_mapping.py b/src/oci/disaster_recovery/models/compute_instance_vnic_mapping.py index b4cf989fd6..c609cab7ac 100644 --- a/src/oci/disaster_recovery/models/compute_instance_vnic_mapping.py +++ b/src/oci/disaster_recovery/models/compute_instance_vnic_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/compute_instance_vnic_mapping_details.py b/src/oci/disaster_recovery/models/compute_instance_vnic_mapping_details.py index 5f318b23f6..003965ed12 100644 --- a/src/oci/disaster_recovery/models/compute_instance_vnic_mapping_details.py +++ b/src/oci/disaster_recovery/models/compute_instance_vnic_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_block_volume_attachment_details.py b/src/oci/disaster_recovery/models/create_block_volume_attachment_details.py index 641630214d..9ed447f532 100644 --- a/src/oci/disaster_recovery/models/create_block_volume_attachment_details.py +++ b/src/oci/disaster_recovery/models/create_block_volume_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_block_volume_mount_details.py b/src/oci/disaster_recovery/models/create_block_volume_mount_details.py index 9d6dcccbd4..9ce48c99a3 100644 --- a/src/oci/disaster_recovery/models/create_block_volume_mount_details.py +++ b/src/oci/disaster_recovery/models/create_block_volume_mount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_compute_instance_movable_file_system_operation_details.py b/src/oci/disaster_recovery/models/create_compute_instance_movable_file_system_operation_details.py index 8a2e003a73..18bb327a0f 100644 --- a/src/oci/disaster_recovery/models/create_compute_instance_movable_file_system_operation_details.py +++ b/src/oci/disaster_recovery/models/create_compute_instance_movable_file_system_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_compute_instance_non_movable_block_volume_operation_details.py b/src/oci/disaster_recovery/models/create_compute_instance_non_movable_block_volume_operation_details.py index 3985c6db63..c8b0b07300 100644 --- a/src/oci/disaster_recovery/models/create_compute_instance_non_movable_block_volume_operation_details.py +++ b/src/oci/disaster_recovery/models/create_compute_instance_non_movable_block_volume_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_compute_instance_non_movable_file_system_operation_details.py b/src/oci/disaster_recovery/models/create_compute_instance_non_movable_file_system_operation_details.py index 1b483fdf8b..ada3138e0c 100644 --- a/src/oci/disaster_recovery/models/create_compute_instance_non_movable_file_system_operation_details.py +++ b/src/oci/disaster_recovery/models/create_compute_instance_non_movable_file_system_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_plan_details.py b/src/oci/disaster_recovery/models/create_dr_plan_details.py index 3468f90abb..46bcba5ce4 100644 --- a/src/oci/disaster_recovery/models/create_dr_plan_details.py +++ b/src/oci/disaster_recovery/models/create_dr_plan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_plan_execution_details.py b/src/oci/disaster_recovery/models/create_dr_plan_execution_details.py index fc9fdd7119..f033fbfe75 100644 --- a/src/oci/disaster_recovery/models/create_dr_plan_execution_details.py +++ b/src/oci/disaster_recovery/models/create_dr_plan_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_details.py index a46b76c76f..b8f1c360ad 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_autonomous_container_database_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_autonomous_container_database_details.py index d7752842f1..9528357640 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_autonomous_container_database_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_autonomous_container_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_autonomous_database_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_autonomous_database_details.py index ab52c107c3..4f508b166f 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_autonomous_database_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_autonomous_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_details.py index a35d770698..d28399cf20 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_movable_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_movable_details.py index 3bade10401..1fdcdabee6 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_movable_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_movable_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_non_movable_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_non_movable_details.py index 5e7ffbf23b..4c1592f358 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_non_movable_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_compute_instance_non_movable_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_database_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_database_details.py index 49a2b46038..b0dd771683 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_database_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_details.py index 3eb9d318d6..153b5bf949 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_file_system_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_file_system_details.py index 12479528dd..e08fbc3756 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_file_system_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_file_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_load_balancer_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_load_balancer_details.py index 101b4d4dac..1629e5066d 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_load_balancer_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_network_load_balancer_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_network_load_balancer_details.py index 2ce27ebad5..7270b9706b 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_network_load_balancer_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_network_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_object_storage_bucket_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_object_storage_bucket_details.py index a9ecfd6197..e423893666 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_object_storage_bucket_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_object_storage_bucket_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_dr_protection_group_member_volume_group_details.py b/src/oci/disaster_recovery/models/create_dr_protection_group_member_volume_group_details.py index 1b44cb4462..417b4ea390 100644 --- a/src/oci/disaster_recovery/models/create_dr_protection_group_member_volume_group_details.py +++ b/src/oci/disaster_recovery/models/create_dr_protection_group_member_volume_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_file_system_mount_details.py b/src/oci/disaster_recovery/models/create_file_system_mount_details.py index 8fedaf7f33..153dbfb7db 100644 --- a/src/oci/disaster_recovery/models/create_file_system_mount_details.py +++ b/src/oci/disaster_recovery/models/create_file_system_mount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_file_system_unmount_details.py b/src/oci/disaster_recovery/models/create_file_system_unmount_details.py index 3bdeb9b52c..69265034d4 100644 --- a/src/oci/disaster_recovery/models/create_file_system_unmount_details.py +++ b/src/oci/disaster_recovery/models/create_file_system_unmount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/create_object_storage_log_location_details.py b/src/oci/disaster_recovery/models/create_object_storage_log_location_details.py index 646d87c235..20558006f4 100644 --- a/src/oci/disaster_recovery/models/create_object_storage_log_location_details.py +++ b/src/oci/disaster_recovery/models/create_object_storage_log_location_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/disassociate_dr_protection_group_default_details.py b/src/oci/disaster_recovery/models/disassociate_dr_protection_group_default_details.py index cfed11b7a1..2ebc9e86b1 100644 --- a/src/oci/disaster_recovery/models/disassociate_dr_protection_group_default_details.py +++ b/src/oci/disaster_recovery/models/disassociate_dr_protection_group_default_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/disassociate_dr_protection_group_details.py b/src/oci/disaster_recovery/models/disassociate_dr_protection_group_details.py index df5baef6a6..931dee852a 100644 --- a/src/oci/disaster_recovery/models/disassociate_dr_protection_group_details.py +++ b/src/oci/disaster_recovery/models/disassociate_dr_protection_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan.py b/src/oci/disaster_recovery/models/dr_plan.py index 4a2fb774f8..303b7480af 100644 --- a/src/oci/disaster_recovery/models/dr_plan.py +++ b/src/oci/disaster_recovery/models/dr_plan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_collection.py b/src/oci/disaster_recovery/models/dr_plan_collection.py index 319dbab496..4bae4bb94e 100644 --- a/src/oci/disaster_recovery/models/dr_plan_collection.py +++ b/src/oci/disaster_recovery/models/dr_plan_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_execution.py b/src/oci/disaster_recovery/models/dr_plan_execution.py index 1dbafe70a8..5da7b31658 100644 --- a/src/oci/disaster_recovery/models/dr_plan_execution.py +++ b/src/oci/disaster_recovery/models/dr_plan_execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_execution_collection.py b/src/oci/disaster_recovery/models/dr_plan_execution_collection.py index 61a6d76024..da3793562e 100644 --- a/src/oci/disaster_recovery/models/dr_plan_execution_collection.py +++ b/src/oci/disaster_recovery/models/dr_plan_execution_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_execution_control_details.py b/src/oci/disaster_recovery/models/dr_plan_execution_control_details.py index 0e032f1694..e853a22e86 100644 --- a/src/oci/disaster_recovery/models/dr_plan_execution_control_details.py +++ b/src/oci/disaster_recovery/models/dr_plan_execution_control_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_execution_option_details.py b/src/oci/disaster_recovery/models/dr_plan_execution_option_details.py index 33149e5e07..e14874e7f3 100644 --- a/src/oci/disaster_recovery/models/dr_plan_execution_option_details.py +++ b/src/oci/disaster_recovery/models/dr_plan_execution_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_execution_options.py b/src/oci/disaster_recovery/models/dr_plan_execution_options.py index 3362d04bff..e3f531fafa 100644 --- a/src/oci/disaster_recovery/models/dr_plan_execution_options.py +++ b/src/oci/disaster_recovery/models/dr_plan_execution_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_execution_summary.py b/src/oci/disaster_recovery/models/dr_plan_execution_summary.py index 251f68f202..5f6d5e564b 100644 --- a/src/oci/disaster_recovery/models/dr_plan_execution_summary.py +++ b/src/oci/disaster_recovery/models/dr_plan_execution_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_group.py b/src/oci/disaster_recovery/models/dr_plan_group.py index fdc18bb99e..4fedecdef0 100644 --- a/src/oci/disaster_recovery/models/dr_plan_group.py +++ b/src/oci/disaster_recovery/models/dr_plan_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_group_execution.py b/src/oci/disaster_recovery/models/dr_plan_group_execution.py index 01c65f31a3..33afb30424 100644 --- a/src/oci/disaster_recovery/models/dr_plan_group_execution.py +++ b/src/oci/disaster_recovery/models/dr_plan_group_execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_step.py b/src/oci/disaster_recovery/models/dr_plan_step.py index 84db2e5b0f..1702f77060 100644 --- a/src/oci/disaster_recovery/models/dr_plan_step.py +++ b/src/oci/disaster_recovery/models/dr_plan_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_step_execution.py b/src/oci/disaster_recovery/models/dr_plan_step_execution.py index 23134591db..faeb23e448 100644 --- a/src/oci/disaster_recovery/models/dr_plan_step_execution.py +++ b/src/oci/disaster_recovery/models/dr_plan_step_execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_summary.py b/src/oci/disaster_recovery/models/dr_plan_summary.py index 4e65b13474..d799f37db3 100644 --- a/src/oci/disaster_recovery/models/dr_plan_summary.py +++ b/src/oci/disaster_recovery/models/dr_plan_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_plan_user_defined_step.py b/src/oci/disaster_recovery/models/dr_plan_user_defined_step.py index e38a2092e2..f0df065de5 100644 --- a/src/oci/disaster_recovery/models/dr_plan_user_defined_step.py +++ b/src/oci/disaster_recovery/models/dr_plan_user_defined_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group.py b/src/oci/disaster_recovery/models/dr_protection_group.py index 476c230132..44e1eed112 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group.py +++ b/src/oci/disaster_recovery/models/dr_protection_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_collection.py b/src/oci/disaster_recovery/models/dr_protection_group_collection.py index 8ee94d1559..dee9ba47d9 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_collection.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member.py b/src/oci/disaster_recovery/models/dr_protection_group_member.py index 1732156abc..5b1366b984 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_autonomous_container_database.py b/src/oci/disaster_recovery/models/dr_protection_group_member_autonomous_container_database.py index 2299478711..d79a1da8ac 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_autonomous_container_database.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_autonomous_container_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_autonomous_database.py b/src/oci/disaster_recovery/models/dr_protection_group_member_autonomous_database.py index 397947c28b..f745d298c2 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_autonomous_database.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_autonomous_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance.py b/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance.py index bd528ffe4a..f81409547b 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance_movable.py b/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance_movable.py index 47a9a19db8..e91bd95dfd 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance_movable.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance_movable.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance_non_movable.py b/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance_non_movable.py index 150412745a..ad7dbb1a5d 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance_non_movable.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_compute_instance_non_movable.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_database.py b/src/oci/disaster_recovery/models/dr_protection_group_member_database.py index e572217447..0212972ccd 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_database.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_file_system.py b/src/oci/disaster_recovery/models/dr_protection_group_member_file_system.py index df2401fd29..7f9c9d78e5 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_file_system.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_file_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_load_balancer.py b/src/oci/disaster_recovery/models/dr_protection_group_member_load_balancer.py index 847f477790..8405f12674 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_load_balancer.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_load_balancer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_network_load_balancer.py b/src/oci/disaster_recovery/models/dr_protection_group_member_network_load_balancer.py index db4db77899..01df71b6ad 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_network_load_balancer.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_network_load_balancer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_object_storage_bucket.py b/src/oci/disaster_recovery/models/dr_protection_group_member_object_storage_bucket.py index d35c526cf3..401de96041 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_object_storage_bucket.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_object_storage_bucket.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_member_volume_group.py b/src/oci/disaster_recovery/models/dr_protection_group_member_volume_group.py index b5ea221d62..1c7539b21f 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_member_volume_group.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_member_volume_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/dr_protection_group_summary.py b/src/oci/disaster_recovery/models/dr_protection_group_summary.py index 2a79d0211f..150b1185e0 100644 --- a/src/oci/disaster_recovery/models/dr_protection_group_summary.py +++ b/src/oci/disaster_recovery/models/dr_protection_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/failover_execution_option_details.py b/src/oci/disaster_recovery/models/failover_execution_option_details.py index aabde33664..325f1a37b9 100644 --- a/src/oci/disaster_recovery/models/failover_execution_option_details.py +++ b/src/oci/disaster_recovery/models/failover_execution_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/failover_execution_options.py b/src/oci/disaster_recovery/models/failover_execution_options.py index a771eaa22e..73ef2f050e 100644 --- a/src/oci/disaster_recovery/models/failover_execution_options.py +++ b/src/oci/disaster_recovery/models/failover_execution_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/failover_precheck_execution_option_details.py b/src/oci/disaster_recovery/models/failover_precheck_execution_option_details.py index c98b80039f..2dad8d7bd1 100644 --- a/src/oci/disaster_recovery/models/failover_precheck_execution_option_details.py +++ b/src/oci/disaster_recovery/models/failover_precheck_execution_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/failover_precheck_execution_options.py b/src/oci/disaster_recovery/models/failover_precheck_execution_options.py index b5ebd3cf7b..e73895c98a 100644 --- a/src/oci/disaster_recovery/models/failover_precheck_execution_options.py +++ b/src/oci/disaster_recovery/models/failover_precheck_execution_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/file_system_export_mapping.py b/src/oci/disaster_recovery/models/file_system_export_mapping.py index be3be56a06..1337a623a8 100644 --- a/src/oci/disaster_recovery/models/file_system_export_mapping.py +++ b/src/oci/disaster_recovery/models/file_system_export_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/file_system_export_mapping_details.py b/src/oci/disaster_recovery/models/file_system_export_mapping_details.py index dfaada82e4..2662cc709d 100644 --- a/src/oci/disaster_recovery/models/file_system_export_mapping_details.py +++ b/src/oci/disaster_recovery/models/file_system_export_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/file_system_mount_details.py b/src/oci/disaster_recovery/models/file_system_mount_details.py index 0a22dc4959..92c6b77996 100644 --- a/src/oci/disaster_recovery/models/file_system_mount_details.py +++ b/src/oci/disaster_recovery/models/file_system_mount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/file_system_unmount_details.py b/src/oci/disaster_recovery/models/file_system_unmount_details.py index 037e0aa694..ae43623edb 100644 --- a/src/oci/disaster_recovery/models/file_system_unmount_details.py +++ b/src/oci/disaster_recovery/models/file_system_unmount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/ignore_dr_plan_execution_details.py b/src/oci/disaster_recovery/models/ignore_dr_plan_execution_details.py index d223ca96d5..ceeab97ac2 100644 --- a/src/oci/disaster_recovery/models/ignore_dr_plan_execution_details.py +++ b/src/oci/disaster_recovery/models/ignore_dr_plan_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/invoke_function_precheck_step.py b/src/oci/disaster_recovery/models/invoke_function_precheck_step.py index c43b9d90b5..7f169e9b37 100644 --- a/src/oci/disaster_recovery/models/invoke_function_precheck_step.py +++ b/src/oci/disaster_recovery/models/invoke_function_precheck_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/invoke_function_step.py b/src/oci/disaster_recovery/models/invoke_function_step.py index e846445403..2868b58e94 100644 --- a/src/oci/disaster_recovery/models/invoke_function_step.py +++ b/src/oci/disaster_recovery/models/invoke_function_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/load_balancer_backend_set_mapping.py b/src/oci/disaster_recovery/models/load_balancer_backend_set_mapping.py index f75aa7fd86..30d44ae37d 100644 --- a/src/oci/disaster_recovery/models/load_balancer_backend_set_mapping.py +++ b/src/oci/disaster_recovery/models/load_balancer_backend_set_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/load_balancer_backend_set_mapping_details.py b/src/oci/disaster_recovery/models/load_balancer_backend_set_mapping_details.py index 23361cf6cf..b541a1af20 100644 --- a/src/oci/disaster_recovery/models/load_balancer_backend_set_mapping_details.py +++ b/src/oci/disaster_recovery/models/load_balancer_backend_set_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/local_script_precheck_step.py b/src/oci/disaster_recovery/models/local_script_precheck_step.py index 6466b10683..56d3271abe 100644 --- a/src/oci/disaster_recovery/models/local_script_precheck_step.py +++ b/src/oci/disaster_recovery/models/local_script_precheck_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/network_load_balancer_backend_set_mapping.py b/src/oci/disaster_recovery/models/network_load_balancer_backend_set_mapping.py index 2a9f017806..2355ff6c42 100644 --- a/src/oci/disaster_recovery/models/network_load_balancer_backend_set_mapping.py +++ b/src/oci/disaster_recovery/models/network_load_balancer_backend_set_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/network_load_balancer_backend_set_mapping_details.py b/src/oci/disaster_recovery/models/network_load_balancer_backend_set_mapping_details.py index 4daa84d633..fe8f02d7e5 100644 --- a/src/oci/disaster_recovery/models/network_load_balancer_backend_set_mapping_details.py +++ b/src/oci/disaster_recovery/models/network_load_balancer_backend_set_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/object_storage_log_location.py b/src/oci/disaster_recovery/models/object_storage_log_location.py index bc33a7fe41..ee05292b20 100644 --- a/src/oci/disaster_recovery/models/object_storage_log_location.py +++ b/src/oci/disaster_recovery/models/object_storage_log_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/object_storage_script_location.py b/src/oci/disaster_recovery/models/object_storage_script_location.py index a0278b31b7..fe930ee2a3 100644 --- a/src/oci/disaster_recovery/models/object_storage_script_location.py +++ b/src/oci/disaster_recovery/models/object_storage_script_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/object_store_script_precheck_step.py b/src/oci/disaster_recovery/models/object_store_script_precheck_step.py index f2871437d5..cb99be35fd 100644 --- a/src/oci/disaster_recovery/models/object_store_script_precheck_step.py +++ b/src/oci/disaster_recovery/models/object_store_script_precheck_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/pause_dr_plan_execution_details.py b/src/oci/disaster_recovery/models/pause_dr_plan_execution_details.py index a969645e4f..e5b9a87d86 100644 --- a/src/oci/disaster_recovery/models/pause_dr_plan_execution_details.py +++ b/src/oci/disaster_recovery/models/pause_dr_plan_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/refresh_dr_plan_default_details.py b/src/oci/disaster_recovery/models/refresh_dr_plan_default_details.py index 3b1d0f844e..a78da2b9f6 100644 --- a/src/oci/disaster_recovery/models/refresh_dr_plan_default_details.py +++ b/src/oci/disaster_recovery/models/refresh_dr_plan_default_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/refresh_dr_plan_details.py b/src/oci/disaster_recovery/models/refresh_dr_plan_details.py index 34c12efe46..d8c4a63a1b 100644 --- a/src/oci/disaster_recovery/models/refresh_dr_plan_details.py +++ b/src/oci/disaster_recovery/models/refresh_dr_plan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/resume_dr_plan_execution_details.py b/src/oci/disaster_recovery/models/resume_dr_plan_execution_details.py index f8a09423b3..bc60fe3a7a 100644 --- a/src/oci/disaster_recovery/models/resume_dr_plan_execution_details.py +++ b/src/oci/disaster_recovery/models/resume_dr_plan_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/retry_dr_plan_execution_details.py b/src/oci/disaster_recovery/models/retry_dr_plan_execution_details.py index fae443b568..8ad5b127c3 100644 --- a/src/oci/disaster_recovery/models/retry_dr_plan_execution_details.py +++ b/src/oci/disaster_recovery/models/retry_dr_plan_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/run_local_script_user_defined_step.py b/src/oci/disaster_recovery/models/run_local_script_user_defined_step.py index c4edecc689..2d8d4dcd5e 100644 --- a/src/oci/disaster_recovery/models/run_local_script_user_defined_step.py +++ b/src/oci/disaster_recovery/models/run_local_script_user_defined_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/run_object_store_script_user_defined_step.py b/src/oci/disaster_recovery/models/run_object_store_script_user_defined_step.py index b8a9b0499e..d802b96546 100644 --- a/src/oci/disaster_recovery/models/run_object_store_script_user_defined_step.py +++ b/src/oci/disaster_recovery/models/run_object_store_script_user_defined_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/start_drill_execution_option_details.py b/src/oci/disaster_recovery/models/start_drill_execution_option_details.py index bbe598c1a6..1a5854a29f 100644 --- a/src/oci/disaster_recovery/models/start_drill_execution_option_details.py +++ b/src/oci/disaster_recovery/models/start_drill_execution_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/start_drill_execution_options.py b/src/oci/disaster_recovery/models/start_drill_execution_options.py index 65d0ed3e00..15df9e3a3a 100644 --- a/src/oci/disaster_recovery/models/start_drill_execution_options.py +++ b/src/oci/disaster_recovery/models/start_drill_execution_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/start_drill_precheck_execution_option_details.py b/src/oci/disaster_recovery/models/start_drill_precheck_execution_option_details.py index ac6d0a0de3..fe96b728be 100644 --- a/src/oci/disaster_recovery/models/start_drill_precheck_execution_option_details.py +++ b/src/oci/disaster_recovery/models/start_drill_precheck_execution_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/start_drill_precheck_execution_options.py b/src/oci/disaster_recovery/models/start_drill_precheck_execution_options.py index 77fa544986..9bbf9e7d96 100644 --- a/src/oci/disaster_recovery/models/start_drill_precheck_execution_options.py +++ b/src/oci/disaster_recovery/models/start_drill_precheck_execution_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/stop_drill_execution_option_details.py b/src/oci/disaster_recovery/models/stop_drill_execution_option_details.py index 0d42aedb06..fb881f1b71 100644 --- a/src/oci/disaster_recovery/models/stop_drill_execution_option_details.py +++ b/src/oci/disaster_recovery/models/stop_drill_execution_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/stop_drill_execution_options.py b/src/oci/disaster_recovery/models/stop_drill_execution_options.py index 6ac069c1b0..3aeb28cd1e 100644 --- a/src/oci/disaster_recovery/models/stop_drill_execution_options.py +++ b/src/oci/disaster_recovery/models/stop_drill_execution_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/stop_drill_precheck_execution_option_details.py b/src/oci/disaster_recovery/models/stop_drill_precheck_execution_option_details.py index 6e4c1b961c..a94d7d1e23 100644 --- a/src/oci/disaster_recovery/models/stop_drill_precheck_execution_option_details.py +++ b/src/oci/disaster_recovery/models/stop_drill_precheck_execution_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/stop_drill_precheck_execution_options.py b/src/oci/disaster_recovery/models/stop_drill_precheck_execution_options.py index 22aadd100c..c571f36f12 100644 --- a/src/oci/disaster_recovery/models/stop_drill_precheck_execution_options.py +++ b/src/oci/disaster_recovery/models/stop_drill_precheck_execution_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/switchover_execution_option_details.py b/src/oci/disaster_recovery/models/switchover_execution_option_details.py index 84398ddd36..84484b4dba 100644 --- a/src/oci/disaster_recovery/models/switchover_execution_option_details.py +++ b/src/oci/disaster_recovery/models/switchover_execution_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/switchover_execution_options.py b/src/oci/disaster_recovery/models/switchover_execution_options.py index 7e1dd4329b..7470569f33 100644 --- a/src/oci/disaster_recovery/models/switchover_execution_options.py +++ b/src/oci/disaster_recovery/models/switchover_execution_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/switchover_precheck_execution_option_details.py b/src/oci/disaster_recovery/models/switchover_precheck_execution_option_details.py index a358db7233..84d9fce336 100644 --- a/src/oci/disaster_recovery/models/switchover_precheck_execution_option_details.py +++ b/src/oci/disaster_recovery/models/switchover_precheck_execution_option_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/switchover_precheck_execution_options.py b/src/oci/disaster_recovery/models/switchover_precheck_execution_options.py index 938659be9d..c8c7db2946 100644 --- a/src/oci/disaster_recovery/models/switchover_precheck_execution_options.py +++ b/src/oci/disaster_recovery/models/switchover_precheck_execution_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_block_volume_attachment_details.py b/src/oci/disaster_recovery/models/update_block_volume_attachment_details.py index 6c02a71586..5b09ddf3fb 100644 --- a/src/oci/disaster_recovery/models/update_block_volume_attachment_details.py +++ b/src/oci/disaster_recovery/models/update_block_volume_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_block_volume_mount_details.py b/src/oci/disaster_recovery/models/update_block_volume_mount_details.py index 8eaea5974e..b35c65e485 100644 --- a/src/oci/disaster_recovery/models/update_block_volume_mount_details.py +++ b/src/oci/disaster_recovery/models/update_block_volume_mount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_compute_instance_movable_file_system_operation_details.py b/src/oci/disaster_recovery/models/update_compute_instance_movable_file_system_operation_details.py index ed1fed201c..c10b723d40 100644 --- a/src/oci/disaster_recovery/models/update_compute_instance_movable_file_system_operation_details.py +++ b/src/oci/disaster_recovery/models/update_compute_instance_movable_file_system_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_compute_instance_non_movable_block_volume_operation_details.py b/src/oci/disaster_recovery/models/update_compute_instance_non_movable_block_volume_operation_details.py index 554791f7f0..b384744d1f 100644 --- a/src/oci/disaster_recovery/models/update_compute_instance_non_movable_block_volume_operation_details.py +++ b/src/oci/disaster_recovery/models/update_compute_instance_non_movable_block_volume_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_compute_instance_non_movable_file_system_operation_details.py b/src/oci/disaster_recovery/models/update_compute_instance_non_movable_file_system_operation_details.py index 47df404946..cc3ff78e4c 100644 --- a/src/oci/disaster_recovery/models/update_compute_instance_non_movable_file_system_operation_details.py +++ b/src/oci/disaster_recovery/models/update_compute_instance_non_movable_file_system_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_plan_details.py b/src/oci/disaster_recovery/models/update_dr_plan_details.py index e6e394a727..68de04bfb9 100644 --- a/src/oci/disaster_recovery/models/update_dr_plan_details.py +++ b/src/oci/disaster_recovery/models/update_dr_plan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_plan_execution_details.py b/src/oci/disaster_recovery/models/update_dr_plan_execution_details.py index 5e465854cc..8a28b8c5f0 100644 --- a/src/oci/disaster_recovery/models/update_dr_plan_execution_details.py +++ b/src/oci/disaster_recovery/models/update_dr_plan_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_plan_group_details.py b/src/oci/disaster_recovery/models/update_dr_plan_group_details.py index 5e132c7e95..bac7444aed 100644 --- a/src/oci/disaster_recovery/models/update_dr_plan_group_details.py +++ b/src/oci/disaster_recovery/models/update_dr_plan_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_plan_step_details.py b/src/oci/disaster_recovery/models/update_dr_plan_step_details.py index 4af9a58a55..0918b46eb2 100644 --- a/src/oci/disaster_recovery/models/update_dr_plan_step_details.py +++ b/src/oci/disaster_recovery/models/update_dr_plan_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_plan_user_defined_step_details.py b/src/oci/disaster_recovery/models/update_dr_plan_user_defined_step_details.py index 1365633402..f8df57777a 100644 --- a/src/oci/disaster_recovery/models/update_dr_plan_user_defined_step_details.py +++ b/src/oci/disaster_recovery/models/update_dr_plan_user_defined_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_details.py index 5e8e2dab09..1bfe800602 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_autonomous_container_database_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_autonomous_container_database_details.py index 2672a04c4b..16d82cff24 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_autonomous_container_database_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_autonomous_container_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_autonomous_database_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_autonomous_database_details.py index 261689c32f..7fd5a324c7 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_autonomous_database_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_autonomous_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_details.py index d240ece936..6874fc52b5 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_movable_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_movable_details.py index c9ac02846c..3a74dbb863 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_movable_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_movable_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_non_movable_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_non_movable_details.py index c7fbbf117e..bc41d15669 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_non_movable_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_compute_instance_non_movable_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_database_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_database_details.py index f15f2c4942..f4f00b0175 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_database_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_details.py index e6b24ca99f..cb36441a52 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_file_system_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_file_system_details.py index d155192b39..ba1b43a915 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_file_system_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_file_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_load_balancer_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_load_balancer_details.py index e8946ace61..e6a24d2cc3 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_load_balancer_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_network_load_balancer_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_network_load_balancer_details.py index 2fab7540e8..b32f9419bd 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_network_load_balancer_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_network_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_object_storage_bucket_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_object_storage_bucket_details.py index 1f0af91da2..a96fcd1971 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_object_storage_bucket_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_object_storage_bucket_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_member_volume_group_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_member_volume_group_details.py index 35b1935fa6..a6c75e4aad 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_member_volume_group_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_member_volume_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_dr_protection_group_role_details.py b/src/oci/disaster_recovery/models/update_dr_protection_group_role_details.py index 4d611c7a0f..415962806f 100644 --- a/src/oci/disaster_recovery/models/update_dr_protection_group_role_details.py +++ b/src/oci/disaster_recovery/models/update_dr_protection_group_role_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_file_system_mount_details.py b/src/oci/disaster_recovery/models/update_file_system_mount_details.py index 238cec58a3..0d27d1d26b 100644 --- a/src/oci/disaster_recovery/models/update_file_system_mount_details.py +++ b/src/oci/disaster_recovery/models/update_file_system_mount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_file_system_unmount_details.py b/src/oci/disaster_recovery/models/update_file_system_unmount_details.py index a370d7a0cd..311be989b9 100644 --- a/src/oci/disaster_recovery/models/update_file_system_unmount_details.py +++ b/src/oci/disaster_recovery/models/update_file_system_unmount_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_invoke_function_precheck_step_details.py b/src/oci/disaster_recovery/models/update_invoke_function_precheck_step_details.py index 3aa3dd0596..9138a17092 100644 --- a/src/oci/disaster_recovery/models/update_invoke_function_precheck_step_details.py +++ b/src/oci/disaster_recovery/models/update_invoke_function_precheck_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_invoke_function_user_defined_step_details.py b/src/oci/disaster_recovery/models/update_invoke_function_user_defined_step_details.py index d127fe7261..47cbe2bc73 100644 --- a/src/oci/disaster_recovery/models/update_invoke_function_user_defined_step_details.py +++ b/src/oci/disaster_recovery/models/update_invoke_function_user_defined_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_local_script_precheck_step_details.py b/src/oci/disaster_recovery/models/update_local_script_precheck_step_details.py index 62ed3b98b2..52c5ee0468 100644 --- a/src/oci/disaster_recovery/models/update_local_script_precheck_step_details.py +++ b/src/oci/disaster_recovery/models/update_local_script_precheck_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_object_storage_log_location_details.py b/src/oci/disaster_recovery/models/update_object_storage_log_location_details.py index 4d2e65ecb1..ce7846ccb0 100644 --- a/src/oci/disaster_recovery/models/update_object_storage_log_location_details.py +++ b/src/oci/disaster_recovery/models/update_object_storage_log_location_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_object_storage_script_location_details.py b/src/oci/disaster_recovery/models/update_object_storage_script_location_details.py index 90d345d964..bb08fe1d6b 100644 --- a/src/oci/disaster_recovery/models/update_object_storage_script_location_details.py +++ b/src/oci/disaster_recovery/models/update_object_storage_script_location_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_object_store_script_precheck_step_details.py b/src/oci/disaster_recovery/models/update_object_store_script_precheck_step_details.py index 7407992c9d..c94c6083d8 100644 --- a/src/oci/disaster_recovery/models/update_object_store_script_precheck_step_details.py +++ b/src/oci/disaster_recovery/models/update_object_store_script_precheck_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_run_local_script_user_defined_step_details.py b/src/oci/disaster_recovery/models/update_run_local_script_user_defined_step_details.py index 44751ddaa9..a793016718 100644 --- a/src/oci/disaster_recovery/models/update_run_local_script_user_defined_step_details.py +++ b/src/oci/disaster_recovery/models/update_run_local_script_user_defined_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/update_run_object_store_script_user_defined_step_details.py b/src/oci/disaster_recovery/models/update_run_object_store_script_user_defined_step_details.py index c88704647a..2e56760d6d 100644 --- a/src/oci/disaster_recovery/models/update_run_object_store_script_user_defined_step_details.py +++ b/src/oci/disaster_recovery/models/update_run_object_store_script_user_defined_step_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/verify_dr_plan_default_details.py b/src/oci/disaster_recovery/models/verify_dr_plan_default_details.py index 83631ad587..ce409b62e3 100644 --- a/src/oci/disaster_recovery/models/verify_dr_plan_default_details.py +++ b/src/oci/disaster_recovery/models/verify_dr_plan_default_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/verify_dr_plan_details.py b/src/oci/disaster_recovery/models/verify_dr_plan_details.py index 497a5922d4..a7e445dbd0 100644 --- a/src/oci/disaster_recovery/models/verify_dr_plan_details.py +++ b/src/oci/disaster_recovery/models/verify_dr_plan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/work_request.py b/src/oci/disaster_recovery/models/work_request.py index 0a7afc552c..77b3f9b697 100644 --- a/src/oci/disaster_recovery/models/work_request.py +++ b/src/oci/disaster_recovery/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/work_request_error.py b/src/oci/disaster_recovery/models/work_request_error.py index ce2222d1fc..5fa9e4b644 100644 --- a/src/oci/disaster_recovery/models/work_request_error.py +++ b/src/oci/disaster_recovery/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/work_request_error_collection.py b/src/oci/disaster_recovery/models/work_request_error_collection.py index af48cfad7b..1b9c49b5ab 100644 --- a/src/oci/disaster_recovery/models/work_request_error_collection.py +++ b/src/oci/disaster_recovery/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/work_request_log_entry.py b/src/oci/disaster_recovery/models/work_request_log_entry.py index 1c2471e214..c6b6aeafee 100644 --- a/src/oci/disaster_recovery/models/work_request_log_entry.py +++ b/src/oci/disaster_recovery/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/work_request_log_entry_collection.py b/src/oci/disaster_recovery/models/work_request_log_entry_collection.py index 7ea67b62e9..253914fd3b 100644 --- a/src/oci/disaster_recovery/models/work_request_log_entry_collection.py +++ b/src/oci/disaster_recovery/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/work_request_resource.py b/src/oci/disaster_recovery/models/work_request_resource.py index f6de7d5730..c82ff529c0 100644 --- a/src/oci/disaster_recovery/models/work_request_resource.py +++ b/src/oci/disaster_recovery/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/work_request_summary.py b/src/oci/disaster_recovery/models/work_request_summary.py index 6177f78b6e..e7128bc303 100644 --- a/src/oci/disaster_recovery/models/work_request_summary.py +++ b/src/oci/disaster_recovery/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/disaster_recovery/models/work_request_summary_collection.py b/src/oci/disaster_recovery/models/work_request_summary_collection.py index 1cae39a83e..c172bdb4dc 100644 --- a/src/oci/disaster_recovery/models/work_request_summary_collection.py +++ b/src/oci/disaster_recovery/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220125 diff --git a/src/oci/dns/__init__.py b/src/oci/dns/__init__.py index c5a72d94bc..8220f29eae 100644 --- a/src/oci/dns/__init__.py +++ b/src/oci/dns/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/dns_client.py b/src/oci/dns/dns_client.py index 5b31efaecd..438b0432a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/dns_client_composite_operations.py b/src/oci/dns/dns_client_composite_operations.py index f6c8f7c49c..06b53e32f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/__init__.py b/src/oci/dns/models/__init__.py index 7336af481b..d63ce9b477 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/attached_view.py b/src/oci/dns/models/attached_view.py index bde955be72..1068af30c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/attached_view_details.py b/src/oci/dns/models/attached_view_details.py index 0aac861740..58fab68eb0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/change_resolver_compartment_details.py b/src/oci/dns/models/change_resolver_compartment_details.py index 5adb297212..5321ddb9b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 51fd1ca702..f1d38b9b4f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 14eae9da07..05a5108352 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/change_view_compartment_details.py b/src/oci/dns/models/change_view_compartment_details.py index 0110293a95..105e9a2734 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/change_zone_compartment_details.py b/src/oci/dns/models/change_zone_compartment_details.py index 9b4635b890..28241580d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 f0dcb97272..0600d7d2b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/create_resolver_endpoint_details.py b/src/oci/dns/models/create_resolver_endpoint_details.py index 49a33595ce..c2c3dcdb16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 c8cbce9512..8e898ef47b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 c3edb4f7a4..c541d90142 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/create_steering_policy_details.py b/src/oci/dns/models/create_steering_policy_details.py index b0c54c2c41..c27164f2c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/create_tsig_key_details.py b/src/oci/dns/models/create_tsig_key_details.py index eb000f6ac4..e87aa70f82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/create_view_details.py b/src/oci/dns/models/create_view_details.py index b51482aad9..14d70831ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/create_zone_base_details.py b/src/oci/dns/models/create_zone_base_details.py index f71d13207e..9d5afcd462 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/create_zone_details.py b/src/oci/dns/models/create_zone_details.py index 636fa61a49..b34b66ce08 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/dnssec_config.py b/src/oci/dns/models/dnssec_config.py index 7a8c1b1e00..9019c41f56 100644 --- a/src/oci/dns/models/dnssec_config.py +++ b/src/oci/dns/models/dnssec_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/dnssec_key_version_ds_data.py b/src/oci/dns/models/dnssec_key_version_ds_data.py index dcf8c3e9d9..5d0a0ee196 100644 --- a/src/oci/dns/models/dnssec_key_version_ds_data.py +++ b/src/oci/dns/models/dnssec_key_version_ds_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/dynect_migration_details.py b/src/oci/dns/models/dynect_migration_details.py index f8b72d9a27..556b83bace 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/external_downstream.py b/src/oci/dns/models/external_downstream.py index c178000edc..84037cb473 100644 --- a/src/oci/dns/models/external_downstream.py +++ b/src/oci/dns/models/external_downstream.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/external_master.py b/src/oci/dns/models/external_master.py index 3ffbeff9aa..e8dc9dbc29 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/ksk_dnssec_key_version.py b/src/oci/dns/models/ksk_dnssec_key_version.py index df648c90d5..566a620d3f 100644 --- a/src/oci/dns/models/ksk_dnssec_key_version.py +++ b/src/oci/dns/models/ksk_dnssec_key_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/migration_replacement.py b/src/oci/dns/models/migration_replacement.py index 807170d99a..3bb00c47a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/nameserver.py b/src/oci/dns/models/nameserver.py index d7e9cb84b1..03524669f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/patch_domain_records_details.py b/src/oci/dns/models/patch_domain_records_details.py index 82c200ed0b..7b52d716f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/patch_rr_set_details.py b/src/oci/dns/models/patch_rr_set_details.py index eb8dced91e..eb07d26bb9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/patch_zone_records_details.py b/src/oci/dns/models/patch_zone_records_details.py index 71a5b6a074..2ed22d4b5c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/promote_zone_dnssec_key_version_details.py b/src/oci/dns/models/promote_zone_dnssec_key_version_details.py index 1ba541cc26..792a13bf2c 100644 --- a/src/oci/dns/models/promote_zone_dnssec_key_version_details.py +++ b/src/oci/dns/models/promote_zone_dnssec_key_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/record.py b/src/oci/dns/models/record.py index 8aef5a2d4f..60374a2db9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/record_collection.py b/src/oci/dns/models/record_collection.py index 0ffeb47dcb..1bc95e7791 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/record_details.py b/src/oci/dns/models/record_details.py index b64608f652..638b4a1084 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/record_operation.py b/src/oci/dns/models/record_operation.py index bc32aace47..a9477aeaaa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver.py b/src/oci/dns/models/resolver.py index b4a975f381..cfc16f50a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver_endpoint.py b/src/oci/dns/models/resolver_endpoint.py index dd7a4ed704..69ca4e613c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver_endpoint_summary.py b/src/oci/dns/models/resolver_endpoint_summary.py index 70f927551e..0f4420e2e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver_forward_rule.py b/src/oci/dns/models/resolver_forward_rule.py index 7cb96e5d4c..4606383e43 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver_forward_rule_details.py b/src/oci/dns/models/resolver_forward_rule_details.py index 86258eff16..f51a341492 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver_rule.py b/src/oci/dns/models/resolver_rule.py index 1eca0d4c5c..3021200af0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver_rule_details.py b/src/oci/dns/models/resolver_rule_details.py index a9d40ef4c5..511a224b68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver_summary.py b/src/oci/dns/models/resolver_summary.py index ff7190b68e..c92c0389eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver_vnic_endpoint.py b/src/oci/dns/models/resolver_vnic_endpoint.py index 208362097b..23829f55b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/resolver_vnic_endpoint_summary.py b/src/oci/dns/models/resolver_vnic_endpoint_summary.py index 1b867df8f3..4a5bbf4519 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/rr_set.py b/src/oci/dns/models/rr_set.py index c7a3afa0ce..89c186db15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/stage_zone_dnssec_key_version_details.py b/src/oci/dns/models/stage_zone_dnssec_key_version_details.py index 6b44627bdb..1a0aef129f 100644 --- a/src/oci/dns/models/stage_zone_dnssec_key_version_details.py +++ b/src/oci/dns/models/stage_zone_dnssec_key_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy.py b/src/oci/dns/models/steering_policy.py index 75fc417e61..f687ff0c55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_answer.py b/src/oci/dns/models/steering_policy_answer.py index ba96c50d72..2e124e5846 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_attachment.py b/src/oci/dns/models/steering_policy_attachment.py index 1830390f4d..7c062ccd02 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_attachment_summary.py b/src/oci/dns/models/steering_policy_attachment_summary.py index f30c701def..48137dac65 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 a2eca0a2ad..5437e309c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_filter_rule.py b/src/oci/dns/models/steering_policy_filter_rule.py index 5e732659d4..a4b8933170 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 75907ae53b..0fead6f48b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_health_rule.py b/src/oci/dns/models/steering_policy_health_rule.py index e6f472484d..8d46d80c84 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 3bdc3fa83a..ceb60aa6a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_limit_rule.py b/src/oci/dns/models/steering_policy_limit_rule.py index bc2d8711ce..382495fb82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 e10ea86374..ef578784dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 d771d635c8..7201067fe3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_priority_rule.py b/src/oci/dns/models/steering_policy_priority_rule.py index eb6b407d36..ad3762bb34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 be346188b3..c466817f5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_rule.py b/src/oci/dns/models/steering_policy_rule.py index 3fb23d1440..f63fb922ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_summary.py b/src/oci/dns/models/steering_policy_summary.py index 3462779d64..339e506aaa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 beb25eb698..efaf754ed8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/steering_policy_weighted_rule.py b/src/oci/dns/models/steering_policy_weighted_rule.py index acc061fb16..dbd20004c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 b0b0a25226..34e7cbe0f3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/tsig_key.py b/src/oci/dns/models/tsig_key.py index eebf32fb7e..9a211f4d16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/tsig_key_summary.py b/src/oci/dns/models/tsig_key_summary.py index 19a7a54b90..2a0443311d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/update_domain_records_details.py b/src/oci/dns/models/update_domain_records_details.py index 68d29ded6a..8893039f16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/update_resolver_details.py b/src/oci/dns/models/update_resolver_details.py index dbd81b1c02..dc4e75263d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/update_resolver_endpoint_details.py b/src/oci/dns/models/update_resolver_endpoint_details.py index 87adfcc5a2..f323fec1e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 e94a3004ec..1250dab01b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/update_rr_set_details.py b/src/oci/dns/models/update_rr_set_details.py index 5326ec098f..9234cb9559 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 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 12a6ebb20a..ed6efb1cff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/update_steering_policy_details.py b/src/oci/dns/models/update_steering_policy_details.py index b08351b3f0..4a9e2a594a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/update_tsig_key_details.py b/src/oci/dns/models/update_tsig_key_details.py index b070d062db..329d565eb6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/update_view_details.py b/src/oci/dns/models/update_view_details.py index 9b7c090b6a..f36264a3bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/update_zone_details.py b/src/oci/dns/models/update_zone_details.py index 4c631bc37a..9b2e6497ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/update_zone_records_details.py b/src/oci/dns/models/update_zone_records_details.py index 6dffe9cc70..659f9834fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/view.py b/src/oci/dns/models/view.py index 392f67085a..1e7f7b7bf6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/view_summary.py b/src/oci/dns/models/view_summary.py index 5d8b966eac..64a61cb8fc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/zone.py b/src/oci/dns/models/zone.py index 11b667b344..b6bc9d0ab9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/zone_summary.py b/src/oci/dns/models/zone_summary.py index e8834c4540..b173f026cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/zone_transfer_server.py b/src/oci/dns/models/zone_transfer_server.py index 45404d3850..b34f160f8f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dns/models/zsk_dnssec_key_version.py b/src/oci/dns/models/zsk_dnssec_key_version.py index 632191012a..62628187e9 100644 --- a/src/oci/dns/models/zsk_dnssec_key_version.py +++ b/src/oci/dns/models/zsk_dnssec_key_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180115 diff --git a/src/oci/dts/__init__.py b/src/oci/dts/__init__.py index 91a435345e..b9a246391c 100644 --- a/src/oci/dts/__init__.py +++ b/src/oci/dts/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/appliance_export_job_client.py b/src/oci/dts/appliance_export_job_client.py index 59232673ba..1029b87a5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 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 421b668398..ae71b55354 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/__init__.py b/src/oci/dts/models/__init__.py index a4e44a74ad..6a99193da4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/appliance_export_job.py b/src/oci/dts/models/appliance_export_job.py index 9fd48274b6..e62a2c976f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/appliance_export_job_summary.py b/src/oci/dts/models/appliance_export_job_summary.py index 49f1e53df0..f69af5a772 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/attach_devices_details.py b/src/oci/dts/models/attach_devices_details.py index be4a858db0..6d2b460934 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 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 edb6fa7af8..4166c6613c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 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 56d8262bf7..2b5d453cc6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 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 2f14a48023..ac2a62ce03 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/create_transfer_appliance_details.py b/src/oci/dts/models/create_transfer_appliance_details.py index ebae00eee1..c15ece6f32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 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 dae5e5da8a..5daf4ec1bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/create_transfer_device_details.py b/src/oci/dts/models/create_transfer_device_details.py index a5e86ff225..082859c0ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/create_transfer_job_details.py b/src/oci/dts/models/create_transfer_job_details.py index 6a692b3c90..453ca36dc6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/create_transfer_package_details.py b/src/oci/dts/models/create_transfer_package_details.py index 884b54da65..fddf0d4f12 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/detach_devices_details.py b/src/oci/dts/models/detach_devices_details.py index 2dfed64c73..edece1dbc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/multiple_transfer_appliances.py b/src/oci/dts/models/multiple_transfer_appliances.py index 72b84a6b82..8da7d9506c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/multiple_transfer_devices.py b/src/oci/dts/models/multiple_transfer_devices.py index 88fee55c7f..d97a5b84bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/multiple_transfer_packages.py b/src/oci/dts/models/multiple_transfer_packages.py index b6d84564f1..59dcb6ebcc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/new_transfer_device.py b/src/oci/dts/models/new_transfer_device.py index 833f0f27f2..015786e4e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/shipping_address.py b/src/oci/dts/models/shipping_address.py index ecce8aa5d6..3b467b617d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/shipping_vendors.py b/src/oci/dts/models/shipping_vendors.py index 860427de2f..adede693de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_appliance.py b/src/oci/dts/models/transfer_appliance.py index 1c708d221a..7edf9c40e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_appliance_certificate.py b/src/oci/dts/models/transfer_appliance_certificate.py index 6cfe425cde..b59f4bfcc0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_appliance_encryption_passphrase.py b/src/oci/dts/models/transfer_appliance_encryption_passphrase.py index 99b3b5332c..bc5e6dae15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_appliance_entitlement.py b/src/oci/dts/models/transfer_appliance_entitlement.py index 8d8af33293..a5b8e38ec8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_appliance_entitlement_summary.py b/src/oci/dts/models/transfer_appliance_entitlement_summary.py index d274cb4c02..1c398acf42 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_appliance_public_key.py b/src/oci/dts/models/transfer_appliance_public_key.py index 5e6647dd7c..6c191822f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_appliance_summary.py b/src/oci/dts/models/transfer_appliance_summary.py index 9cad6f4eab..0914e5377d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_device.py b/src/oci/dts/models/transfer_device.py index 23a612f9d9..2dbd454c4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_device_summary.py b/src/oci/dts/models/transfer_device_summary.py index b32e75c4fc..a0f5c52796 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_job.py b/src/oci/dts/models/transfer_job.py index 0344c0951c..0fe781b670 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_job_summary.py b/src/oci/dts/models/transfer_job_summary.py index 7590c78080..b519620fde 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_package.py b/src/oci/dts/models/transfer_package.py index a8a5eeb2db..5584da09c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/transfer_package_summary.py b/src/oci/dts/models/transfer_package_summary.py index a3eb8582a3..74a909c9ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 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 da878f0321..8f4bbeac74 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/update_transfer_appliance_details.py b/src/oci/dts/models/update_transfer_appliance_details.py index 78e9cf904b..fde389636c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/update_transfer_device_details.py b/src/oci/dts/models/update_transfer_device_details.py index cd62c223f0..fe51a4f2c7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/update_transfer_job_details.py b/src/oci/dts/models/update_transfer_job_details.py index 577ee751e4..6e1602299f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/models/update_transfer_package_details.py b/src/oci/dts/models/update_transfer_package_details.py index 7c56c43147..2b4cb3ac76 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/shipping_vendors_client.py b/src/oci/dts/shipping_vendors_client.py index 89ca34ba15..02603f4691 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/shipping_vendors_client_composite_operations.py b/src/oci/dts/shipping_vendors_client_composite_operations.py index db2ea63258..20f3c83d8a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/transfer_appliance_client.py b/src/oci/dts/transfer_appliance_client.py index e21aeeb4f5..93e0a19e64 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/transfer_appliance_client_composite_operations.py b/src/oci/dts/transfer_appliance_client_composite_operations.py index 1dc082ca84..7d3bfefcc4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/transfer_appliance_entitlement_client.py b/src/oci/dts/transfer_appliance_entitlement_client.py index affe4a5a2a..360af96177 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 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 5b1bc46942..2abdfb4daf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/transfer_device_client.py b/src/oci/dts/transfer_device_client.py index 797e610ad8..9a51fa5e3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/transfer_device_client_composite_operations.py b/src/oci/dts/transfer_device_client_composite_operations.py index e7605f6cd5..a324e8f2ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/transfer_job_client.py b/src/oci/dts/transfer_job_client.py index 15f88e0ea0..bf34880805 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/transfer_job_client_composite_operations.py b/src/oci/dts/transfer_job_client_composite_operations.py index 7e57c3f5dc..af75c6492b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/transfer_package_client.py b/src/oci/dts/transfer_package_client.py index 68453ea002..6658ac3d9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/dts/transfer_package_client_composite_operations.py b/src/oci/dts/transfer_package_client_composite_operations.py index 21dbb88542..3c99646818 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 1.0.017 diff --git a/src/oci/em_warehouse/__init__.py b/src/oci/em_warehouse/__init__.py index 3d767a4e2d..d72ea60af5 100644 --- a/src/oci/em_warehouse/__init__.py +++ b/src/oci/em_warehouse/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/em_warehouse_client.py b/src/oci/em_warehouse/em_warehouse_client.py index 24c1e4de3b..e8489627c0 100644 --- a/src/oci/em_warehouse/em_warehouse_client.py +++ b/src/oci/em_warehouse/em_warehouse_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/em_warehouse_client_composite_operations.py b/src/oci/em_warehouse/em_warehouse_client_composite_operations.py index 8c147af5a6..512c8df5c6 100644 --- a/src/oci/em_warehouse/em_warehouse_client_composite_operations.py +++ b/src/oci/em_warehouse/em_warehouse_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/__init__.py b/src/oci/em_warehouse/models/__init__.py index 7dae7fe33f..dfe2c114d1 100644 --- a/src/oci/em_warehouse/models/__init__.py +++ b/src/oci/em_warehouse/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/change_em_warehouse_compartment_details.py b/src/oci/em_warehouse/models/change_em_warehouse_compartment_details.py index f7340935a4..6917e0d202 100644 --- a/src/oci/em_warehouse/models/change_em_warehouse_compartment_details.py +++ b/src/oci/em_warehouse/models/change_em_warehouse_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/create_em_warehouse_details.py b/src/oci/em_warehouse/models/create_em_warehouse_details.py index b007c335ba..486fea40d2 100644 --- a/src/oci/em_warehouse/models/create_em_warehouse_details.py +++ b/src/oci/em_warehouse/models/create_em_warehouse_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/em_instances_details.py b/src/oci/em_warehouse/models/em_instances_details.py index 9f80823a71..a8a4913c8f 100644 --- a/src/oci/em_warehouse/models/em_instances_details.py +++ b/src/oci/em_warehouse/models/em_instances_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/em_warehouse.py b/src/oci/em_warehouse/models/em_warehouse.py index 77e80db259..6d70881107 100644 --- a/src/oci/em_warehouse/models/em_warehouse.py +++ b/src/oci/em_warehouse/models/em_warehouse.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/em_warehouse_collection.py b/src/oci/em_warehouse/models/em_warehouse_collection.py index e819beee63..0d15b5fa9b 100644 --- a/src/oci/em_warehouse/models/em_warehouse_collection.py +++ b/src/oci/em_warehouse/models/em_warehouse_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/em_warehouse_summary.py b/src/oci/em_warehouse/models/em_warehouse_summary.py index c20df55e75..aef08eea54 100644 --- a/src/oci/em_warehouse/models/em_warehouse_summary.py +++ b/src/oci/em_warehouse/models/em_warehouse_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/etl_run_collection.py b/src/oci/em_warehouse/models/etl_run_collection.py index 07d29016c9..d232efd0fc 100644 --- a/src/oci/em_warehouse/models/etl_run_collection.py +++ b/src/oci/em_warehouse/models/etl_run_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/etl_run_summary.py b/src/oci/em_warehouse/models/etl_run_summary.py index 0619c6d7f7..a175e2fbdc 100644 --- a/src/oci/em_warehouse/models/etl_run_summary.py +++ b/src/oci/em_warehouse/models/etl_run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/resource_usage.py b/src/oci/em_warehouse/models/resource_usage.py index 865cfe0f02..b0235d04e4 100644 --- a/src/oci/em_warehouse/models/resource_usage.py +++ b/src/oci/em_warehouse/models/resource_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/update_em_warehouse_details.py b/src/oci/em_warehouse/models/update_em_warehouse_details.py index e48372e384..c3ac6f7b6d 100644 --- a/src/oci/em_warehouse/models/update_em_warehouse_details.py +++ b/src/oci/em_warehouse/models/update_em_warehouse_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/work_request.py b/src/oci/em_warehouse/models/work_request.py index 38e21893df..1c928a4249 100644 --- a/src/oci/em_warehouse/models/work_request.py +++ b/src/oci/em_warehouse/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/work_request_error.py b/src/oci/em_warehouse/models/work_request_error.py index 559464c523..9a3c379694 100644 --- a/src/oci/em_warehouse/models/work_request_error.py +++ b/src/oci/em_warehouse/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/work_request_error_collection.py b/src/oci/em_warehouse/models/work_request_error_collection.py index 2349039398..1134abed4a 100644 --- a/src/oci/em_warehouse/models/work_request_error_collection.py +++ b/src/oci/em_warehouse/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/work_request_log_entry.py b/src/oci/em_warehouse/models/work_request_log_entry.py index c5c8cd1ce4..c357d66f06 100644 --- a/src/oci/em_warehouse/models/work_request_log_entry.py +++ b/src/oci/em_warehouse/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/work_request_log_entry_collection.py b/src/oci/em_warehouse/models/work_request_log_entry_collection.py index 4dd8606cbd..7a7698c4e0 100644 --- a/src/oci/em_warehouse/models/work_request_log_entry_collection.py +++ b/src/oci/em_warehouse/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/work_request_resource.py b/src/oci/em_warehouse/models/work_request_resource.py index c53868a6de..1e3e0e25c4 100644 --- a/src/oci/em_warehouse/models/work_request_resource.py +++ b/src/oci/em_warehouse/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/work_request_summary.py b/src/oci/em_warehouse/models/work_request_summary.py index cebf338a24..3d2ef169a8 100644 --- a/src/oci/em_warehouse/models/work_request_summary.py +++ b/src/oci/em_warehouse/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/em_warehouse/models/work_request_summary_collection.py b/src/oci/em_warehouse/models/work_request_summary_collection.py index ba78438967..2f76cf820b 100644 --- a/src/oci/em_warehouse/models/work_request_summary_collection.py +++ b/src/oci/em_warehouse/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/email/__init__.py b/src/oci/email/__init__.py index d8b6455383..936d4b3e7b 100644 --- a/src/oci/email/__init__.py +++ b/src/oci/email/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/email_client.py b/src/oci/email/email_client.py index 2bc5ca6cbb..7cacc138d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/email_client_composite_operations.py b/src/oci/email/email_client_composite_operations.py index 295d34bf0c..baef4c6133 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/__init__.py b/src/oci/email/models/__init__.py index 49b019065d..6a9571b720 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 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 add055614c..3360fa9c1b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/change_sender_compartment_details.py b/src/oci/email/models/change_sender_compartment_details.py index 5dc6de83e8..e3f333216b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/configuration.py b/src/oci/email/models/configuration.py index d91b0d7b7a..069b8f6c86 100644 --- a/src/oci/email/models/configuration.py +++ b/src/oci/email/models/configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/create_dkim_details.py b/src/oci/email/models/create_dkim_details.py index 9865210c3e..69b5e0d43a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/create_email_domain_details.py b/src/oci/email/models/create_email_domain_details.py index 75f92cb5f0..8bb1e96d69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/create_email_return_path_details.py b/src/oci/email/models/create_email_return_path_details.py index 373a13a5e5..443784c377 100644 --- a/src/oci/email/models/create_email_return_path_details.py +++ b/src/oci/email/models/create_email_return_path_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/create_sender_details.py b/src/oci/email/models/create_sender_details.py index d54aec9bc9..fd9a3b19b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/create_suppression_details.py b/src/oci/email/models/create_suppression_details.py index 9200523dba..15c1c1f423 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/dkim.py b/src/oci/email/models/dkim.py index 32ac6dd9d7..1285cdef53 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/dkim_collection.py b/src/oci/email/models/dkim_collection.py index 6d4b93ab54..148cbb6950 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/dkim_summary.py b/src/oci/email/models/dkim_summary.py index e3a5a3daf6..0a3909238d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/email_domain.py b/src/oci/email/models/email_domain.py index aeaa0f544c..2366d10953 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/email_domain_collection.py b/src/oci/email/models/email_domain_collection.py index 60c1d911dc..cf9c3f66e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/email_domain_summary.py b/src/oci/email/models/email_domain_summary.py index 9f0277242b..8f3803cb0b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/email_return_path.py b/src/oci/email/models/email_return_path.py index c45941b596..2b2f3a503d 100644 --- a/src/oci/email/models/email_return_path.py +++ b/src/oci/email/models/email_return_path.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/email_return_path_collection.py b/src/oci/email/models/email_return_path_collection.py index c418ae0a8c..f256a45f12 100644 --- a/src/oci/email/models/email_return_path_collection.py +++ b/src/oci/email/models/email_return_path_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/email_return_path_summary.py b/src/oci/email/models/email_return_path_summary.py index e6ae5a0dc6..d0eea719fc 100644 --- a/src/oci/email/models/email_return_path_summary.py +++ b/src/oci/email/models/email_return_path_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/sender.py b/src/oci/email/models/sender.py index e837ae2c49..4a92d66c67 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/sender_summary.py b/src/oci/email/models/sender_summary.py index b6a065f6a4..ffaaa7ece4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/suppression.py b/src/oci/email/models/suppression.py index 35dca26a94..9b3becad24 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/suppression_summary.py b/src/oci/email/models/suppression_summary.py index 2796f5ce97..9b9234023a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/update_dkim_details.py b/src/oci/email/models/update_dkim_details.py index 47590335ca..19e65b4195 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/update_email_domain_details.py b/src/oci/email/models/update_email_domain_details.py index e51b2001e2..58a42015eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/update_email_return_path_details.py b/src/oci/email/models/update_email_return_path_details.py index 7e82c7f1e7..10c87d2015 100644 --- a/src/oci/email/models/update_email_return_path_details.py +++ b/src/oci/email/models/update_email_return_path_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/update_sender_details.py b/src/oci/email/models/update_sender_details.py index 7d2670179e..f9070945a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/work_request.py b/src/oci/email/models/work_request.py index ec21ed6ffc..cbbe1c1255 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/work_request_error.py b/src/oci/email/models/work_request_error.py index ed48b565a5..3b118f333f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/work_request_error_collection.py b/src/oci/email/models/work_request_error_collection.py index cbfe5239d3..4c0c78f33f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/work_request_log_entry.py b/src/oci/email/models/work_request_log_entry.py index 477b5084b7..644fb9cb49 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 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 e7312f7c26..fb39186c4b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/work_request_resource.py b/src/oci/email/models/work_request_resource.py index e663f0c518..eb06379595 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/work_request_summary.py b/src/oci/email/models/work_request_summary.py index 576f5984d4..a76748714c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email/models/work_request_summary_collection.py b/src/oci/email/models/work_request_summary_collection.py index 7d93a431e6..3cc45c70ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170907 diff --git a/src/oci/email_data_plane/__init__.py b/src/oci/email_data_plane/__init__.py index d3201fe407..5a251ed03d 100644 --- a/src/oci/email_data_plane/__init__.py +++ b/src/oci/email_data_plane/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220926 diff --git a/src/oci/email_data_plane/email_dp_client.py b/src/oci/email_data_plane/email_dp_client.py index 9faa8c0b1f..00b0e0787f 100644 --- a/src/oci/email_data_plane/email_dp_client.py +++ b/src/oci/email_data_plane/email_dp_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220926 diff --git a/src/oci/email_data_plane/email_dp_client_composite_operations.py b/src/oci/email_data_plane/email_dp_client_composite_operations.py index 1e1c52e71a..5f11208a3d 100644 --- a/src/oci/email_data_plane/email_dp_client_composite_operations.py +++ b/src/oci/email_data_plane/email_dp_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220926 diff --git a/src/oci/email_data_plane/models/__init__.py b/src/oci/email_data_plane/models/__init__.py index 5dddc8b0d1..99498ae633 100644 --- a/src/oci/email_data_plane/models/__init__.py +++ b/src/oci/email_data_plane/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220926 diff --git a/src/oci/email_data_plane/models/email_address.py b/src/oci/email_data_plane/models/email_address.py index b87c0667d7..cbabf2ed9c 100644 --- a/src/oci/email_data_plane/models/email_address.py +++ b/src/oci/email_data_plane/models/email_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220926 diff --git a/src/oci/email_data_plane/models/email_submitted_response.py b/src/oci/email_data_plane/models/email_submitted_response.py index a4d0eb7a99..96494e1ea7 100644 --- a/src/oci/email_data_plane/models/email_submitted_response.py +++ b/src/oci/email_data_plane/models/email_submitted_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220926 diff --git a/src/oci/email_data_plane/models/recipients.py b/src/oci/email_data_plane/models/recipients.py index 2ecacf56c9..814d330a5e 100644 --- a/src/oci/email_data_plane/models/recipients.py +++ b/src/oci/email_data_plane/models/recipients.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220926 diff --git a/src/oci/email_data_plane/models/sender.py b/src/oci/email_data_plane/models/sender.py index cb1afc0a7e..fac684cd5b 100644 --- a/src/oci/email_data_plane/models/sender.py +++ b/src/oci/email_data_plane/models/sender.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220926 diff --git a/src/oci/email_data_plane/models/submit_email_details.py b/src/oci/email_data_plane/models/submit_email_details.py index 03ec21974c..8ae5a2d41b 100644 --- a/src/oci/email_data_plane/models/submit_email_details.py +++ b/src/oci/email_data_plane/models/submit_email_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220926 diff --git a/src/oci/encryption/__init__.py b/src/oci/encryption/__init__.py index e6cc1743a2..87a937e41c 100644 --- a/src/oci/encryption/__init__.py +++ b/src/oci/encryption/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 c867f132e0..5bcfa9466f 100644 --- a/src/oci/encryption/algorithms.py +++ b/src/oci/encryption/algorithms.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 488d8359ff..b56e2e3af7 100644 --- a/src/oci/encryption/encryption.py +++ b/src/oci/encryption/encryption.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 30ee3463ac..78b6f68227 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 58161d6d17..c636e5f126 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 a270936aa5..815c00f5c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 b69a6690ef..ab16f33099 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 f4dac517e2..52d769e768 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 5ecb36ad6e..2cd97b155b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 469f2e3b0b..a68ab07944 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 c8d685987f..0e7f35c81e 100644 --- a/src/oci/encryption/models.py +++ b/src/oci/encryption/models.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 60073be2bb..9fcdd6cb36 100644 --- a/src/oci/events/__init__.py +++ b/src/oci/events/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/events_client.py b/src/oci/events/events_client.py index e168c896f7..8833c47f55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/events_client_composite_operations.py b/src/oci/events/events_client_composite_operations.py index a0bc4b4d80..d2b77b33a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/__init__.py b/src/oci/events/models/__init__.py index bd2fcf6584..3ecbfe8af1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/action.py b/src/oci/events/models/action.py index df5dcb3a7c..063747a19e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/action_details.py b/src/oci/events/models/action_details.py index fb91de26ea..48a3fc91b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/action_details_list.py b/src/oci/events/models/action_details_list.py index 35e7bc0312..3fc9c8580d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/action_list.py b/src/oci/events/models/action_list.py index 6e05b3ee8f..0cbe10be11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/change_rule_compartment_details.py b/src/oci/events/models/change_rule_compartment_details.py index 7414764ec0..72c20b7423 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 365e8778b6..c040c2862c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 7400779a5b..a05177f551 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/create_rule_details.py b/src/oci/events/models/create_rule_details.py index 32d67d035b..fd7b4bdd02 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 0bc2a17119..eee1c306f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/faa_s_action.py b/src/oci/events/models/faa_s_action.py index e9107f80e2..2caefc6b75 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/notification_service_action.py b/src/oci/events/models/notification_service_action.py index 86da19635f..9f4f9c0d8b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/rule.py b/src/oci/events/models/rule.py index d52fcfcfd3..402b1f40f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/rule_summary.py b/src/oci/events/models/rule_summary.py index fefe0c2a0e..707851c852 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/streaming_service_action.py b/src/oci/events/models/streaming_service_action.py index 22f9767c50..1da6cf0b53 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/events/models/update_rule_details.py b/src/oci/events/models/update_rule_details.py index f13177c50a..2d6edf2916 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/exceptions.py b/src/oci/exceptions.py index 294f7290b9..1a6a1dea4a 100644 --- a/src/oci/exceptions.py +++ b/src/oci/exceptions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 platform diff --git a/src/oci/file_storage/__init__.py b/src/oci/file_storage/__init__.py index 6563781319..dc21c504c7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/file_storage_client.py b/src/oci/file_storage/file_storage_client.py index ea89a6539a..b96292f236 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 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 627b7b5d63..9f42c21bf8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/__init__.py b/src/oci/file_storage/models/__init__.py index 76846ef4c8..50b9a5d3ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 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 7b3b306f88..1b69c00e2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/change_filesystem_snapshot_policy_compartment_details.py b/src/oci/file_storage/models/change_filesystem_snapshot_policy_compartment_details.py index 8cef8829bb..8ac9c6b71a 100644 --- a/src/oci/file_storage/models/change_filesystem_snapshot_policy_compartment_details.py +++ b/src/oci/file_storage/models/change_filesystem_snapshot_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 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 0ed9202467..0dec4a7b38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/change_outbound_connector_compartment_details.py b/src/oci/file_storage/models/change_outbound_connector_compartment_details.py index e42aba07ee..83237e3db9 100644 --- a/src/oci/file_storage/models/change_outbound_connector_compartment_details.py +++ b/src/oci/file_storage/models/change_outbound_connector_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/change_replication_compartment_details.py b/src/oci/file_storage/models/change_replication_compartment_details.py index d7d5cde7a0..c7f2f41951 100644 --- a/src/oci/file_storage/models/change_replication_compartment_details.py +++ b/src/oci/file_storage/models/change_replication_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/client_options.py b/src/oci/file_storage/models/client_options.py index 9d25c57fd9..79a39bd2a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/create_export_details.py b/src/oci/file_storage/models/create_export_details.py index fe59bf6eb0..43a8afdf16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 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 904d63ca61..18ae5aabea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/create_filesystem_snapshot_policy_details.py b/src/oci/file_storage/models/create_filesystem_snapshot_policy_details.py index 867fc88a6a..88189d0a50 100644 --- a/src/oci/file_storage/models/create_filesystem_snapshot_policy_details.py +++ b/src/oci/file_storage/models/create_filesystem_snapshot_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/create_kerberos_details.py b/src/oci/file_storage/models/create_kerberos_details.py index 5f1eb7533f..deba9246cd 100644 --- a/src/oci/file_storage/models/create_kerberos_details.py +++ b/src/oci/file_storage/models/create_kerberos_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/create_ldap_bind_account_details.py b/src/oci/file_storage/models/create_ldap_bind_account_details.py index d78ee4f62c..19db12a45e 100644 --- a/src/oci/file_storage/models/create_ldap_bind_account_details.py +++ b/src/oci/file_storage/models/create_ldap_bind_account_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/create_ldap_idmap_details.py b/src/oci/file_storage/models/create_ldap_idmap_details.py index 5e670832d6..7751e372a3 100644 --- a/src/oci/file_storage/models/create_ldap_idmap_details.py +++ b/src/oci/file_storage/models/create_ldap_idmap_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 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 5a869f3794..b21b10de52 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/create_outbound_connector_details.py b/src/oci/file_storage/models/create_outbound_connector_details.py index edc5824dfe..0b1e4eb5d8 100644 --- a/src/oci/file_storage/models/create_outbound_connector_details.py +++ b/src/oci/file_storage/models/create_outbound_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/create_replication_details.py b/src/oci/file_storage/models/create_replication_details.py index 46b130d530..5b4202e371 100644 --- a/src/oci/file_storage/models/create_replication_details.py +++ b/src/oci/file_storage/models/create_replication_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/create_snapshot_details.py b/src/oci/file_storage/models/create_snapshot_details.py index 7d43d57814..a8a3c9ecb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/endpoint.py b/src/oci/file_storage/models/endpoint.py index 5ef8c5c1ea..b5052ac388 100644 --- a/src/oci/file_storage/models/endpoint.py +++ b/src/oci/file_storage/models/endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/export.py b/src/oci/file_storage/models/export.py index 194f2c387c..9cd05d1bc7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/export_set.py b/src/oci/file_storage/models/export_set.py index c548099038..4fbb8709f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/export_set_summary.py b/src/oci/file_storage/models/export_set_summary.py index 0513146b19..067ef8c347 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/export_summary.py b/src/oci/file_storage/models/export_summary.py index 600da7c102..dfb80f3c00 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/file_system.py b/src/oci/file_storage/models/file_system.py index e25d40753f..138fbcdad3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/file_system_summary.py b/src/oci/file_storage/models/file_system_summary.py index 20fc283ceb..1297d18d91 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/filesystem_snapshot_policy.py b/src/oci/file_storage/models/filesystem_snapshot_policy.py index 2b7b7d6248..a35205de80 100644 --- a/src/oci/file_storage/models/filesystem_snapshot_policy.py +++ b/src/oci/file_storage/models/filesystem_snapshot_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/filesystem_snapshot_policy_summary.py b/src/oci/file_storage/models/filesystem_snapshot_policy_summary.py index 93b6983c50..6064c90635 100644 --- a/src/oci/file_storage/models/filesystem_snapshot_policy_summary.py +++ b/src/oci/file_storage/models/filesystem_snapshot_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/kerberos.py b/src/oci/file_storage/models/kerberos.py index 4fa36f432d..d99c2be776 100644 --- a/src/oci/file_storage/models/kerberos.py +++ b/src/oci/file_storage/models/kerberos.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/kerberos_keytab_entry.py b/src/oci/file_storage/models/kerberos_keytab_entry.py index 23ec0610d0..eb3e9beff2 100644 --- a/src/oci/file_storage/models/kerberos_keytab_entry.py +++ b/src/oci/file_storage/models/kerberos_keytab_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/key_tab_secret_details.py b/src/oci/file_storage/models/key_tab_secret_details.py index fae8a044cf..9f0b1bbd5d 100644 --- a/src/oci/file_storage/models/key_tab_secret_details.py +++ b/src/oci/file_storage/models/key_tab_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/ldap_bind_account.py b/src/oci/file_storage/models/ldap_bind_account.py index 14f437f840..372809dff7 100644 --- a/src/oci/file_storage/models/ldap_bind_account.py +++ b/src/oci/file_storage/models/ldap_bind_account.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/ldap_bind_account_summary.py b/src/oci/file_storage/models/ldap_bind_account_summary.py index 28d20c4aed..7f8377fe2e 100644 --- a/src/oci/file_storage/models/ldap_bind_account_summary.py +++ b/src/oci/file_storage/models/ldap_bind_account_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/ldap_idmap.py b/src/oci/file_storage/models/ldap_idmap.py index ae5186cfe4..5af047c2cd 100644 --- a/src/oci/file_storage/models/ldap_idmap.py +++ b/src/oci/file_storage/models/ldap_idmap.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/mount_target.py b/src/oci/file_storage/models/mount_target.py index 47ffc2963f..ab8e4d493a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/mount_target_summary.py b/src/oci/file_storage/models/mount_target_summary.py index a10b244549..391bfbd117 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/outbound_connector.py b/src/oci/file_storage/models/outbound_connector.py index 3984981b86..ac0e1c5e2a 100644 --- a/src/oci/file_storage/models/outbound_connector.py +++ b/src/oci/file_storage/models/outbound_connector.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/outbound_connector_summary.py b/src/oci/file_storage/models/outbound_connector_summary.py index c2b28f07c0..059337df06 100644 --- a/src/oci/file_storage/models/outbound_connector_summary.py +++ b/src/oci/file_storage/models/outbound_connector_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/replication.py b/src/oci/file_storage/models/replication.py index 2699df91ec..151380f767 100644 --- a/src/oci/file_storage/models/replication.py +++ b/src/oci/file_storage/models/replication.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/replication_estimate.py b/src/oci/file_storage/models/replication_estimate.py index 12af211869..5a9b8d220c 100644 --- a/src/oci/file_storage/models/replication_estimate.py +++ b/src/oci/file_storage/models/replication_estimate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/replication_summary.py b/src/oci/file_storage/models/replication_summary.py index a9bea47894..458a3ff1c9 100644 --- a/src/oci/file_storage/models/replication_summary.py +++ b/src/oci/file_storage/models/replication_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/replication_target.py b/src/oci/file_storage/models/replication_target.py index 553efcc929..c69d05ec9e 100644 --- a/src/oci/file_storage/models/replication_target.py +++ b/src/oci/file_storage/models/replication_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/replication_target_summary.py b/src/oci/file_storage/models/replication_target_summary.py index 8da088f3b9..0301599be2 100644 --- a/src/oci/file_storage/models/replication_target_summary.py +++ b/src/oci/file_storage/models/replication_target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/resource_lock.py b/src/oci/file_storage/models/resource_lock.py index 17d596af93..6d1bb893be 100644 --- a/src/oci/file_storage/models/resource_lock.py +++ b/src/oci/file_storage/models/resource_lock.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/schedule_downgrade_shape_mount_target_details.py b/src/oci/file_storage/models/schedule_downgrade_shape_mount_target_details.py index d65b6a7687..f61a38b8bb 100644 --- a/src/oci/file_storage/models/schedule_downgrade_shape_mount_target_details.py +++ b/src/oci/file_storage/models/schedule_downgrade_shape_mount_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/snapshot.py b/src/oci/file_storage/models/snapshot.py index 40172f50f2..5b699f47d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/snapshot_schedule.py b/src/oci/file_storage/models/snapshot_schedule.py index d0330dc76b..ff167dce3f 100644 --- a/src/oci/file_storage/models/snapshot_schedule.py +++ b/src/oci/file_storage/models/snapshot_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/snapshot_summary.py b/src/oci/file_storage/models/snapshot_summary.py index 8328a82aa0..aa785d8075 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/source_details.py b/src/oci/file_storage/models/source_details.py index 5e9788fbe2..96d46d7204 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/update_export_details.py b/src/oci/file_storage/models/update_export_details.py index 27c03dab07..bbf04bc182 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 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 0355e78bf3..1a4c8ed887 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 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 3641b59f7b..2096d6b9a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/update_filesystem_snapshot_policy_details.py b/src/oci/file_storage/models/update_filesystem_snapshot_policy_details.py index f9f9e11db8..7c54854d9a 100644 --- a/src/oci/file_storage/models/update_filesystem_snapshot_policy_details.py +++ b/src/oci/file_storage/models/update_filesystem_snapshot_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/update_kerberos_details.py b/src/oci/file_storage/models/update_kerberos_details.py index 95076e3156..a7c176c6c9 100644 --- a/src/oci/file_storage/models/update_kerberos_details.py +++ b/src/oci/file_storage/models/update_kerberos_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/update_ldap_idmap_details.py b/src/oci/file_storage/models/update_ldap_idmap_details.py index e84932523e..c72d163528 100644 --- a/src/oci/file_storage/models/update_ldap_idmap_details.py +++ b/src/oci/file_storage/models/update_ldap_idmap_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 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 9937e99ece..95acd58780 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/update_outbound_connector_details.py b/src/oci/file_storage/models/update_outbound_connector_details.py index 68cca189ff..ec687c3b60 100644 --- a/src/oci/file_storage/models/update_outbound_connector_details.py +++ b/src/oci/file_storage/models/update_outbound_connector_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/update_replication_details.py b/src/oci/file_storage/models/update_replication_details.py index ff014d0615..72c3e17a64 100644 --- a/src/oci/file_storage/models/update_replication_details.py +++ b/src/oci/file_storage/models/update_replication_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/update_snapshot_details.py b/src/oci/file_storage/models/update_snapshot_details.py index cd0f05a68c..3070a32b2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/upgrade_shape_mount_target_details.py b/src/oci/file_storage/models/upgrade_shape_mount_target_details.py index 6106a120b9..e053b549d1 100644 --- a/src/oci/file_storage/models/upgrade_shape_mount_target_details.py +++ b/src/oci/file_storage/models/upgrade_shape_mount_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/validate_key_tabs_details.py b/src/oci/file_storage/models/validate_key_tabs_details.py index b39cb445cb..7b1a03eb6e 100644 --- a/src/oci/file_storage/models/validate_key_tabs_details.py +++ b/src/oci/file_storage/models/validate_key_tabs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/file_storage/models/validate_key_tabs_response_details.py b/src/oci/file_storage/models/validate_key_tabs_response_details.py index 5b8bfe81c5..5dba1dafcf 100644 --- a/src/oci/file_storage/models/validate_key_tabs_response_details.py +++ b/src/oci/file_storage/models/validate_key_tabs_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20171215 diff --git a/src/oci/fips.py b/src/oci/fips.py index 5ec7db4e47..52651b2b01 100644 --- a/src/oci/fips.py +++ b/src/oci/fips.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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/fleet_apps_management/__init__.py b/src/oci/fleet_apps_management/__init__.py index d9d1f96e9a..a9e24b28c9 100644 --- a/src/oci/fleet_apps_management/__init__.py +++ b/src/oci/fleet_apps_management/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_admin_client.py b/src/oci/fleet_apps_management/fleet_apps_management_admin_client.py index 3e43286cff..38b39bf025 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_admin_client.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_admin_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_admin_client_composite_operations.py b/src/oci/fleet_apps_management/fleet_apps_management_admin_client_composite_operations.py index df6179b368..fae0a2039d 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_admin_client_composite_operations.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_admin_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_client.py b/src/oci/fleet_apps_management/fleet_apps_management_client.py index a64f3e74ce..36b0158110 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_client.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_client_composite_operations.py b/src/oci/fleet_apps_management/fleet_apps_management_client_composite_operations.py index 8e760ce481..3b45b6a156 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_client_composite_operations.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py b/src/oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py index fe65801aed..e64dc30637 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_maintenance_window_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_maintenance_window_client_composite_operations.py b/src/oci/fleet_apps_management/fleet_apps_management_maintenance_window_client_composite_operations.py index 527fbdec9a..ecfa94b557 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_maintenance_window_client_composite_operations.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_maintenance_window_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_operations_client.py b/src/oci/fleet_apps_management/fleet_apps_management_operations_client.py index d139d5ac25..579b450c26 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_operations_client.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_operations_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_operations_client_composite_operations.py b/src/oci/fleet_apps_management/fleet_apps_management_operations_client_composite_operations.py index e1aa3780ff..3688326926 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_operations_client_composite_operations.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_operations_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_runbooks_client.py b/src/oci/fleet_apps_management/fleet_apps_management_runbooks_client.py index 39dc0d3070..7dc0e61c28 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_runbooks_client.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_runbooks_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/fleet_apps_management_runbooks_client_composite_operations.py b/src/oci/fleet_apps_management/fleet_apps_management_runbooks_client_composite_operations.py index 57f902857a..5bd2ec1b0a 100644 --- a/src/oci/fleet_apps_management/fleet_apps_management_runbooks_client_composite_operations.py +++ b/src/oci/fleet_apps_management/fleet_apps_management_runbooks_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/__init__.py b/src/oci/fleet_apps_management/models/__init__.py index 4dc3aa1bed..14104ac253 100644 --- a/src/oci/fleet_apps_management/models/__init__.py +++ b/src/oci/fleet_apps_management/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/action_group.py b/src/oci/fleet_apps_management/models/action_group.py index d13000227c..3757c6aa6d 100644 --- a/src/oci/fleet_apps_management/models/action_group.py +++ b/src/oci/fleet_apps_management/models/action_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/action_group_based_user_action_details.py b/src/oci/fleet_apps_management/models/action_group_based_user_action_details.py index 304b715e1f..930a6ca359 100644 --- a/src/oci/fleet_apps_management/models/action_group_based_user_action_details.py +++ b/src/oci/fleet_apps_management/models/action_group_based_user_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/action_group_details.py b/src/oci/fleet_apps_management/models/action_group_details.py index 441db69585..21fa3237ba 100644 --- a/src/oci/fleet_apps_management/models/action_group_details.py +++ b/src/oci/fleet_apps_management/models/action_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/activity_resource_target.py b/src/oci/fleet_apps_management/models/activity_resource_target.py index e416ad4d1f..1f8842bd3d 100644 --- a/src/oci/fleet_apps_management/models/activity_resource_target.py +++ b/src/oci/fleet_apps_management/models/activity_resource_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/announcement_collection.py b/src/oci/fleet_apps_management/models/announcement_collection.py index 326b4456fe..ac80eda591 100644 --- a/src/oci/fleet_apps_management/models/announcement_collection.py +++ b/src/oci/fleet_apps_management/models/announcement_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/announcement_summary.py b/src/oci/fleet_apps_management/models/announcement_summary.py index e8aaca8a4a..87616f9c81 100644 --- a/src/oci/fleet_apps_management/models/announcement_summary.py +++ b/src/oci/fleet_apps_management/models/announcement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/api_based_execution_details.py b/src/oci/fleet_apps_management/models/api_based_execution_details.py index edf24930b7..285a7ca58c 100644 --- a/src/oci/fleet_apps_management/models/api_based_execution_details.py +++ b/src/oci/fleet_apps_management/models/api_based_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/artifact_details.py b/src/oci/fleet_apps_management/models/artifact_details.py index 7a391cc84d..7cd1fa8ebc 100644 --- a/src/oci/fleet_apps_management/models/artifact_details.py +++ b/src/oci/fleet_apps_management/models/artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/associated_fleet_credential_details.py b/src/oci/fleet_apps_management/models/associated_fleet_credential_details.py index 1c7381790b..f6bc205dbe 100644 --- a/src/oci/fleet_apps_management/models/associated_fleet_credential_details.py +++ b/src/oci/fleet_apps_management/models/associated_fleet_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/associated_fleet_property_details.py b/src/oci/fleet_apps_management/models/associated_fleet_property_details.py index dbd88fb6d8..a704bc5b78 100644 --- a/src/oci/fleet_apps_management/models/associated_fleet_property_details.py +++ b/src/oci/fleet_apps_management/models/associated_fleet_property_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/associated_fleet_resource_details.py b/src/oci/fleet_apps_management/models/associated_fleet_resource_details.py index 1193a3812d..3ae90a10b3 100644 --- a/src/oci/fleet_apps_management/models/associated_fleet_resource_details.py +++ b/src/oci/fleet_apps_management/models/associated_fleet_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/associated_local_task_details.py b/src/oci/fleet_apps_management/models/associated_local_task_details.py index 6a0892905f..9714be5ad9 100644 --- a/src/oci/fleet_apps_management/models/associated_local_task_details.py +++ b/src/oci/fleet_apps_management/models/associated_local_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/associated_scheduler_definition.py b/src/oci/fleet_apps_management/models/associated_scheduler_definition.py index 09bcc6f854..1171093ee4 100644 --- a/src/oci/fleet_apps_management/models/associated_scheduler_definition.py +++ b/src/oci/fleet_apps_management/models/associated_scheduler_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/associated_shared_task_details.py b/src/oci/fleet_apps_management/models/associated_shared_task_details.py index f5a1f04bc1..6037f5bfa8 100644 --- a/src/oci/fleet_apps_management/models/associated_shared_task_details.py +++ b/src/oci/fleet_apps_management/models/associated_shared_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/associated_task_details.py b/src/oci/fleet_apps_management/models/associated_task_details.py index 5d2de1c1aa..83cd6febfb 100644 --- a/src/oci/fleet_apps_management/models/associated_task_details.py +++ b/src/oci/fleet_apps_management/models/associated_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/associations.py b/src/oci/fleet_apps_management/models/associations.py index 79e4cf7f5d..94ad614493 100644 --- a/src/oci/fleet_apps_management/models/associations.py +++ b/src/oci/fleet_apps_management/models/associations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/check_resource_tagging_details.py b/src/oci/fleet_apps_management/models/check_resource_tagging_details.py index a446a1013b..b40517e808 100644 --- a/src/oci/fleet_apps_management/models/check_resource_tagging_details.py +++ b/src/oci/fleet_apps_management/models/check_resource_tagging_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_detail_policy.py b/src/oci/fleet_apps_management/models/compliance_detail_policy.py index 3c1098f83c..8ec0dbc617 100644 --- a/src/oci/fleet_apps_management/models/compliance_detail_policy.py +++ b/src/oci/fleet_apps_management/models/compliance_detail_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_detail_product.py b/src/oci/fleet_apps_management/models/compliance_detail_product.py index 5757ad93b6..f1e900439f 100644 --- a/src/oci/fleet_apps_management/models/compliance_detail_product.py +++ b/src/oci/fleet_apps_management/models/compliance_detail_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_detail_resource.py b/src/oci/fleet_apps_management/models/compliance_detail_resource.py index bb6dfaf5d4..558f991c8d 100644 --- a/src/oci/fleet_apps_management/models/compliance_detail_resource.py +++ b/src/oci/fleet_apps_management/models/compliance_detail_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_detail_target.py b/src/oci/fleet_apps_management/models/compliance_detail_target.py index 6dba91955a..393fadf434 100644 --- a/src/oci/fleet_apps_management/models/compliance_detail_target.py +++ b/src/oci/fleet_apps_management/models/compliance_detail_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_patch_detail.py b/src/oci/fleet_apps_management/models/compliance_patch_detail.py index 70632ef9ff..c7f32f8122 100644 --- a/src/oci/fleet_apps_management/models/compliance_patch_detail.py +++ b/src/oci/fleet_apps_management/models/compliance_patch_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_policy.py b/src/oci/fleet_apps_management/models/compliance_policy.py index b09d6caac3..f0773b8892 100644 --- a/src/oci/fleet_apps_management/models/compliance_policy.py +++ b/src/oci/fleet_apps_management/models/compliance_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_policy_collection.py b/src/oci/fleet_apps_management/models/compliance_policy_collection.py index 031ec00bbc..8557af50d9 100644 --- a/src/oci/fleet_apps_management/models/compliance_policy_collection.py +++ b/src/oci/fleet_apps_management/models/compliance_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_policy_rule.py b/src/oci/fleet_apps_management/models/compliance_policy_rule.py index 0f48839a47..ee5a3cb741 100644 --- a/src/oci/fleet_apps_management/models/compliance_policy_rule.py +++ b/src/oci/fleet_apps_management/models/compliance_policy_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_policy_rule_collection.py b/src/oci/fleet_apps_management/models/compliance_policy_rule_collection.py index 42e75c41b3..850f800669 100644 --- a/src/oci/fleet_apps_management/models/compliance_policy_rule_collection.py +++ b/src/oci/fleet_apps_management/models/compliance_policy_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_policy_rule_summary.py b/src/oci/fleet_apps_management/models/compliance_policy_rule_summary.py index e267b2b5a7..4ef22a0b80 100644 --- a/src/oci/fleet_apps_management/models/compliance_policy_rule_summary.py +++ b/src/oci/fleet_apps_management/models/compliance_policy_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_policy_summary.py b/src/oci/fleet_apps_management/models/compliance_policy_summary.py index 4b4c9b88f3..df24535a9a 100644 --- a/src/oci/fleet_apps_management/models/compliance_policy_summary.py +++ b/src/oci/fleet_apps_management/models/compliance_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_record.py b/src/oci/fleet_apps_management/models/compliance_record.py index e4babead46..ebace0bd3a 100644 --- a/src/oci/fleet_apps_management/models/compliance_record.py +++ b/src/oci/fleet_apps_management/models/compliance_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_record_aggregation.py b/src/oci/fleet_apps_management/models/compliance_record_aggregation.py index 80df114f4b..84da99af1e 100644 --- a/src/oci/fleet_apps_management/models/compliance_record_aggregation.py +++ b/src/oci/fleet_apps_management/models/compliance_record_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_record_aggregation_collection.py b/src/oci/fleet_apps_management/models/compliance_record_aggregation_collection.py index 29a359c930..228e0cb65c 100644 --- a/src/oci/fleet_apps_management/models/compliance_record_aggregation_collection.py +++ b/src/oci/fleet_apps_management/models/compliance_record_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_record_collection.py b/src/oci/fleet_apps_management/models/compliance_record_collection.py index f413402841..9d85730e1c 100644 --- a/src/oci/fleet_apps_management/models/compliance_record_collection.py +++ b/src/oci/fleet_apps_management/models/compliance_record_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_record_dimension.py b/src/oci/fleet_apps_management/models/compliance_record_dimension.py index 9d72d3ee64..0db8ca1dce 100644 --- a/src/oci/fleet_apps_management/models/compliance_record_dimension.py +++ b/src/oci/fleet_apps_management/models/compliance_record_dimension.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_record_summary.py b/src/oci/fleet_apps_management/models/compliance_record_summary.py index fac052fa67..10599dc65b 100644 --- a/src/oci/fleet_apps_management/models/compliance_record_summary.py +++ b/src/oci/fleet_apps_management/models/compliance_record_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_report.py b/src/oci/fleet_apps_management/models/compliance_report.py index 33f91f6191..4ba8cb2d5a 100644 --- a/src/oci/fleet_apps_management/models/compliance_report.py +++ b/src/oci/fleet_apps_management/models/compliance_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_report_patch_detail.py b/src/oci/fleet_apps_management/models/compliance_report_patch_detail.py index 0c3cb5e3e0..4da2a4d5b9 100644 --- a/src/oci/fleet_apps_management/models/compliance_report_patch_detail.py +++ b/src/oci/fleet_apps_management/models/compliance_report_patch_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_report_product.py b/src/oci/fleet_apps_management/models/compliance_report_product.py index 5e4e618398..5288225635 100644 --- a/src/oci/fleet_apps_management/models/compliance_report_product.py +++ b/src/oci/fleet_apps_management/models/compliance_report_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_report_resource.py b/src/oci/fleet_apps_management/models/compliance_report_resource.py index fc38ed8b84..1d12956724 100644 --- a/src/oci/fleet_apps_management/models/compliance_report_resource.py +++ b/src/oci/fleet_apps_management/models/compliance_report_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/compliance_report_target.py b/src/oci/fleet_apps_management/models/compliance_report_target.py index b9266bb3ce..df258f5148 100644 --- a/src/oci/fleet_apps_management/models/compliance_report_target.py +++ b/src/oci/fleet_apps_management/models/compliance_report_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/component_properties.py b/src/oci/fleet_apps_management/models/component_properties.py index 82a510a681..997b26999b 100644 --- a/src/oci/fleet_apps_management/models/component_properties.py +++ b/src/oci/fleet_apps_management/models/component_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/condition.py b/src/oci/fleet_apps_management/models/condition.py index 1d330b4b52..87e7063896 100644 --- a/src/oci/fleet_apps_management/models/condition.py +++ b/src/oci/fleet_apps_management/models/condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/config_association_details.py b/src/oci/fleet_apps_management/models/config_association_details.py index 06fefbb410..9028cde4d7 100644 --- a/src/oci/fleet_apps_management/models/config_association_details.py +++ b/src/oci/fleet_apps_management/models/config_association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/config_category_details.py b/src/oci/fleet_apps_management/models/config_category_details.py index 2afe0970e7..b8fbfbbcee 100644 --- a/src/oci/fleet_apps_management/models/config_category_details.py +++ b/src/oci/fleet_apps_management/models/config_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/confirm_targets_details.py b/src/oci/fleet_apps_management/models/confirm_targets_details.py index dc88a6458b..5d0205e2b0 100644 --- a/src/oci/fleet_apps_management/models/confirm_targets_details.py +++ b/src/oci/fleet_apps_management/models/confirm_targets_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/content_details.py b/src/oci/fleet_apps_management/models/content_details.py index bb4de639c1..3303d45131 100644 --- a/src/oci/fleet_apps_management/models/content_details.py +++ b/src/oci/fleet_apps_management/models/content_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_compliance_policy_rule_details.py b/src/oci/fleet_apps_management/models/create_compliance_policy_rule_details.py index 390013765f..a5462aaddd 100644 --- a/src/oci/fleet_apps_management/models/create_compliance_policy_rule_details.py +++ b/src/oci/fleet_apps_management/models/create_compliance_policy_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_fleet_credential_details.py b/src/oci/fleet_apps_management/models/create_fleet_credential_details.py index 424b75cd92..b76dc90114 100644 --- a/src/oci/fleet_apps_management/models/create_fleet_credential_details.py +++ b/src/oci/fleet_apps_management/models/create_fleet_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_fleet_details.py b/src/oci/fleet_apps_management/models/create_fleet_details.py index 64e2d40633..6b6584392b 100644 --- a/src/oci/fleet_apps_management/models/create_fleet_details.py +++ b/src/oci/fleet_apps_management/models/create_fleet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_fleet_property_details.py b/src/oci/fleet_apps_management/models/create_fleet_property_details.py index 39e38ea438..3131cd8094 100644 --- a/src/oci/fleet_apps_management/models/create_fleet_property_details.py +++ b/src/oci/fleet_apps_management/models/create_fleet_property_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_fleet_resource_details.py b/src/oci/fleet_apps_management/models/create_fleet_resource_details.py index aa5c0aca9e..4e7712135a 100644 --- a/src/oci/fleet_apps_management/models/create_fleet_resource_details.py +++ b/src/oci/fleet_apps_management/models/create_fleet_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_maintenance_window_details.py b/src/oci/fleet_apps_management/models/create_maintenance_window_details.py index afec672b09..c0ccb67a13 100644 --- a/src/oci/fleet_apps_management/models/create_maintenance_window_details.py +++ b/src/oci/fleet_apps_management/models/create_maintenance_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_onboarding_details.py b/src/oci/fleet_apps_management/models/create_onboarding_details.py index 8e7bfa7e3e..f6a197f4f3 100644 --- a/src/oci/fleet_apps_management/models/create_onboarding_details.py +++ b/src/oci/fleet_apps_management/models/create_onboarding_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_patch_details.py b/src/oci/fleet_apps_management/models/create_patch_details.py index 3a0dd5e017..ade76300ff 100644 --- a/src/oci/fleet_apps_management/models/create_patch_details.py +++ b/src/oci/fleet_apps_management/models/create_patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_platform_configuration_details.py b/src/oci/fleet_apps_management/models/create_platform_configuration_details.py index e6d99ae8d7..3e984bff18 100644 --- a/src/oci/fleet_apps_management/models/create_platform_configuration_details.py +++ b/src/oci/fleet_apps_management/models/create_platform_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_property_details.py b/src/oci/fleet_apps_management/models/create_property_details.py index c269372d80..6afd2d2946 100644 --- a/src/oci/fleet_apps_management/models/create_property_details.py +++ b/src/oci/fleet_apps_management/models/create_property_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_runbook_details.py b/src/oci/fleet_apps_management/models/create_runbook_details.py index c78e0ccfc4..481d6735f1 100644 --- a/src/oci/fleet_apps_management/models/create_runbook_details.py +++ b/src/oci/fleet_apps_management/models/create_runbook_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_scheduler_definition_details.py b/src/oci/fleet_apps_management/models/create_scheduler_definition_details.py index ffcf9d79dc..325bd5c867 100644 --- a/src/oci/fleet_apps_management/models/create_scheduler_definition_details.py +++ b/src/oci/fleet_apps_management/models/create_scheduler_definition_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/create_task_record_details.py b/src/oci/fleet_apps_management/models/create_task_record_details.py index b0081d9e0a..8f86ea9165 100644 --- a/src/oci/fleet_apps_management/models/create_task_record_details.py +++ b/src/oci/fleet_apps_management/models/create_task_record_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/credential_config_category_details.py b/src/oci/fleet_apps_management/models/credential_config_category_details.py index 62bcc4ce6c..9fbc93fb0f 100644 --- a/src/oci/fleet_apps_management/models/credential_config_category_details.py +++ b/src/oci/fleet_apps_management/models/credential_config_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/credential_details.py b/src/oci/fleet_apps_management/models/credential_details.py index d6568736e5..89799e5a84 100644 --- a/src/oci/fleet_apps_management/models/credential_details.py +++ b/src/oci/fleet_apps_management/models/credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/credential_entity_specific_details.py b/src/oci/fleet_apps_management/models/credential_entity_specific_details.py index 92b8166b98..27868d64d7 100644 --- a/src/oci/fleet_apps_management/models/credential_entity_specific_details.py +++ b/src/oci/fleet_apps_management/models/credential_entity_specific_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/dependent_patch_details.py b/src/oci/fleet_apps_management/models/dependent_patch_details.py index 4517835c5c..8f48de3e28 100644 --- a/src/oci/fleet_apps_management/models/dependent_patch_details.py +++ b/src/oci/fleet_apps_management/models/dependent_patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/details.py b/src/oci/fleet_apps_management/models/details.py index d9e282541d..1d84d20e9e 100644 --- a/src/oci/fleet_apps_management/models/details.py +++ b/src/oci/fleet_apps_management/models/details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/discovered_target.py b/src/oci/fleet_apps_management/models/discovered_target.py index 31b297ac20..d52a8121c9 100644 --- a/src/oci/fleet_apps_management/models/discovered_target.py +++ b/src/oci/fleet_apps_management/models/discovered_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/enable_latest_policy_details.py b/src/oci/fleet_apps_management/models/enable_latest_policy_details.py index b43ebaafc1..e0041fcf24 100644 --- a/src/oci/fleet_apps_management/models/enable_latest_policy_details.py +++ b/src/oci/fleet_apps_management/models/enable_latest_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/entity_execution_details.py b/src/oci/fleet_apps_management/models/entity_execution_details.py index 4cf50d98b8..a650e6d62d 100644 --- a/src/oci/fleet_apps_management/models/entity_execution_details.py +++ b/src/oci/fleet_apps_management/models/entity_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/environment_config_category_details.py b/src/oci/fleet_apps_management/models/environment_config_category_details.py index 96cf3f9270..2307f26b19 100644 --- a/src/oci/fleet_apps_management/models/environment_config_category_details.py +++ b/src/oci/fleet_apps_management/models/environment_config_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/execution.py b/src/oci/fleet_apps_management/models/execution.py index b2f3a4172c..18384df280 100644 --- a/src/oci/fleet_apps_management/models/execution.py +++ b/src/oci/fleet_apps_management/models/execution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/execution_collection.py b/src/oci/fleet_apps_management/models/execution_collection.py index 881bedb49e..fb9a1f13f8 100644 --- a/src/oci/fleet_apps_management/models/execution_collection.py +++ b/src/oci/fleet_apps_management/models/execution_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/execution_details.py b/src/oci/fleet_apps_management/models/execution_details.py index 5409dad918..205202866d 100644 --- a/src/oci/fleet_apps_management/models/execution_details.py +++ b/src/oci/fleet_apps_management/models/execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/execution_summary.py b/src/oci/fleet_apps_management/models/execution_summary.py index d2e1ce13ed..f45164e255 100644 --- a/src/oci/fleet_apps_management/models/execution_summary.py +++ b/src/oci/fleet_apps_management/models/execution_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/execution_workflow_details.py b/src/oci/fleet_apps_management/models/execution_workflow_details.py index fcf8ba180d..509ea303a3 100644 --- a/src/oci/fleet_apps_management/models/execution_workflow_details.py +++ b/src/oci/fleet_apps_management/models/execution_workflow_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/export_compliance_report_details.py b/src/oci/fleet_apps_management/models/export_compliance_report_details.py index 2acbfabb03..25a1ebfdb3 100644 --- a/src/oci/fleet_apps_management/models/export_compliance_report_details.py +++ b/src/oci/fleet_apps_management/models/export_compliance_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet.py b/src/oci/fleet_apps_management/models/fleet.py index 80853d1973..b20640a5e8 100644 --- a/src/oci/fleet_apps_management/models/fleet.py +++ b/src/oci/fleet_apps_management/models/fleet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_collection.py b/src/oci/fleet_apps_management/models/fleet_collection.py index 2a01cefcab..8fafc32677 100644 --- a/src/oci/fleet_apps_management/models/fleet_collection.py +++ b/src/oci/fleet_apps_management/models/fleet_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_credential.py b/src/oci/fleet_apps_management/models/fleet_credential.py index c849d4d6f5..d8dff18177 100644 --- a/src/oci/fleet_apps_management/models/fleet_credential.py +++ b/src/oci/fleet_apps_management/models/fleet_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_credential_collection.py b/src/oci/fleet_apps_management/models/fleet_credential_collection.py index fd8e875c96..7b385880aa 100644 --- a/src/oci/fleet_apps_management/models/fleet_credential_collection.py +++ b/src/oci/fleet_apps_management/models/fleet_credential_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_credential_entity_specific_details.py b/src/oci/fleet_apps_management/models/fleet_credential_entity_specific_details.py index f485b00276..32b0d70b6e 100644 --- a/src/oci/fleet_apps_management/models/fleet_credential_entity_specific_details.py +++ b/src/oci/fleet_apps_management/models/fleet_credential_entity_specific_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_credential_summary.py b/src/oci/fleet_apps_management/models/fleet_credential_summary.py index e30dc974e9..1d31975dd4 100644 --- a/src/oci/fleet_apps_management/models/fleet_credential_summary.py +++ b/src/oci/fleet_apps_management/models/fleet_credential_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_product_collection.py b/src/oci/fleet_apps_management/models/fleet_product_collection.py index e756e01066..f370560a5d 100644 --- a/src/oci/fleet_apps_management/models/fleet_product_collection.py +++ b/src/oci/fleet_apps_management/models/fleet_product_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_product_summary.py b/src/oci/fleet_apps_management/models/fleet_product_summary.py index 6c6e1410fb..7d575e01d2 100644 --- a/src/oci/fleet_apps_management/models/fleet_product_summary.py +++ b/src/oci/fleet_apps_management/models/fleet_product_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_property.py b/src/oci/fleet_apps_management/models/fleet_property.py index 3d5eed0dcc..dea1732876 100644 --- a/src/oci/fleet_apps_management/models/fleet_property.py +++ b/src/oci/fleet_apps_management/models/fleet_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_property_collection.py b/src/oci/fleet_apps_management/models/fleet_property_collection.py index 1b07e15245..08e63c8d52 100644 --- a/src/oci/fleet_apps_management/models/fleet_property_collection.py +++ b/src/oci/fleet_apps_management/models/fleet_property_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_property_summary.py b/src/oci/fleet_apps_management/models/fleet_property_summary.py index 5519aabac8..05618abd03 100644 --- a/src/oci/fleet_apps_management/models/fleet_property_summary.py +++ b/src/oci/fleet_apps_management/models/fleet_property_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_resource.py b/src/oci/fleet_apps_management/models/fleet_resource.py index 713d8e5de0..a4212e19c3 100644 --- a/src/oci/fleet_apps_management/models/fleet_resource.py +++ b/src/oci/fleet_apps_management/models/fleet_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_resource_collection.py b/src/oci/fleet_apps_management/models/fleet_resource_collection.py index 7c3829c7e8..d8117801f3 100644 --- a/src/oci/fleet_apps_management/models/fleet_resource_collection.py +++ b/src/oci/fleet_apps_management/models/fleet_resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_resource_summary.py b/src/oci/fleet_apps_management/models/fleet_resource_summary.py index 0a52986675..4af706068a 100644 --- a/src/oci/fleet_apps_management/models/fleet_resource_summary.py +++ b/src/oci/fleet_apps_management/models/fleet_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_summary.py b/src/oci/fleet_apps_management/models/fleet_summary.py index 47d8968dc4..3adda71077 100644 --- a/src/oci/fleet_apps_management/models/fleet_summary.py +++ b/src/oci/fleet_apps_management/models/fleet_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_target.py b/src/oci/fleet_apps_management/models/fleet_target.py index e8396c341c..178a093eae 100644 --- a/src/oci/fleet_apps_management/models/fleet_target.py +++ b/src/oci/fleet_apps_management/models/fleet_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_target_collection.py b/src/oci/fleet_apps_management/models/fleet_target_collection.py index b356e36e2a..498ab4f72e 100644 --- a/src/oci/fleet_apps_management/models/fleet_target_collection.py +++ b/src/oci/fleet_apps_management/models/fleet_target_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/fleet_target_summary.py b/src/oci/fleet_apps_management/models/fleet_target_summary.py index ef3e7cb04c..0a0eebeb64 100644 --- a/src/oci/fleet_apps_management/models/fleet_target_summary.py +++ b/src/oci/fleet_apps_management/models/fleet_target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/generate_compliance_report_details.py b/src/oci/fleet_apps_management/models/generate_compliance_report_details.py index 38a1f6ef5d..9896ccbdda 100644 --- a/src/oci/fleet_apps_management/models/generate_compliance_report_details.py +++ b/src/oci/fleet_apps_management/models/generate_compliance_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/generic_artifact.py b/src/oci/fleet_apps_management/models/generic_artifact.py index 5f1f7773c8..13da14569f 100644 --- a/src/oci/fleet_apps_management/models/generic_artifact.py +++ b/src/oci/fleet_apps_management/models/generic_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/generic_artifact_details.py b/src/oci/fleet_apps_management/models/generic_artifact_details.py index da5008080c..a18a14eaa0 100644 --- a/src/oci/fleet_apps_management/models/generic_artifact_details.py +++ b/src/oci/fleet_apps_management/models/generic_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/group.py b/src/oci/fleet_apps_management/models/group.py index 541724569f..165f3eefdb 100644 --- a/src/oci/fleet_apps_management/models/group.py +++ b/src/oci/fleet_apps_management/models/group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/input_argument.py b/src/oci/fleet_apps_management/models/input_argument.py index 8687056654..5701996f11 100644 --- a/src/oci/fleet_apps_management/models/input_argument.py +++ b/src/oci/fleet_apps_management/models/input_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/input_parameter.py b/src/oci/fleet_apps_management/models/input_parameter.py index 0e80d58a10..03ca321a23 100644 --- a/src/oci/fleet_apps_management/models/input_parameter.py +++ b/src/oci/fleet_apps_management/models/input_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/inventory_resource_collection.py b/src/oci/fleet_apps_management/models/inventory_resource_collection.py index e47a53a976..5d039bfc94 100644 --- a/src/oci/fleet_apps_management/models/inventory_resource_collection.py +++ b/src/oci/fleet_apps_management/models/inventory_resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/inventory_resource_summary.py b/src/oci/fleet_apps_management/models/inventory_resource_summary.py index 637ebb4734..db714384ae 100644 --- a/src/oci/fleet_apps_management/models/inventory_resource_summary.py +++ b/src/oci/fleet_apps_management/models/inventory_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/job_activity.py b/src/oci/fleet_apps_management/models/job_activity.py index 0518c1c333..04ab9123c6 100644 --- a/src/oci/fleet_apps_management/models/job_activity.py +++ b/src/oci/fleet_apps_management/models/job_activity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/key_encryption_credential_details.py b/src/oci/fleet_apps_management/models/key_encryption_credential_details.py index 3835287be8..1d3afa3eef 100644 --- a/src/oci/fleet_apps_management/models/key_encryption_credential_details.py +++ b/src/oci/fleet_apps_management/models/key_encryption_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/maintenance_window.py b/src/oci/fleet_apps_management/models/maintenance_window.py index ef3fad6d6c..03c3e793f6 100644 --- a/src/oci/fleet_apps_management/models/maintenance_window.py +++ b/src/oci/fleet_apps_management/models/maintenance_window.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/maintenance_window_collection.py b/src/oci/fleet_apps_management/models/maintenance_window_collection.py index 5f3b286de6..4cd79e6aab 100644 --- a/src/oci/fleet_apps_management/models/maintenance_window_collection.py +++ b/src/oci/fleet_apps_management/models/maintenance_window_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/maintenance_window_summary.py b/src/oci/fleet_apps_management/models/maintenance_window_summary.py index 9f545aae39..37064ca26b 100644 --- a/src/oci/fleet_apps_management/models/maintenance_window_summary.py +++ b/src/oci/fleet_apps_management/models/maintenance_window_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/manage_job_execution_details.py b/src/oci/fleet_apps_management/models/manage_job_execution_details.py index c7212d7d8c..ed61663dd3 100644 --- a/src/oci/fleet_apps_management/models/manage_job_execution_details.py +++ b/src/oci/fleet_apps_management/models/manage_job_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/manage_settings_details.py b/src/oci/fleet_apps_management/models/manage_settings_details.py index cf00e9ba15..4d01802a57 100644 --- a/src/oci/fleet_apps_management/models/manage_settings_details.py +++ b/src/oci/fleet_apps_management/models/manage_settings_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/managed_entity_aggregation.py b/src/oci/fleet_apps_management/models/managed_entity_aggregation.py index 8e8347fec3..613b9ee7cd 100644 --- a/src/oci/fleet_apps_management/models/managed_entity_aggregation.py +++ b/src/oci/fleet_apps_management/models/managed_entity_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/managed_entity_aggregation_collection.py b/src/oci/fleet_apps_management/models/managed_entity_aggregation_collection.py index 2305222f1b..965b26ef99 100644 --- a/src/oci/fleet_apps_management/models/managed_entity_aggregation_collection.py +++ b/src/oci/fleet_apps_management/models/managed_entity_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/managed_entity_dimension.py b/src/oci/fleet_apps_management/models/managed_entity_dimension.py index 265a0562b7..0574c78a95 100644 --- a/src/oci/fleet_apps_management/models/managed_entity_dimension.py +++ b/src/oci/fleet_apps_management/models/managed_entity_dimension.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/model_property.py b/src/oci/fleet_apps_management/models/model_property.py index 7e046714d7..71b285cabf 100644 --- a/src/oci/fleet_apps_management/models/model_property.py +++ b/src/oci/fleet_apps_management/models/model_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/notification_preferences.py b/src/oci/fleet_apps_management/models/notification_preferences.py index 2069a41088..b4a62977d6 100644 --- a/src/oci/fleet_apps_management/models/notification_preferences.py +++ b/src/oci/fleet_apps_management/models/notification_preferences.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/object_storage_bucket_content_details.py b/src/oci/fleet_apps_management/models/object_storage_bucket_content_details.py index e220e2e4b8..c5b438dc5c 100644 --- a/src/oci/fleet_apps_management/models/object_storage_bucket_content_details.py +++ b/src/oci/fleet_apps_management/models/object_storage_bucket_content_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/onboarding.py b/src/oci/fleet_apps_management/models/onboarding.py index 80d2cbd9ca..9a97a49339 100644 --- a/src/oci/fleet_apps_management/models/onboarding.py +++ b/src/oci/fleet_apps_management/models/onboarding.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/onboarding_collection.py b/src/oci/fleet_apps_management/models/onboarding_collection.py index c957c8df3d..22e3704a39 100644 --- a/src/oci/fleet_apps_management/models/onboarding_collection.py +++ b/src/oci/fleet_apps_management/models/onboarding_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/onboarding_policy_collection.py b/src/oci/fleet_apps_management/models/onboarding_policy_collection.py index 77548ccb84..342bb203f3 100644 --- a/src/oci/fleet_apps_management/models/onboarding_policy_collection.py +++ b/src/oci/fleet_apps_management/models/onboarding_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/onboarding_policy_summary.py b/src/oci/fleet_apps_management/models/onboarding_policy_summary.py index 632e0f369d..8fe4a891f5 100644 --- a/src/oci/fleet_apps_management/models/onboarding_policy_summary.py +++ b/src/oci/fleet_apps_management/models/onboarding_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/onboarding_summary.py b/src/oci/fleet_apps_management/models/onboarding_summary.py index f961c4a818..04aada27e0 100644 --- a/src/oci/fleet_apps_management/models/onboarding_summary.py +++ b/src/oci/fleet_apps_management/models/onboarding_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/operation_runbook.py b/src/oci/fleet_apps_management/models/operation_runbook.py index 0efef929a0..7ec9721cf1 100644 --- a/src/oci/fleet_apps_management/models/operation_runbook.py +++ b/src/oci/fleet_apps_management/models/operation_runbook.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/outcome.py b/src/oci/fleet_apps_management/models/outcome.py index affd73f3ff..ef6adeaf58 100644 --- a/src/oci/fleet_apps_management/models/outcome.py +++ b/src/oci/fleet_apps_management/models/outcome.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/output_variable_details.py b/src/oci/fleet_apps_management/models/output_variable_details.py index 579bbaaae0..550a057cf9 100644 --- a/src/oci/fleet_apps_management/models/output_variable_details.py +++ b/src/oci/fleet_apps_management/models/output_variable_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/output_variable_input_argument.py b/src/oci/fleet_apps_management/models/output_variable_input_argument.py index d065279eb8..0808de01ec 100644 --- a/src/oci/fleet_apps_management/models/output_variable_input_argument.py +++ b/src/oci/fleet_apps_management/models/output_variable_input_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/output_variable_mapping.py b/src/oci/fleet_apps_management/models/output_variable_mapping.py index 56ae63863d..f68e1ad259 100644 --- a/src/oci/fleet_apps_management/models/output_variable_mapping.py +++ b/src/oci/fleet_apps_management/models/output_variable_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch.py b/src/oci/fleet_apps_management/models/patch.py index 4d64beb2ac..e201f1fa51 100644 --- a/src/oci/fleet_apps_management/models/patch.py +++ b/src/oci/fleet_apps_management/models/patch.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch_collection.py b/src/oci/fleet_apps_management/models/patch_collection.py index b376585124..b1e776336d 100644 --- a/src/oci/fleet_apps_management/models/patch_collection.py +++ b/src/oci/fleet_apps_management/models/patch_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch_level_selection_details.py b/src/oci/fleet_apps_management/models/patch_level_selection_details.py index e181109bc0..ef0ede401f 100644 --- a/src/oci/fleet_apps_management/models/patch_level_selection_details.py +++ b/src/oci/fleet_apps_management/models/patch_level_selection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch_name_selection_details.py b/src/oci/fleet_apps_management/models/patch_name_selection_details.py index 388008665c..d815f29875 100644 --- a/src/oci/fleet_apps_management/models/patch_name_selection_details.py +++ b/src/oci/fleet_apps_management/models/patch_name_selection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch_product.py b/src/oci/fleet_apps_management/models/patch_product.py index a2f1d253d6..d7a7a83b57 100644 --- a/src/oci/fleet_apps_management/models/patch_product.py +++ b/src/oci/fleet_apps_management/models/patch_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch_release_date_selection_details.py b/src/oci/fleet_apps_management/models/patch_release_date_selection_details.py index 3df67c2aa4..6b7e94bae6 100644 --- a/src/oci/fleet_apps_management/models/patch_release_date_selection_details.py +++ b/src/oci/fleet_apps_management/models/patch_release_date_selection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch_selection_details.py b/src/oci/fleet_apps_management/models/patch_selection_details.py index 96e6475086..2948b975c0 100644 --- a/src/oci/fleet_apps_management/models/patch_selection_details.py +++ b/src/oci/fleet_apps_management/models/patch_selection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch_summary.py b/src/oci/fleet_apps_management/models/patch_summary.py index 269338393f..1e7e55902a 100644 --- a/src/oci/fleet_apps_management/models/patch_summary.py +++ b/src/oci/fleet_apps_management/models/patch_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch_type.py b/src/oci/fleet_apps_management/models/patch_type.py index 7ec616c2f6..f45ac197df 100644 --- a/src/oci/fleet_apps_management/models/patch_type.py +++ b/src/oci/fleet_apps_management/models/patch_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/patch_type_config_category_details.py b/src/oci/fleet_apps_management/models/patch_type_config_category_details.py index 3e41036290..bebcb452d3 100644 --- a/src/oci/fleet_apps_management/models/patch_type_config_category_details.py +++ b/src/oci/fleet_apps_management/models/patch_type_config_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/pause_details.py b/src/oci/fleet_apps_management/models/pause_details.py index 4a3c72ea20..07cbd7f4eb 100644 --- a/src/oci/fleet_apps_management/models/pause_details.py +++ b/src/oci/fleet_apps_management/models/pause_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/plain_text_credential_details.py b/src/oci/fleet_apps_management/models/plain_text_credential_details.py index 61bc5d1434..1cf0cd159f 100644 --- a/src/oci/fleet_apps_management/models/plain_text_credential_details.py +++ b/src/oci/fleet_apps_management/models/plain_text_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/platform_configuration.py b/src/oci/fleet_apps_management/models/platform_configuration.py index 16c16b5a41..6914fe4033 100644 --- a/src/oci/fleet_apps_management/models/platform_configuration.py +++ b/src/oci/fleet_apps_management/models/platform_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/platform_configuration_collection.py b/src/oci/fleet_apps_management/models/platform_configuration_collection.py index 1844bae5d2..402e7c2c16 100644 --- a/src/oci/fleet_apps_management/models/platform_configuration_collection.py +++ b/src/oci/fleet_apps_management/models/platform_configuration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/platform_configuration_summary.py b/src/oci/fleet_apps_management/models/platform_configuration_summary.py index 2ca1ddbd63..03ce4e1137 100644 --- a/src/oci/fleet_apps_management/models/platform_configuration_summary.py +++ b/src/oci/fleet_apps_management/models/platform_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/platform_specific_artifact.py b/src/oci/fleet_apps_management/models/platform_specific_artifact.py index fc224be9f5..8e41b41dab 100644 --- a/src/oci/fleet_apps_management/models/platform_specific_artifact.py +++ b/src/oci/fleet_apps_management/models/platform_specific_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/platform_specific_artifact_details.py b/src/oci/fleet_apps_management/models/platform_specific_artifact_details.py index 4ce1012eb5..2196f18df8 100644 --- a/src/oci/fleet_apps_management/models/platform_specific_artifact_details.py +++ b/src/oci/fleet_apps_management/models/platform_specific_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/preferences.py b/src/oci/fleet_apps_management/models/preferences.py index ad89653784..0aaaeb4a18 100644 --- a/src/oci/fleet_apps_management/models/preferences.py +++ b/src/oci/fleet_apps_management/models/preferences.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/product_config_category_details.py b/src/oci/fleet_apps_management/models/product_config_category_details.py index 96bb26f024..aa2d7cf946 100644 --- a/src/oci/fleet_apps_management/models/product_config_category_details.py +++ b/src/oci/fleet_apps_management/models/product_config_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/product_stack_as_product_sub_category_details.py b/src/oci/fleet_apps_management/models/product_stack_as_product_sub_category_details.py index f300891d01..007638a653 100644 --- a/src/oci/fleet_apps_management/models/product_stack_as_product_sub_category_details.py +++ b/src/oci/fleet_apps_management/models/product_stack_as_product_sub_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/product_stack_config_category_details.py b/src/oci/fleet_apps_management/models/product_stack_config_category_details.py index 7bbeb2d574..f6d13a6b58 100644 --- a/src/oci/fleet_apps_management/models/product_stack_config_category_details.py +++ b/src/oci/fleet_apps_management/models/product_stack_config_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/product_stack_generic_sub_category_details.py b/src/oci/fleet_apps_management/models/product_stack_generic_sub_category_details.py index b1cff6c4dd..b1b9201be1 100644 --- a/src/oci/fleet_apps_management/models/product_stack_generic_sub_category_details.py +++ b/src/oci/fleet_apps_management/models/product_stack_generic_sub_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/product_stack_sub_category_details.py b/src/oci/fleet_apps_management/models/product_stack_sub_category_details.py index 7b403cde8b..37cba4a854 100644 --- a/src/oci/fleet_apps_management/models/product_stack_sub_category_details.py +++ b/src/oci/fleet_apps_management/models/product_stack_sub_category_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/product_version_details.py b/src/oci/fleet_apps_management/models/product_version_details.py index 44f1436577..706a9419b5 100644 --- a/src/oci/fleet_apps_management/models/product_version_details.py +++ b/src/oci/fleet_apps_management/models/product_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/properties.py b/src/oci/fleet_apps_management/models/properties.py index f8ad5f145e..cac391706c 100644 --- a/src/oci/fleet_apps_management/models/properties.py +++ b/src/oci/fleet_apps_management/models/properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/property_collection.py b/src/oci/fleet_apps_management/models/property_collection.py index 8d124bde84..03f4de610c 100644 --- a/src/oci/fleet_apps_management/models/property_collection.py +++ b/src/oci/fleet_apps_management/models/property_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/property_summary.py b/src/oci/fleet_apps_management/models/property_summary.py index a0a5362fd6..ea0fb13083 100644 --- a/src/oci/fleet_apps_management/models/property_summary.py +++ b/src/oci/fleet_apps_management/models/property_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/publish_runbook_details.py b/src/oci/fleet_apps_management/models/publish_runbook_details.py index 295f238de5..a936344e34 100644 --- a/src/oci/fleet_apps_management/models/publish_runbook_details.py +++ b/src/oci/fleet_apps_management/models/publish_runbook_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/request_resource_validation_details.py b/src/oci/fleet_apps_management/models/request_resource_validation_details.py index b93753b05a..8bb07f099b 100644 --- a/src/oci/fleet_apps_management/models/request_resource_validation_details.py +++ b/src/oci/fleet_apps_management/models/request_resource_validation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/request_target_discovery_details.py b/src/oci/fleet_apps_management/models/request_target_discovery_details.py index 7e2da88288..1d28075469 100644 --- a/src/oci/fleet_apps_management/models/request_target_discovery_details.py +++ b/src/oci/fleet_apps_management/models/request_target_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/resource_collection.py b/src/oci/fleet_apps_management/models/resource_collection.py index 116468fb49..370778b8cf 100644 --- a/src/oci/fleet_apps_management/models/resource_collection.py +++ b/src/oci/fleet_apps_management/models/resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/resource_credential_entity_specific_details.py b/src/oci/fleet_apps_management/models/resource_credential_entity_specific_details.py index fb6bb6fa0a..61a6098291 100644 --- a/src/oci/fleet_apps_management/models/resource_credential_entity_specific_details.py +++ b/src/oci/fleet_apps_management/models/resource_credential_entity_specific_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/resource_summary.py b/src/oci/fleet_apps_management/models/resource_summary.py index a5e7fb3ec6..558aad8b34 100644 --- a/src/oci/fleet_apps_management/models/resource_summary.py +++ b/src/oci/fleet_apps_management/models/resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/resource_tag_check_details.py b/src/oci/fleet_apps_management/models/resource_tag_check_details.py index 6cf27ca297..2a198258dd 100644 --- a/src/oci/fleet_apps_management/models/resource_tag_check_details.py +++ b/src/oci/fleet_apps_management/models/resource_tag_check_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/resource_tag_enablement_info.py b/src/oci/fleet_apps_management/models/resource_tag_enablement_info.py index 99ff255596..7019eac6da 100644 --- a/src/oci/fleet_apps_management/models/resource_tag_enablement_info.py +++ b/src/oci/fleet_apps_management/models/resource_tag_enablement_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/rollback_workflow_details.py b/src/oci/fleet_apps_management/models/rollback_workflow_details.py index 8a40810e91..a2573c1f9b 100644 --- a/src/oci/fleet_apps_management/models/rollback_workflow_details.py +++ b/src/oci/fleet_apps_management/models/rollback_workflow_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/rule.py b/src/oci/fleet_apps_management/models/rule.py index 4f752e0b9e..f7351225e6 100644 --- a/src/oci/fleet_apps_management/models/rule.py +++ b/src/oci/fleet_apps_management/models/rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/runbook.py b/src/oci/fleet_apps_management/models/runbook.py index 1f6309e047..eb979099f3 100644 --- a/src/oci/fleet_apps_management/models/runbook.py +++ b/src/oci/fleet_apps_management/models/runbook.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/runbook_collection.py b/src/oci/fleet_apps_management/models/runbook_collection.py index 874895c179..db5caa30e0 100644 --- a/src/oci/fleet_apps_management/models/runbook_collection.py +++ b/src/oci/fleet_apps_management/models/runbook_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/runbook_summary.py b/src/oci/fleet_apps_management/models/runbook_summary.py index af46fe4a60..aeef963d3c 100644 --- a/src/oci/fleet_apps_management/models/runbook_summary.py +++ b/src/oci/fleet_apps_management/models/runbook_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/schedule.py b/src/oci/fleet_apps_management/models/schedule.py index e1c9e6934e..fe6d777ad2 100644 --- a/src/oci/fleet_apps_management/models/schedule.py +++ b/src/oci/fleet_apps_management/models/schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduled_fleet_collection.py b/src/oci/fleet_apps_management/models/scheduled_fleet_collection.py index a87de1f826..1c258e2c10 100644 --- a/src/oci/fleet_apps_management/models/scheduled_fleet_collection.py +++ b/src/oci/fleet_apps_management/models/scheduled_fleet_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduled_fleet_summary.py b/src/oci/fleet_apps_management/models/scheduled_fleet_summary.py index 208c15302b..c1244d1aab 100644 --- a/src/oci/fleet_apps_management/models/scheduled_fleet_summary.py +++ b/src/oci/fleet_apps_management/models/scheduled_fleet_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduler_definition.py b/src/oci/fleet_apps_management/models/scheduler_definition.py index 8e9b9c01a5..e4ad4c22a3 100644 --- a/src/oci/fleet_apps_management/models/scheduler_definition.py +++ b/src/oci/fleet_apps_management/models/scheduler_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduler_definition_collection.py b/src/oci/fleet_apps_management/models/scheduler_definition_collection.py index 369656f161..1b9ea6640d 100644 --- a/src/oci/fleet_apps_management/models/scheduler_definition_collection.py +++ b/src/oci/fleet_apps_management/models/scheduler_definition_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduler_definition_summary.py b/src/oci/fleet_apps_management/models/scheduler_definition_summary.py index f8187f1409..612e478128 100644 --- a/src/oci/fleet_apps_management/models/scheduler_definition_summary.py +++ b/src/oci/fleet_apps_management/models/scheduler_definition_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduler_job.py b/src/oci/fleet_apps_management/models/scheduler_job.py index 738353d36d..afa506b4af 100644 --- a/src/oci/fleet_apps_management/models/scheduler_job.py +++ b/src/oci/fleet_apps_management/models/scheduler_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduler_job_aggregation.py b/src/oci/fleet_apps_management/models/scheduler_job_aggregation.py index 59144834e5..d0f0da0b48 100644 --- a/src/oci/fleet_apps_management/models/scheduler_job_aggregation.py +++ b/src/oci/fleet_apps_management/models/scheduler_job_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduler_job_aggregation_collection.py b/src/oci/fleet_apps_management/models/scheduler_job_aggregation_collection.py index 9e430767b1..8e28922aba 100644 --- a/src/oci/fleet_apps_management/models/scheduler_job_aggregation_collection.py +++ b/src/oci/fleet_apps_management/models/scheduler_job_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduler_job_collection.py b/src/oci/fleet_apps_management/models/scheduler_job_collection.py index 63a8d90f99..e481363d46 100644 --- a/src/oci/fleet_apps_management/models/scheduler_job_collection.py +++ b/src/oci/fleet_apps_management/models/scheduler_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduler_job_dimension.py b/src/oci/fleet_apps_management/models/scheduler_job_dimension.py index 7e1a259d13..7d6de61559 100644 --- a/src/oci/fleet_apps_management/models/scheduler_job_dimension.py +++ b/src/oci/fleet_apps_management/models/scheduler_job_dimension.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/scheduler_job_summary.py b/src/oci/fleet_apps_management/models/scheduler_job_summary.py index aa033d2df1..a55235ebed 100644 --- a/src/oci/fleet_apps_management/models/scheduler_job_summary.py +++ b/src/oci/fleet_apps_management/models/scheduler_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/script_based_execution_details.py b/src/oci/fleet_apps_management/models/script_based_execution_details.py index 608d5566bc..1c84c941d7 100644 --- a/src/oci/fleet_apps_management/models/script_based_execution_details.py +++ b/src/oci/fleet_apps_management/models/script_based_execution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/selection_criteria.py b/src/oci/fleet_apps_management/models/selection_criteria.py index d6dca1b7ff..08da5b1521 100644 --- a/src/oci/fleet_apps_management/models/selection_criteria.py +++ b/src/oci/fleet_apps_management/models/selection_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/set_default_runbook_details.py b/src/oci/fleet_apps_management/models/set_default_runbook_details.py index 1858d2cab1..1585b4dea1 100644 --- a/src/oci/fleet_apps_management/models/set_default_runbook_details.py +++ b/src/oci/fleet_apps_management/models/set_default_runbook_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/step_based_user_action_details.py b/src/oci/fleet_apps_management/models/step_based_user_action_details.py index 7f691ea118..8bb4c2134f 100644 --- a/src/oci/fleet_apps_management/models/step_based_user_action_details.py +++ b/src/oci/fleet_apps_management/models/step_based_user_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/step_collection.py b/src/oci/fleet_apps_management/models/step_collection.py index f86d56fea1..a392fb3ffb 100644 --- a/src/oci/fleet_apps_management/models/step_collection.py +++ b/src/oci/fleet_apps_management/models/step_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/step_summary.py b/src/oci/fleet_apps_management/models/step_summary.py index 7005c4911a..0bcea3c5fe 100644 --- a/src/oci/fleet_apps_management/models/step_summary.py +++ b/src/oci/fleet_apps_management/models/step_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/string_input_argument.py b/src/oci/fleet_apps_management/models/string_input_argument.py index 2851f9458e..591215827a 100644 --- a/src/oci/fleet_apps_management/models/string_input_argument.py +++ b/src/oci/fleet_apps_management/models/string_input_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/target_credential_entity_specific_details.py b/src/oci/fleet_apps_management/models/target_credential_entity_specific_details.py index 33db321b34..d5556471bc 100644 --- a/src/oci/fleet_apps_management/models/target_credential_entity_specific_details.py +++ b/src/oci/fleet_apps_management/models/target_credential_entity_specific_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/target_resource.py b/src/oci/fleet_apps_management/models/target_resource.py index 4a2bb6e288..6dbcb4983f 100644 --- a/src/oci/fleet_apps_management/models/target_resource.py +++ b/src/oci/fleet_apps_management/models/target_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/task.py b/src/oci/fleet_apps_management/models/task.py index 600282aa97..51708a28ee 100644 --- a/src/oci/fleet_apps_management/models/task.py +++ b/src/oci/fleet_apps_management/models/task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/task_argument.py b/src/oci/fleet_apps_management/models/task_argument.py index 2b8f1f237f..709558e184 100644 --- a/src/oci/fleet_apps_management/models/task_argument.py +++ b/src/oci/fleet_apps_management/models/task_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/task_notification_preferences.py b/src/oci/fleet_apps_management/models/task_notification_preferences.py index c6969e5740..1c730a9852 100644 --- a/src/oci/fleet_apps_management/models/task_notification_preferences.py +++ b/src/oci/fleet_apps_management/models/task_notification_preferences.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/task_record.py b/src/oci/fleet_apps_management/models/task_record.py index 52cb0d3ecd..4b8e8dd4da 100644 --- a/src/oci/fleet_apps_management/models/task_record.py +++ b/src/oci/fleet_apps_management/models/task_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/task_record_collection.py b/src/oci/fleet_apps_management/models/task_record_collection.py index 6012023710..9832c78ac0 100644 --- a/src/oci/fleet_apps_management/models/task_record_collection.py +++ b/src/oci/fleet_apps_management/models/task_record_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/task_record_summary.py b/src/oci/fleet_apps_management/models/task_record_summary.py index 8c469fcdaf..26510c6323 100644 --- a/src/oci/fleet_apps_management/models/task_record_summary.py +++ b/src/oci/fleet_apps_management/models/task_record_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/task_variable.py b/src/oci/fleet_apps_management/models/task_variable.py index 3ea2dd712d..4ec4330b26 100644 --- a/src/oci/fleet_apps_management/models/task_variable.py +++ b/src/oci/fleet_apps_management/models/task_variable.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/time_based_pause_details.py b/src/oci/fleet_apps_management/models/time_based_pause_details.py index 39aa472d2e..8126628573 100644 --- a/src/oci/fleet_apps_management/models/time_based_pause_details.py +++ b/src/oci/fleet_apps_management/models/time_based_pause_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_compliance_policy_rule_details.py b/src/oci/fleet_apps_management/models/update_compliance_policy_rule_details.py index 98edbab958..a5a05ca665 100644 --- a/src/oci/fleet_apps_management/models/update_compliance_policy_rule_details.py +++ b/src/oci/fleet_apps_management/models/update_compliance_policy_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_fleet_credential_details.py b/src/oci/fleet_apps_management/models/update_fleet_credential_details.py index 3a10cad819..1c81aa0090 100644 --- a/src/oci/fleet_apps_management/models/update_fleet_credential_details.py +++ b/src/oci/fleet_apps_management/models/update_fleet_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_fleet_details.py b/src/oci/fleet_apps_management/models/update_fleet_details.py index dd0f419d91..da992220b9 100644 --- a/src/oci/fleet_apps_management/models/update_fleet_details.py +++ b/src/oci/fleet_apps_management/models/update_fleet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_fleet_property_details.py b/src/oci/fleet_apps_management/models/update_fleet_property_details.py index 994fa6049c..b0c25a2359 100644 --- a/src/oci/fleet_apps_management/models/update_fleet_property_details.py +++ b/src/oci/fleet_apps_management/models/update_fleet_property_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_fleet_resource_details.py b/src/oci/fleet_apps_management/models/update_fleet_resource_details.py index 672fa2cc67..72b8e2c622 100644 --- a/src/oci/fleet_apps_management/models/update_fleet_resource_details.py +++ b/src/oci/fleet_apps_management/models/update_fleet_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_maintenance_window_details.py b/src/oci/fleet_apps_management/models/update_maintenance_window_details.py index a3aa998925..ca420febd4 100644 --- a/src/oci/fleet_apps_management/models/update_maintenance_window_details.py +++ b/src/oci/fleet_apps_management/models/update_maintenance_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_onboarding_details.py b/src/oci/fleet_apps_management/models/update_onboarding_details.py index 331bc6a841..783837e88a 100644 --- a/src/oci/fleet_apps_management/models/update_onboarding_details.py +++ b/src/oci/fleet_apps_management/models/update_onboarding_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_patch_details.py b/src/oci/fleet_apps_management/models/update_patch_details.py index d7d583e960..8d953e2514 100644 --- a/src/oci/fleet_apps_management/models/update_patch_details.py +++ b/src/oci/fleet_apps_management/models/update_patch_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_platform_configuration_details.py b/src/oci/fleet_apps_management/models/update_platform_configuration_details.py index 892c09fad8..b2b02780d3 100644 --- a/src/oci/fleet_apps_management/models/update_platform_configuration_details.py +++ b/src/oci/fleet_apps_management/models/update_platform_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_property_details.py b/src/oci/fleet_apps_management/models/update_property_details.py index ca3601d451..f3c643712c 100644 --- a/src/oci/fleet_apps_management/models/update_property_details.py +++ b/src/oci/fleet_apps_management/models/update_property_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_runbook_details.py b/src/oci/fleet_apps_management/models/update_runbook_details.py index 8f677ebf29..b245bb40a6 100644 --- a/src/oci/fleet_apps_management/models/update_runbook_details.py +++ b/src/oci/fleet_apps_management/models/update_runbook_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_scheduler_definition_details.py b/src/oci/fleet_apps_management/models/update_scheduler_definition_details.py index d428dc5cd3..cce55ab87a 100644 --- a/src/oci/fleet_apps_management/models/update_scheduler_definition_details.py +++ b/src/oci/fleet_apps_management/models/update_scheduler_definition_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_scheduler_job_details.py b/src/oci/fleet_apps_management/models/update_scheduler_job_details.py index e240e6ccd8..1a804f282d 100644 --- a/src/oci/fleet_apps_management/models/update_scheduler_job_details.py +++ b/src/oci/fleet_apps_management/models/update_scheduler_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/update_task_record_details.py b/src/oci/fleet_apps_management/models/update_task_record_details.py index d940e0e6f2..65dc7ec43c 100644 --- a/src/oci/fleet_apps_management/models/update_task_record_details.py +++ b/src/oci/fleet_apps_management/models/update_task_record_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/user_action_based_pause_details.py b/src/oci/fleet_apps_management/models/user_action_based_pause_details.py index c4d9ba892f..5ba97cb379 100644 --- a/src/oci/fleet_apps_management/models/user_action_based_pause_details.py +++ b/src/oci/fleet_apps_management/models/user_action_based_pause_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/user_action_details.py b/src/oci/fleet_apps_management/models/user_action_details.py index 9cb718cd91..47dc0a3e9f 100644 --- a/src/oci/fleet_apps_management/models/user_action_details.py +++ b/src/oci/fleet_apps_management/models/user_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/variable.py b/src/oci/fleet_apps_management/models/variable.py index 54323027a3..ed9c8fc58e 100644 --- a/src/oci/fleet_apps_management/models/variable.py +++ b/src/oci/fleet_apps_management/models/variable.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/vault_secret_credential_details.py b/src/oci/fleet_apps_management/models/vault_secret_credential_details.py index 72ce6c75a7..318600ef6b 100644 --- a/src/oci/fleet_apps_management/models/vault_secret_credential_details.py +++ b/src/oci/fleet_apps_management/models/vault_secret_credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/work_request.py b/src/oci/fleet_apps_management/models/work_request.py index ccd4d65f16..f64ae23e88 100644 --- a/src/oci/fleet_apps_management/models/work_request.py +++ b/src/oci/fleet_apps_management/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/work_request_error.py b/src/oci/fleet_apps_management/models/work_request_error.py index 8f7d1bdbe8..569dc5a851 100644 --- a/src/oci/fleet_apps_management/models/work_request_error.py +++ b/src/oci/fleet_apps_management/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/work_request_error_collection.py b/src/oci/fleet_apps_management/models/work_request_error_collection.py index 15c6ba9a3f..69543b29d1 100644 --- a/src/oci/fleet_apps_management/models/work_request_error_collection.py +++ b/src/oci/fleet_apps_management/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/work_request_log_entry.py b/src/oci/fleet_apps_management/models/work_request_log_entry.py index e7b43b43eb..cff23789b4 100644 --- a/src/oci/fleet_apps_management/models/work_request_log_entry.py +++ b/src/oci/fleet_apps_management/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/work_request_log_entry_collection.py b/src/oci/fleet_apps_management/models/work_request_log_entry_collection.py index 7a88eb552b..4c84aafa90 100644 --- a/src/oci/fleet_apps_management/models/work_request_log_entry_collection.py +++ b/src/oci/fleet_apps_management/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/work_request_resource.py b/src/oci/fleet_apps_management/models/work_request_resource.py index f1fbf0e1d5..7b1f63ae90 100644 --- a/src/oci/fleet_apps_management/models/work_request_resource.py +++ b/src/oci/fleet_apps_management/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/work_request_summary.py b/src/oci/fleet_apps_management/models/work_request_summary.py index be4e1ac1c6..ea9d2aeb99 100644 --- a/src/oci/fleet_apps_management/models/work_request_summary.py +++ b/src/oci/fleet_apps_management/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/work_request_summary_collection.py b/src/oci/fleet_apps_management/models/work_request_summary_collection.py index d215047f4c..3eaea8b7f7 100644 --- a/src/oci/fleet_apps_management/models/work_request_summary_collection.py +++ b/src/oci/fleet_apps_management/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/workflow_component.py b/src/oci/fleet_apps_management/models/workflow_component.py index be01badf2b..00c3ba2016 100644 --- a/src/oci/fleet_apps_management/models/workflow_component.py +++ b/src/oci/fleet_apps_management/models/workflow_component.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/workflow_group.py b/src/oci/fleet_apps_management/models/workflow_group.py index 3fd6c2411d..1a1bcc937f 100644 --- a/src/oci/fleet_apps_management/models/workflow_group.py +++ b/src/oci/fleet_apps_management/models/workflow_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/workflow_group_component.py b/src/oci/fleet_apps_management/models/workflow_group_component.py index 8e8f92920a..9d8b19d634 100644 --- a/src/oci/fleet_apps_management/models/workflow_group_component.py +++ b/src/oci/fleet_apps_management/models/workflow_group_component.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_apps_management/models/workflow_task_component.py b/src/oci/fleet_apps_management/models/workflow_task_component.py index b3a32d072f..2d766b7da6 100644 --- a/src/oci/fleet_apps_management/models/workflow_task_component.py +++ b/src/oci/fleet_apps_management/models/workflow_task_component.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230831 diff --git a/src/oci/fleet_software_update/__init__.py b/src/oci/fleet_software_update/__init__.py index 4477eb4339..d970b3adca 100644 --- a/src/oci/fleet_software_update/__init__.py +++ b/src/oci/fleet_software_update/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/fleet_software_update_client.py b/src/oci/fleet_software_update/fleet_software_update_client.py index 684bc8b714..c6d9939391 100644 --- a/src/oci/fleet_software_update/fleet_software_update_client.py +++ b/src/oci/fleet_software_update/fleet_software_update_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/fleet_software_update_client_composite_operations.py b/src/oci/fleet_software_update/fleet_software_update_client_composite_operations.py index 9f3257a895..a80a8d689c 100644 --- a/src/oci/fleet_software_update/fleet_software_update_client_composite_operations.py +++ b/src/oci/fleet_software_update/fleet_software_update_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/__init__.py b/src/oci/fleet_software_update/models/__init__.py index eda78e6ebb..86e5ddd204 100644 --- a/src/oci/fleet_software_update/models/__init__.py +++ b/src/oci/fleet_software_update/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/active_cycle_details.py b/src/oci/fleet_software_update/models/active_cycle_details.py index 2ed7c59ef5..bca3a0dd2f 100644 --- a/src/oci/fleet_software_update/models/active_cycle_details.py +++ b/src/oci/fleet_software_update/models/active_cycle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/add_fsu_collection_targets_details.py b/src/oci/fleet_software_update/models/add_fsu_collection_targets_details.py index 0cfbd017f4..5b24ba049a 100644 --- a/src/oci/fleet_software_update/models/add_fsu_collection_targets_details.py +++ b/src/oci/fleet_software_update/models/add_fsu_collection_targets_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/apply_action.py b/src/oci/fleet_software_update/models/apply_action.py index 36ab76e2b4..896095a3d1 100644 --- a/src/oci/fleet_software_update/models/apply_action.py +++ b/src/oci/fleet_software_update/models/apply_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/apply_action_summary.py b/src/oci/fleet_software_update/models/apply_action_summary.py index a68bfc2229..5535c099f1 100644 --- a/src/oci/fleet_software_update/models/apply_action_summary.py +++ b/src/oci/fleet_software_update/models/apply_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/apply_fsu_job.py b/src/oci/fleet_software_update/models/apply_fsu_job.py index 67503ab89c..29cebb1527 100644 --- a/src/oci/fleet_software_update/models/apply_fsu_job.py +++ b/src/oci/fleet_software_update/models/apply_fsu_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/apply_fsu_job_summary.py b/src/oci/fleet_software_update/models/apply_fsu_job_summary.py index f488e68f60..b65d1e0736 100644 --- a/src/oci/fleet_software_update/models/apply_fsu_job_summary.py +++ b/src/oci/fleet_software_update/models/apply_fsu_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/batching_strategy_details.py b/src/oci/fleet_software_update/models/batching_strategy_details.py index cd442e6674..963a0c2c04 100644 --- a/src/oci/fleet_software_update/models/batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/change_fsu_action_compartment_details.py b/src/oci/fleet_software_update/models/change_fsu_action_compartment_details.py index f2d17916dd..2c4d8a6109 100644 --- a/src/oci/fleet_software_update/models/change_fsu_action_compartment_details.py +++ b/src/oci/fleet_software_update/models/change_fsu_action_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/change_fsu_collection_compartment_details.py b/src/oci/fleet_software_update/models/change_fsu_collection_compartment_details.py index fd3f279906..afd9ba1606 100644 --- a/src/oci/fleet_software_update/models/change_fsu_collection_compartment_details.py +++ b/src/oci/fleet_software_update/models/change_fsu_collection_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/change_fsu_cycle_compartment_details.py b/src/oci/fleet_software_update/models/change_fsu_cycle_compartment_details.py index 9b433e0fa7..c2e9f8224d 100644 --- a/src/oci/fleet_software_update/models/change_fsu_cycle_compartment_details.py +++ b/src/oci/fleet_software_update/models/change_fsu_cycle_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/change_fsu_discovery_compartment_details.py b/src/oci/fleet_software_update/models/change_fsu_discovery_compartment_details.py index 1c45fcdbe7..a47721952f 100644 --- a/src/oci/fleet_software_update/models/change_fsu_discovery_compartment_details.py +++ b/src/oci/fleet_software_update/models/change_fsu_discovery_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/cleanup_action.py b/src/oci/fleet_software_update/models/cleanup_action.py index 2aced88c65..bfa6d38f9e 100644 --- a/src/oci/fleet_software_update/models/cleanup_action.py +++ b/src/oci/fleet_software_update/models/cleanup_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/cleanup_action_summary.py b/src/oci/fleet_software_update/models/cleanup_action_summary.py index 404089aed4..6830bd5f27 100644 --- a/src/oci/fleet_software_update/models/cleanup_action_summary.py +++ b/src/oci/fleet_software_update/models/cleanup_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/cleanup_fsu_job.py b/src/oci/fleet_software_update/models/cleanup_fsu_job.py index 1e1588f09d..98418890d1 100644 --- a/src/oci/fleet_software_update/models/cleanup_fsu_job.py +++ b/src/oci/fleet_software_update/models/cleanup_fsu_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/cleanup_fsu_job_summary.py b/src/oci/fleet_software_update/models/cleanup_fsu_job_summary.py index 062f89911c..67af565986 100644 --- a/src/oci/fleet_software_update/models/cleanup_fsu_job_summary.py +++ b/src/oci/fleet_software_update/models/cleanup_fsu_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/clone_fsu_cycle_details.py b/src/oci/fleet_software_update/models/clone_fsu_cycle_details.py index 73a16b1953..059c68042a 100644 --- a/src/oci/fleet_software_update/models/clone_fsu_cycle_details.py +++ b/src/oci/fleet_software_update/models/clone_fsu_cycle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/cloud_vm_cluster_target_summary.py b/src/oci/fleet_software_update/models/cloud_vm_cluster_target_summary.py index 8b101e76e6..0cbf99dfce 100644 --- a/src/oci/fleet_software_update/models/cloud_vm_cluster_target_summary.py +++ b/src/oci/fleet_software_update/models/cloud_vm_cluster_target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_apply_action_details.py b/src/oci/fleet_software_update/models/create_apply_action_details.py index a07541f088..4fcb92b1bf 100644 --- a/src/oci/fleet_software_update/models/create_apply_action_details.py +++ b/src/oci/fleet_software_update/models/create_apply_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_batching_strategy_details.py b/src/oci/fleet_software_update/models/create_batching_strategy_details.py index 18a959e3d8..e0fe863460 100644 --- a/src/oci/fleet_software_update/models/create_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/create_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_cleanup_action_details.py b/src/oci/fleet_software_update/models/create_cleanup_action_details.py index 1b1d49050b..3f306d45a7 100644 --- a/src/oci/fleet_software_update/models/create_cleanup_action_details.py +++ b/src/oci/fleet_software_update/models/create_cleanup_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_db_fsu_collection_details.py b/src/oci/fleet_software_update/models/create_db_fsu_collection_details.py index 597ad55bfb..75771104cb 100644 --- a/src/oci/fleet_software_update/models/create_db_fsu_collection_details.py +++ b/src/oci/fleet_software_update/models/create_db_fsu_collection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_fifty_fifty_batching_strategy_details.py b/src/oci/fleet_software_update/models/create_fifty_fifty_batching_strategy_details.py index 6b69f98288..30a0577490 100644 --- a/src/oci/fleet_software_update/models/create_fifty_fifty_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/create_fifty_fifty_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_fsu_action_details.py b/src/oci/fleet_software_update/models/create_fsu_action_details.py index 4088f231d9..2edde6f444 100644 --- a/src/oci/fleet_software_update/models/create_fsu_action_details.py +++ b/src/oci/fleet_software_update/models/create_fsu_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_fsu_collection_details.py b/src/oci/fleet_software_update/models/create_fsu_collection_details.py index c61805b923..05123c3e0e 100644 --- a/src/oci/fleet_software_update/models/create_fsu_collection_details.py +++ b/src/oci/fleet_software_update/models/create_fsu_collection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_fsu_cycle_details.py b/src/oci/fleet_software_update/models/create_fsu_cycle_details.py index 2ea6c1bdbb..10f52a1552 100644 --- a/src/oci/fleet_software_update/models/create_fsu_cycle_details.py +++ b/src/oci/fleet_software_update/models/create_fsu_cycle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_fsu_discovery_details.py b/src/oci/fleet_software_update/models/create_fsu_discovery_details.py index 41bab00d63..6c5a6f96c2 100644 --- a/src/oci/fleet_software_update/models/create_fsu_discovery_details.py +++ b/src/oci/fleet_software_update/models/create_fsu_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_gi_fsu_collection_details.py b/src/oci/fleet_software_update/models/create_gi_fsu_collection_details.py index 92b9d931b9..e56408bf4c 100644 --- a/src/oci/fleet_software_update/models/create_gi_fsu_collection_details.py +++ b/src/oci/fleet_software_update/models/create_gi_fsu_collection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_non_rolling_batching_strategy_details.py b/src/oci/fleet_software_update/models/create_non_rolling_batching_strategy_details.py index d63bc94ceb..09f96fc84a 100644 --- a/src/oci/fleet_software_update/models/create_non_rolling_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/create_non_rolling_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_patch_fsu_cycle.py b/src/oci/fleet_software_update/models/create_patch_fsu_cycle.py index 38b1679c72..4089bf31b7 100644 --- a/src/oci/fleet_software_update/models/create_patch_fsu_cycle.py +++ b/src/oci/fleet_software_update/models/create_patch_fsu_cycle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_precheck_action_details.py b/src/oci/fleet_software_update/models/create_precheck_action_details.py index e33123b8e1..740c13dd8a 100644 --- a/src/oci/fleet_software_update/models/create_precheck_action_details.py +++ b/src/oci/fleet_software_update/models/create_precheck_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_rollback_action_details.py b/src/oci/fleet_software_update/models/create_rollback_action_details.py index 1599dee542..f6d6c5e861 100644 --- a/src/oci/fleet_software_update/models/create_rollback_action_details.py +++ b/src/oci/fleet_software_update/models/create_rollback_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_rollback_cycle_apply_action_details.py b/src/oci/fleet_software_update/models/create_rollback_cycle_apply_action_details.py index 28b32e9a08..13f2080e17 100644 --- a/src/oci/fleet_software_update/models/create_rollback_cycle_apply_action_details.py +++ b/src/oci/fleet_software_update/models/create_rollback_cycle_apply_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_schedule_details.py b/src/oci/fleet_software_update/models/create_schedule_details.py index d231fbcccc..4d50f53b0d 100644 --- a/src/oci/fleet_software_update/models/create_schedule_details.py +++ b/src/oci/fleet_software_update/models/create_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_sequential_batching_strategy_details.py b/src/oci/fleet_software_update/models/create_sequential_batching_strategy_details.py index 381e4a5c77..f349d8df8a 100644 --- a/src/oci/fleet_software_update/models/create_sequential_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/create_sequential_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_service_availability_factor_batching_strategy_details.py b/src/oci/fleet_software_update/models/create_service_availability_factor_batching_strategy_details.py index 06b45e31d2..990699fd3a 100644 --- a/src/oci/fleet_software_update/models/create_service_availability_factor_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/create_service_availability_factor_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_stage_action_details.py b/src/oci/fleet_software_update/models/create_stage_action_details.py index 04712db1f8..b5fd6550bb 100644 --- a/src/oci/fleet_software_update/models/create_stage_action_details.py +++ b/src/oci/fleet_software_update/models/create_stage_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/create_start_time_schedule_details.py b/src/oci/fleet_software_update/models/create_start_time_schedule_details.py index 8d24b55acc..4cae42a68e 100644 --- a/src/oci/fleet_software_update/models/create_start_time_schedule_details.py +++ b/src/oci/fleet_software_update/models/create_start_time_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/database_target_summary.py b/src/oci/fleet_software_update/models/database_target_summary.py index c21e2a33fb..3482d0fff9 100644 --- a/src/oci/fleet_software_update/models/database_target_summary.py +++ b/src/oci/fleet_software_update/models/database_target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_collection.py b/src/oci/fleet_software_update/models/db_collection.py index 082de250a7..e22b2bef46 100644 --- a/src/oci/fleet_software_update/models/db_collection.py +++ b/src/oci/fleet_software_update/models/db_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_compartment_id_filter.py b/src/oci/fleet_software_update/models/db_compartment_id_filter.py index 970da086d9..26481d6315 100644 --- a/src/oci/fleet_software_update/models/db_compartment_id_filter.py +++ b/src/oci/fleet_software_update/models/db_compartment_id_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_defined_tags_filter.py b/src/oci/fleet_software_update/models/db_defined_tags_filter.py index 303502876b..1d32de7b85 100644 --- a/src/oci/fleet_software_update/models/db_defined_tags_filter.py +++ b/src/oci/fleet_software_update/models/db_defined_tags_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_discovery_details.py b/src/oci/fleet_software_update/models/db_discovery_details.py index dbc7b90260..01b3ae13a2 100644 --- a/src/oci/fleet_software_update/models/db_discovery_details.py +++ b/src/oci/fleet_software_update/models/db_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_discovery_results.py b/src/oci/fleet_software_update/models/db_discovery_results.py index 142c0e9b70..93fbb42ebf 100644 --- a/src/oci/fleet_software_update/models/db_discovery_results.py +++ b/src/oci/fleet_software_update/models/db_discovery_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_filters_discovery.py b/src/oci/fleet_software_update/models/db_filters_discovery.py index 36b0a0bd98..8a076079b2 100644 --- a/src/oci/fleet_software_update/models/db_filters_discovery.py +++ b/src/oci/fleet_software_update/models/db_filters_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_fleet_discovery_details.py b/src/oci/fleet_software_update/models/db_fleet_discovery_details.py index b23f43405a..a0ba60c5ef 100644 --- a/src/oci/fleet_software_update/models/db_fleet_discovery_details.py +++ b/src/oci/fleet_software_update/models/db_fleet_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_fleet_discovery_filter.py b/src/oci/fleet_software_update/models/db_fleet_discovery_filter.py index 71f4db8da2..b40241c695 100644 --- a/src/oci/fleet_software_update/models/db_fleet_discovery_filter.py +++ b/src/oci/fleet_software_update/models/db_fleet_discovery_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_freeform_tags_filter.py b/src/oci/fleet_software_update/models/db_freeform_tags_filter.py index 70d146e404..e6b456b07c 100644 --- a/src/oci/fleet_software_update/models/db_freeform_tags_filter.py +++ b/src/oci/fleet_software_update/models/db_freeform_tags_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_fsu_collection_summary.py b/src/oci/fleet_software_update/models/db_fsu_collection_summary.py index 707ad4107c..0b9481a571 100644 --- a/src/oci/fleet_software_update/models/db_fsu_collection_summary.py +++ b/src/oci/fleet_software_update/models/db_fsu_collection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_home_name_filter.py b/src/oci/fleet_software_update/models/db_home_name_filter.py index aca05af6d5..bca850e3a3 100644 --- a/src/oci/fleet_software_update/models/db_home_name_filter.py +++ b/src/oci/fleet_software_update/models/db_home_name_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_name_filter.py b/src/oci/fleet_software_update/models/db_name_filter.py index ef58bf4c0c..f55b1a14ff 100644 --- a/src/oci/fleet_software_update/models/db_name_filter.py +++ b/src/oci/fleet_software_update/models/db_name_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_resource_id_filter.py b/src/oci/fleet_software_update/models/db_resource_id_filter.py index a60c340c15..c49699baa4 100644 --- a/src/oci/fleet_software_update/models/db_resource_id_filter.py +++ b/src/oci/fleet_software_update/models/db_resource_id_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_search_query_discovery.py b/src/oci/fleet_software_update/models/db_search_query_discovery.py index f42c47372e..1b148748c0 100644 --- a/src/oci/fleet_software_update/models/db_search_query_discovery.py +++ b/src/oci/fleet_software_update/models/db_search_query_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_target_list_discovery.py b/src/oci/fleet_software_update/models/db_target_list_discovery.py index b03f2fefe2..74ead75b20 100644 --- a/src/oci/fleet_software_update/models/db_target_list_discovery.py +++ b/src/oci/fleet_software_update/models/db_target_list_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_unique_name_filter.py b/src/oci/fleet_software_update/models/db_unique_name_filter.py index 64a57d011d..4e2f649396 100644 --- a/src/oci/fleet_software_update/models/db_unique_name_filter.py +++ b/src/oci/fleet_software_update/models/db_unique_name_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/db_version_filter.py b/src/oci/fleet_software_update/models/db_version_filter.py index 58640f8a41..489057b16f 100644 --- a/src/oci/fleet_software_update/models/db_version_filter.py +++ b/src/oci/fleet_software_update/models/db_version_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/defined_tag_filter_entry.py b/src/oci/fleet_software_update/models/defined_tag_filter_entry.py index ab7be1a9f5..133778c9bd 100644 --- a/src/oci/fleet_software_update/models/defined_tag_filter_entry.py +++ b/src/oci/fleet_software_update/models/defined_tag_filter_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/diagnostics_collection_details.py b/src/oci/fleet_software_update/models/diagnostics_collection_details.py index 3f687dae4d..a10c2d796d 100644 --- a/src/oci/fleet_software_update/models/diagnostics_collection_details.py +++ b/src/oci/fleet_software_update/models/diagnostics_collection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/discovery_details.py b/src/oci/fleet_software_update/models/discovery_details.py index fff0c7b911..cd9fca700d 100644 --- a/src/oci/fleet_software_update/models/discovery_details.py +++ b/src/oci/fleet_software_update/models/discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/discovery_details_summary.py b/src/oci/fleet_software_update/models/discovery_details_summary.py index dce21cef0f..ce004c7613 100644 --- a/src/oci/fleet_software_update/models/discovery_details_summary.py +++ b/src/oci/fleet_software_update/models/discovery_details_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/failed_jobs_rollback_details.py b/src/oci/fleet_software_update/models/failed_jobs_rollback_details.py index e9e2a55ff1..2edda33742 100644 --- a/src/oci/fleet_software_update/models/failed_jobs_rollback_details.py +++ b/src/oci/fleet_software_update/models/failed_jobs_rollback_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fifty_fifty_batching_strategy_details.py b/src/oci/fleet_software_update/models/fifty_fifty_batching_strategy_details.py index cf232d7197..3be019b482 100644 --- a/src/oci/fleet_software_update/models/fifty_fifty_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/fifty_fifty_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/freeform_tag_filter_entry.py b/src/oci/fleet_software_update/models/freeform_tag_filter_entry.py index 03ce95aa42..82dc6d7937 100644 --- a/src/oci/fleet_software_update/models/freeform_tag_filter_entry.py +++ b/src/oci/fleet_software_update/models/freeform_tag_filter_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_action.py b/src/oci/fleet_software_update/models/fsu_action.py index 65c4680b5d..0ee5532d8c 100644 --- a/src/oci/fleet_software_update/models/fsu_action.py +++ b/src/oci/fleet_software_update/models/fsu_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_action_progress_details.py b/src/oci/fleet_software_update/models/fsu_action_progress_details.py index 170ed14df9..40a4c90b35 100644 --- a/src/oci/fleet_software_update/models/fsu_action_progress_details.py +++ b/src/oci/fleet_software_update/models/fsu_action_progress_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_action_summary.py b/src/oci/fleet_software_update/models/fsu_action_summary.py index a8d2343d97..86596ccd2b 100644 --- a/src/oci/fleet_software_update/models/fsu_action_summary.py +++ b/src/oci/fleet_software_update/models/fsu_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_action_summary_collection.py b/src/oci/fleet_software_update/models/fsu_action_summary_collection.py index 23cc7ae0e3..05dde0085a 100644 --- a/src/oci/fleet_software_update/models/fsu_action_summary_collection.py +++ b/src/oci/fleet_software_update/models/fsu_action_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_collection.py b/src/oci/fleet_software_update/models/fsu_collection.py index f250e43ade..e2de7243b5 100644 --- a/src/oci/fleet_software_update/models/fsu_collection.py +++ b/src/oci/fleet_software_update/models/fsu_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_collection_summary.py b/src/oci/fleet_software_update/models/fsu_collection_summary.py index 427c581a12..c88c5bd525 100644 --- a/src/oci/fleet_software_update/models/fsu_collection_summary.py +++ b/src/oci/fleet_software_update/models/fsu_collection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_collection_summary_collection.py b/src/oci/fleet_software_update/models/fsu_collection_summary_collection.py index f1abd23636..1c9fe5f1b9 100644 --- a/src/oci/fleet_software_update/models/fsu_collection_summary_collection.py +++ b/src/oci/fleet_software_update/models/fsu_collection_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_collection_target.py b/src/oci/fleet_software_update/models/fsu_collection_target.py index d67bbbfa9b..6c5a8de4ad 100644 --- a/src/oci/fleet_software_update/models/fsu_collection_target.py +++ b/src/oci/fleet_software_update/models/fsu_collection_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_cycle.py b/src/oci/fleet_software_update/models/fsu_cycle.py index c282e778a4..b6b862b806 100644 --- a/src/oci/fleet_software_update/models/fsu_cycle.py +++ b/src/oci/fleet_software_update/models/fsu_cycle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_cycle_summary.py b/src/oci/fleet_software_update/models/fsu_cycle_summary.py index b5fad6e274..8f120633b9 100644 --- a/src/oci/fleet_software_update/models/fsu_cycle_summary.py +++ b/src/oci/fleet_software_update/models/fsu_cycle_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_cycle_summary_collection.py b/src/oci/fleet_software_update/models/fsu_cycle_summary_collection.py index 6c397d0ff5..c4cec1decf 100644 --- a/src/oci/fleet_software_update/models/fsu_cycle_summary_collection.py +++ b/src/oci/fleet_software_update/models/fsu_cycle_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_discovery.py b/src/oci/fleet_software_update/models/fsu_discovery.py index 1e14abf714..5a064cdff3 100644 --- a/src/oci/fleet_software_update/models/fsu_discovery.py +++ b/src/oci/fleet_software_update/models/fsu_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_discovery_summary.py b/src/oci/fleet_software_update/models/fsu_discovery_summary.py index 10547ea2af..c5886597a7 100644 --- a/src/oci/fleet_software_update/models/fsu_discovery_summary.py +++ b/src/oci/fleet_software_update/models/fsu_discovery_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_discovery_summary_collection.py b/src/oci/fleet_software_update/models/fsu_discovery_summary_collection.py index 57a755ec0e..1243427d70 100644 --- a/src/oci/fleet_software_update/models/fsu_discovery_summary_collection.py +++ b/src/oci/fleet_software_update/models/fsu_discovery_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_goal_version_details.py b/src/oci/fleet_software_update/models/fsu_goal_version_details.py index 65f87bdfcb..b7c575e622 100644 --- a/src/oci/fleet_software_update/models/fsu_goal_version_details.py +++ b/src/oci/fleet_software_update/models/fsu_goal_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_job.py b/src/oci/fleet_software_update/models/fsu_job.py index 95c98dd479..bfa44885ab 100644 --- a/src/oci/fleet_software_update/models/fsu_job.py +++ b/src/oci/fleet_software_update/models/fsu_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_job_collection.py b/src/oci/fleet_software_update/models/fsu_job_collection.py index 8fddec24c3..f64f37da48 100644 --- a/src/oci/fleet_software_update/models/fsu_job_collection.py +++ b/src/oci/fleet_software_update/models/fsu_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_job_output_summary.py b/src/oci/fleet_software_update/models/fsu_job_output_summary.py index b011dd3304..8e70c26283 100644 --- a/src/oci/fleet_software_update/models/fsu_job_output_summary.py +++ b/src/oci/fleet_software_update/models/fsu_job_output_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_job_output_summary_collection.py b/src/oci/fleet_software_update/models/fsu_job_output_summary_collection.py index d8571e5bca..fcfbbc80e6 100644 --- a/src/oci/fleet_software_update/models/fsu_job_output_summary_collection.py +++ b/src/oci/fleet_software_update/models/fsu_job_output_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/fsu_job_summary.py b/src/oci/fleet_software_update/models/fsu_job_summary.py index 9af7543d93..6a12492901 100644 --- a/src/oci/fleet_software_update/models/fsu_job_summary.py +++ b/src/oci/fleet_software_update/models/fsu_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_collection.py b/src/oci/fleet_software_update/models/gi_collection.py index 78faaf0bfd..3c40083315 100644 --- a/src/oci/fleet_software_update/models/gi_collection.py +++ b/src/oci/fleet_software_update/models/gi_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_compartment_id_filter.py b/src/oci/fleet_software_update/models/gi_compartment_id_filter.py index 731cbfed9f..f885367f1a 100644 --- a/src/oci/fleet_software_update/models/gi_compartment_id_filter.py +++ b/src/oci/fleet_software_update/models/gi_compartment_id_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_defined_tags_filter.py b/src/oci/fleet_software_update/models/gi_defined_tags_filter.py index dd947c7243..3d772125fe 100644 --- a/src/oci/fleet_software_update/models/gi_defined_tags_filter.py +++ b/src/oci/fleet_software_update/models/gi_defined_tags_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_discovery_details.py b/src/oci/fleet_software_update/models/gi_discovery_details.py index 98db21307f..7d278351ee 100644 --- a/src/oci/fleet_software_update/models/gi_discovery_details.py +++ b/src/oci/fleet_software_update/models/gi_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_discovery_results.py b/src/oci/fleet_software_update/models/gi_discovery_results.py index d574fe45dd..9e821d8c04 100644 --- a/src/oci/fleet_software_update/models/gi_discovery_results.py +++ b/src/oci/fleet_software_update/models/gi_discovery_results.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_filters_discovery.py b/src/oci/fleet_software_update/models/gi_filters_discovery.py index 85f230009b..52fe34931f 100644 --- a/src/oci/fleet_software_update/models/gi_filters_discovery.py +++ b/src/oci/fleet_software_update/models/gi_filters_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_fleet_discovery_details.py b/src/oci/fleet_software_update/models/gi_fleet_discovery_details.py index 55bba7dec1..438debef51 100644 --- a/src/oci/fleet_software_update/models/gi_fleet_discovery_details.py +++ b/src/oci/fleet_software_update/models/gi_fleet_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_fleet_discovery_filter.py b/src/oci/fleet_software_update/models/gi_fleet_discovery_filter.py index 6d60c0f2dc..023843a5e8 100644 --- a/src/oci/fleet_software_update/models/gi_fleet_discovery_filter.py +++ b/src/oci/fleet_software_update/models/gi_fleet_discovery_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_freeform_tags_filter.py b/src/oci/fleet_software_update/models/gi_freeform_tags_filter.py index 70d7214a20..568ec7d388 100644 --- a/src/oci/fleet_software_update/models/gi_freeform_tags_filter.py +++ b/src/oci/fleet_software_update/models/gi_freeform_tags_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_fsu_collection_summary.py b/src/oci/fleet_software_update/models/gi_fsu_collection_summary.py index eb5ec85599..047aef64cd 100644 --- a/src/oci/fleet_software_update/models/gi_fsu_collection_summary.py +++ b/src/oci/fleet_software_update/models/gi_fsu_collection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_resource_id_filter.py b/src/oci/fleet_software_update/models/gi_resource_id_filter.py index 33c9217922..1708c6bc72 100644 --- a/src/oci/fleet_software_update/models/gi_resource_id_filter.py +++ b/src/oci/fleet_software_update/models/gi_resource_id_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_search_query_discovery.py b/src/oci/fleet_software_update/models/gi_search_query_discovery.py index 4af8cae7a5..e650e0211b 100644 --- a/src/oci/fleet_software_update/models/gi_search_query_discovery.py +++ b/src/oci/fleet_software_update/models/gi_search_query_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_target_list_discovery.py b/src/oci/fleet_software_update/models/gi_target_list_discovery.py index f9626fd88e..28b0c454fc 100644 --- a/src/oci/fleet_software_update/models/gi_target_list_discovery.py +++ b/src/oci/fleet_software_update/models/gi_target_list_discovery.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/gi_version_filter.py b/src/oci/fleet_software_update/models/gi_version_filter.py index 1dd2b5c14b..ff4b247726 100644 --- a/src/oci/fleet_software_update/models/gi_version_filter.py +++ b/src/oci/fleet_software_update/models/gi_version_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/image_id_fsu_target_details.py b/src/oci/fleet_software_update/models/image_id_fsu_target_details.py index 6206fb1377..bdbd865c1a 100644 --- a/src/oci/fleet_software_update/models/image_id_fsu_target_details.py +++ b/src/oci/fleet_software_update/models/image_id_fsu_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/job_progress.py b/src/oci/fleet_software_update/models/job_progress.py index 0d4403281b..09776045c7 100644 --- a/src/oci/fleet_software_update/models/job_progress.py +++ b/src/oci/fleet_software_update/models/job_progress.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/job_progress_details.py b/src/oci/fleet_software_update/models/job_progress_details.py index a7b3ce0e02..321936ac3e 100644 --- a/src/oci/fleet_software_update/models/job_progress_details.py +++ b/src/oci/fleet_software_update/models/job_progress_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/list_of_targets_rollback_details.py b/src/oci/fleet_software_update/models/list_of_targets_rollback_details.py index e7e7f22e3b..40665f25d6 100644 --- a/src/oci/fleet_software_update/models/list_of_targets_rollback_details.py +++ b/src/oci/fleet_software_update/models/list_of_targets_rollback_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/next_action_to_execute_details.py b/src/oci/fleet_software_update/models/next_action_to_execute_details.py index 4e48d6a835..48aeca5c06 100644 --- a/src/oci/fleet_software_update/models/next_action_to_execute_details.py +++ b/src/oci/fleet_software_update/models/next_action_to_execute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/non_rolling_batching_strategy_details.py b/src/oci/fleet_software_update/models/non_rolling_batching_strategy_details.py index 7fc8f62e5c..34aa10feae 100644 --- a/src/oci/fleet_software_update/models/non_rolling_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/non_rolling_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/none_batching_strategy_details.py b/src/oci/fleet_software_update/models/none_batching_strategy_details.py index 77bc52fdc6..9a40289b72 100644 --- a/src/oci/fleet_software_update/models/none_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/none_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/none_schedule_details.py b/src/oci/fleet_software_update/models/none_schedule_details.py index 78d2ce8d9f..b4045e741f 100644 --- a/src/oci/fleet_software_update/models/none_schedule_details.py +++ b/src/oci/fleet_software_update/models/none_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/patch_fsu_cycle.py b/src/oci/fleet_software_update/models/patch_fsu_cycle.py index e723e34886..c496e747ac 100644 --- a/src/oci/fleet_software_update/models/patch_fsu_cycle.py +++ b/src/oci/fleet_software_update/models/patch_fsu_cycle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/precheck_action.py b/src/oci/fleet_software_update/models/precheck_action.py index 920786b7ae..3050d33b12 100644 --- a/src/oci/fleet_software_update/models/precheck_action.py +++ b/src/oci/fleet_software_update/models/precheck_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/precheck_action_summary.py b/src/oci/fleet_software_update/models/precheck_action_summary.py index d8e69aedfa..823479fd02 100644 --- a/src/oci/fleet_software_update/models/precheck_action_summary.py +++ b/src/oci/fleet_software_update/models/precheck_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/precheck_fsu_job.py b/src/oci/fleet_software_update/models/precheck_fsu_job.py index 90ef2bcb65..ac67eaafd6 100644 --- a/src/oci/fleet_software_update/models/precheck_fsu_job.py +++ b/src/oci/fleet_software_update/models/precheck_fsu_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/precheck_fsu_job_summary.py b/src/oci/fleet_software_update/models/precheck_fsu_job_summary.py index 3a777c6a33..c3899ce74b 100644 --- a/src/oci/fleet_software_update/models/precheck_fsu_job_summary.py +++ b/src/oci/fleet_software_update/models/precheck_fsu_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/remove_fsu_collection_targets_details.py b/src/oci/fleet_software_update/models/remove_fsu_collection_targets_details.py index 2115ce804e..5061050936 100644 --- a/src/oci/fleet_software_update/models/remove_fsu_collection_targets_details.py +++ b/src/oci/fleet_software_update/models/remove_fsu_collection_targets_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/rollback_action.py b/src/oci/fleet_software_update/models/rollback_action.py index 6aae701933..3953bdf9cb 100644 --- a/src/oci/fleet_software_update/models/rollback_action.py +++ b/src/oci/fleet_software_update/models/rollback_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/rollback_action_summary.py b/src/oci/fleet_software_update/models/rollback_action_summary.py index 23e173334f..b84855dd83 100644 --- a/src/oci/fleet_software_update/models/rollback_action_summary.py +++ b/src/oci/fleet_software_update/models/rollback_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/rollback_cycle_action.py b/src/oci/fleet_software_update/models/rollback_cycle_action.py index 80165320dd..aadcc64dfb 100644 --- a/src/oci/fleet_software_update/models/rollback_cycle_action.py +++ b/src/oci/fleet_software_update/models/rollback_cycle_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/rollback_cycle_action_summary.py b/src/oci/fleet_software_update/models/rollback_cycle_action_summary.py index e31066bc76..49ac635e59 100644 --- a/src/oci/fleet_software_update/models/rollback_cycle_action_summary.py +++ b/src/oci/fleet_software_update/models/rollback_cycle_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/rollback_cycle_fsu_job.py b/src/oci/fleet_software_update/models/rollback_cycle_fsu_job.py index a45cd83748..070c4bc12f 100644 --- a/src/oci/fleet_software_update/models/rollback_cycle_fsu_job.py +++ b/src/oci/fleet_software_update/models/rollback_cycle_fsu_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/rollback_cycle_fsu_job_summary.py b/src/oci/fleet_software_update/models/rollback_cycle_fsu_job_summary.py index b886e2ecfe..0b0ff1d22f 100644 --- a/src/oci/fleet_software_update/models/rollback_cycle_fsu_job_summary.py +++ b/src/oci/fleet_software_update/models/rollback_cycle_fsu_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/rollback_details.py b/src/oci/fleet_software_update/models/rollback_details.py index 5bbb0ab44b..a69c3c7ca8 100644 --- a/src/oci/fleet_software_update/models/rollback_details.py +++ b/src/oci/fleet_software_update/models/rollback_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/rollback_fsu_job.py b/src/oci/fleet_software_update/models/rollback_fsu_job.py index 0cc77e9267..500d635773 100644 --- a/src/oci/fleet_software_update/models/rollback_fsu_job.py +++ b/src/oci/fleet_software_update/models/rollback_fsu_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/rollback_fsu_job_summary.py b/src/oci/fleet_software_update/models/rollback_fsu_job_summary.py index fe1582502b..f8dda198dd 100644 --- a/src/oci/fleet_software_update/models/rollback_fsu_job_summary.py +++ b/src/oci/fleet_software_update/models/rollback_fsu_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/schedule_details.py b/src/oci/fleet_software_update/models/schedule_details.py index cf812f1708..148d905cda 100644 --- a/src/oci/fleet_software_update/models/schedule_details.py +++ b/src/oci/fleet_software_update/models/schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/sequential_batching_strategy_details.py b/src/oci/fleet_software_update/models/sequential_batching_strategy_details.py index 9dd172342d..b2391c0fff 100644 --- a/src/oci/fleet_software_update/models/sequential_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/sequential_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/service_availability_factor_batching_strategy_details.py b/src/oci/fleet_software_update/models/service_availability_factor_batching_strategy_details.py index ace86de1eb..a6cdb09f08 100644 --- a/src/oci/fleet_software_update/models/service_availability_factor_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/service_availability_factor_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/stage_action.py b/src/oci/fleet_software_update/models/stage_action.py index f2822b2372..a1640c22c5 100644 --- a/src/oci/fleet_software_update/models/stage_action.py +++ b/src/oci/fleet_software_update/models/stage_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/stage_action_summary.py b/src/oci/fleet_software_update/models/stage_action_summary.py index 4d89d0c2eb..626e5ea910 100644 --- a/src/oci/fleet_software_update/models/stage_action_summary.py +++ b/src/oci/fleet_software_update/models/stage_action_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/stage_fsu_job.py b/src/oci/fleet_software_update/models/stage_fsu_job.py index 527d49ba69..c70cfde4c3 100644 --- a/src/oci/fleet_software_update/models/stage_fsu_job.py +++ b/src/oci/fleet_software_update/models/stage_fsu_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/stage_fsu_job_summary.py b/src/oci/fleet_software_update/models/stage_fsu_job_summary.py index 93800576ec..1dad8ce171 100644 --- a/src/oci/fleet_software_update/models/stage_fsu_job_summary.py +++ b/src/oci/fleet_software_update/models/stage_fsu_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/start_time_schedule_details.py b/src/oci/fleet_software_update/models/start_time_schedule_details.py index fe159f24ff..02ab655007 100644 --- a/src/oci/fleet_software_update/models/start_time_schedule_details.py +++ b/src/oci/fleet_software_update/models/start_time_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/target_details.py b/src/oci/fleet_software_update/models/target_details.py index e6e2d37ce2..49eeb49122 100644 --- a/src/oci/fleet_software_update/models/target_details.py +++ b/src/oci/fleet_software_update/models/target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/target_entry.py b/src/oci/fleet_software_update/models/target_entry.py index 44332a50be..6c44316458 100644 --- a/src/oci/fleet_software_update/models/target_entry.py +++ b/src/oci/fleet_software_update/models/target_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/target_ids_remove_targets_details.py b/src/oci/fleet_software_update/models/target_ids_remove_targets_details.py index 22086641ee..e2e90158fa 100644 --- a/src/oci/fleet_software_update/models/target_ids_remove_targets_details.py +++ b/src/oci/fleet_software_update/models/target_ids_remove_targets_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/target_progress_summary.py b/src/oci/fleet_software_update/models/target_progress_summary.py index 366f28950d..1c6d44ef62 100644 --- a/src/oci/fleet_software_update/models/target_progress_summary.py +++ b/src/oci/fleet_software_update/models/target_progress_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/target_summary.py b/src/oci/fleet_software_update/models/target_summary.py index cddd2aaa2f..532b23b116 100644 --- a/src/oci/fleet_software_update/models/target_summary.py +++ b/src/oci/fleet_software_update/models/target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/target_summary_collection.py b/src/oci/fleet_software_update/models/target_summary_collection.py index 6c76d799b0..ccdcf487b1 100644 --- a/src/oci/fleet_software_update/models/target_summary_collection.py +++ b/src/oci/fleet_software_update/models/target_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_apply_action_details.py b/src/oci/fleet_software_update/models/update_apply_action_details.py index 9a7c072fdf..ad1766823e 100644 --- a/src/oci/fleet_software_update/models/update_apply_action_details.py +++ b/src/oci/fleet_software_update/models/update_apply_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_batching_strategy_details.py b/src/oci/fleet_software_update/models/update_batching_strategy_details.py index e71967b120..a89e1b3c4f 100644 --- a/src/oci/fleet_software_update/models/update_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/update_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_cleanup_action_details.py b/src/oci/fleet_software_update/models/update_cleanup_action_details.py index 1586bfb622..9f32fd66d3 100644 --- a/src/oci/fleet_software_update/models/update_cleanup_action_details.py +++ b/src/oci/fleet_software_update/models/update_cleanup_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_fifty_fifty_batching_strategy_details.py b/src/oci/fleet_software_update/models/update_fifty_fifty_batching_strategy_details.py index cd3b765b57..f0af675bf2 100644 --- a/src/oci/fleet_software_update/models/update_fifty_fifty_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/update_fifty_fifty_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_fsu_action_details.py b/src/oci/fleet_software_update/models/update_fsu_action_details.py index ad39aab441..def576fb30 100644 --- a/src/oci/fleet_software_update/models/update_fsu_action_details.py +++ b/src/oci/fleet_software_update/models/update_fsu_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_fsu_collection_details.py b/src/oci/fleet_software_update/models/update_fsu_collection_details.py index 20007be3c0..df28686897 100644 --- a/src/oci/fleet_software_update/models/update_fsu_collection_details.py +++ b/src/oci/fleet_software_update/models/update_fsu_collection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_fsu_cycle_details.py b/src/oci/fleet_software_update/models/update_fsu_cycle_details.py index 09a170a667..1847073298 100644 --- a/src/oci/fleet_software_update/models/update_fsu_cycle_details.py +++ b/src/oci/fleet_software_update/models/update_fsu_cycle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_fsu_discovery_details.py b/src/oci/fleet_software_update/models/update_fsu_discovery_details.py index 31326a96d0..1d2402adbe 100644 --- a/src/oci/fleet_software_update/models/update_fsu_discovery_details.py +++ b/src/oci/fleet_software_update/models/update_fsu_discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_fsu_job_details.py b/src/oci/fleet_software_update/models/update_fsu_job_details.py index f5a9e9931d..1e3e18f32c 100644 --- a/src/oci/fleet_software_update/models/update_fsu_job_details.py +++ b/src/oci/fleet_software_update/models/update_fsu_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_non_rolling_batching_strategy_details.py b/src/oci/fleet_software_update/models/update_non_rolling_batching_strategy_details.py index a493a68b18..01dfa0007c 100644 --- a/src/oci/fleet_software_update/models/update_non_rolling_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/update_non_rolling_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_patch_fsu_cycle.py b/src/oci/fleet_software_update/models/update_patch_fsu_cycle.py index 7dd23c2b7d..8521651145 100644 --- a/src/oci/fleet_software_update/models/update_patch_fsu_cycle.py +++ b/src/oci/fleet_software_update/models/update_patch_fsu_cycle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_precheck_action_details.py b/src/oci/fleet_software_update/models/update_precheck_action_details.py index d9d17d4151..090ccd32f6 100644 --- a/src/oci/fleet_software_update/models/update_precheck_action_details.py +++ b/src/oci/fleet_software_update/models/update_precheck_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_rollback_action_details.py b/src/oci/fleet_software_update/models/update_rollback_action_details.py index f81b237f62..2eed997728 100644 --- a/src/oci/fleet_software_update/models/update_rollback_action_details.py +++ b/src/oci/fleet_software_update/models/update_rollback_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_rollback_cycle_action_details.py b/src/oci/fleet_software_update/models/update_rollback_cycle_action_details.py index 7842bbc5f5..fbf841eade 100644 --- a/src/oci/fleet_software_update/models/update_rollback_cycle_action_details.py +++ b/src/oci/fleet_software_update/models/update_rollback_cycle_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_schedule_details.py b/src/oci/fleet_software_update/models/update_schedule_details.py index 405c91260d..bc823ad3ca 100644 --- a/src/oci/fleet_software_update/models/update_schedule_details.py +++ b/src/oci/fleet_software_update/models/update_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_sequential_batching_strategy_details.py b/src/oci/fleet_software_update/models/update_sequential_batching_strategy_details.py index 398f52b202..eb0c837f70 100644 --- a/src/oci/fleet_software_update/models/update_sequential_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/update_sequential_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_service_availability_factor_batching_strategy_details.py b/src/oci/fleet_software_update/models/update_service_availability_factor_batching_strategy_details.py index 08e9567973..537d061c42 100644 --- a/src/oci/fleet_software_update/models/update_service_availability_factor_batching_strategy_details.py +++ b/src/oci/fleet_software_update/models/update_service_availability_factor_batching_strategy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_stage_action_details.py b/src/oci/fleet_software_update/models/update_stage_action_details.py index 004738f2fe..dcd3ae68b5 100644 --- a/src/oci/fleet_software_update/models/update_stage_action_details.py +++ b/src/oci/fleet_software_update/models/update_stage_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/update_start_time_schedule_details.py b/src/oci/fleet_software_update/models/update_start_time_schedule_details.py index 857eac1d37..8c8f493d43 100644 --- a/src/oci/fleet_software_update/models/update_start_time_schedule_details.py +++ b/src/oci/fleet_software_update/models/update_start_time_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/version_fsu_target_details.py b/src/oci/fleet_software_update/models/version_fsu_target_details.py index 2c755f7f12..813be284fd 100644 --- a/src/oci/fleet_software_update/models/version_fsu_target_details.py +++ b/src/oci/fleet_software_update/models/version_fsu_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/vm_cluster_target_summary.py b/src/oci/fleet_software_update/models/vm_cluster_target_summary.py index 58596367ce..601155ecee 100644 --- a/src/oci/fleet_software_update/models/vm_cluster_target_summary.py +++ b/src/oci/fleet_software_update/models/vm_cluster_target_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/work_request.py b/src/oci/fleet_software_update/models/work_request.py index 0f08f599f8..a3775ee2ec 100644 --- a/src/oci/fleet_software_update/models/work_request.py +++ b/src/oci/fleet_software_update/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/work_request_error.py b/src/oci/fleet_software_update/models/work_request_error.py index 14bce6ec6a..ab4e489ae2 100644 --- a/src/oci/fleet_software_update/models/work_request_error.py +++ b/src/oci/fleet_software_update/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/work_request_error_collection.py b/src/oci/fleet_software_update/models/work_request_error_collection.py index 877c4d2008..33fbce1530 100644 --- a/src/oci/fleet_software_update/models/work_request_error_collection.py +++ b/src/oci/fleet_software_update/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/work_request_log_entry.py b/src/oci/fleet_software_update/models/work_request_log_entry.py index f3b29678d2..6481c8b09f 100644 --- a/src/oci/fleet_software_update/models/work_request_log_entry.py +++ b/src/oci/fleet_software_update/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/work_request_log_entry_collection.py b/src/oci/fleet_software_update/models/work_request_log_entry_collection.py index ad116afb71..c04838b07f 100644 --- a/src/oci/fleet_software_update/models/work_request_log_entry_collection.py +++ b/src/oci/fleet_software_update/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/work_request_resource.py b/src/oci/fleet_software_update/models/work_request_resource.py index 37a394c5c2..b984da6fd8 100644 --- a/src/oci/fleet_software_update/models/work_request_resource.py +++ b/src/oci/fleet_software_update/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/work_request_summary.py b/src/oci/fleet_software_update/models/work_request_summary.py index fb03a309cf..917a30e8ab 100644 --- a/src/oci/fleet_software_update/models/work_request_summary.py +++ b/src/oci/fleet_software_update/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/fleet_software_update/models/work_request_summary_collection.py b/src/oci/fleet_software_update/models/work_request_summary_collection.py index 9aee316cf5..a71680a53c 100644 --- a/src/oci/fleet_software_update/models/work_request_summary_collection.py +++ b/src/oci/fleet_software_update/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220528 diff --git a/src/oci/functions/__init__.py b/src/oci/functions/__init__.py index e3fc91a534..d95886663e 100644 --- a/src/oci/functions/__init__.py +++ b/src/oci/functions/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/functions_invoke_client.py b/src/oci/functions/functions_invoke_client.py index f60070453e..4abec55159 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/functions_invoke_client_composite_operations.py b/src/oci/functions/functions_invoke_client_composite_operations.py index 9fde6d83f9..40fb499829 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/functions_management_client.py b/src/oci/functions/functions_management_client.py index a28ea53e25..59eee48108 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/functions_management_client_composite_operations.py b/src/oci/functions/functions_management_client_composite_operations.py index c4a4262970..1e21314118 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/__init__.py b/src/oci/functions/models/__init__.py index 1c8f9889cb..6a8700727b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/application.py b/src/oci/functions/models/application.py index fe0e05df1d..28b84cbdd3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/application_summary.py b/src/oci/functions/models/application_summary.py index 4525e9d13b..2f1d3c99bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/application_trace_config.py b/src/oci/functions/models/application_trace_config.py index 336415797a..0d7d124be0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/change_application_compartment_details.py b/src/oci/functions/models/change_application_compartment_details.py index 922dd2a8b1..83c7080b6c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/config_details.py b/src/oci/functions/models/config_details.py index 19125ee5a7..7378b03be5 100644 --- a/src/oci/functions/models/config_details.py +++ b/src/oci/functions/models/config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/constant_provisioned_concurrency_config.py b/src/oci/functions/models/constant_provisioned_concurrency_config.py index e17891f367..6e8b848c30 100644 --- a/src/oci/functions/models/constant_provisioned_concurrency_config.py +++ b/src/oci/functions/models/constant_provisioned_concurrency_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/create_application_details.py b/src/oci/functions/models/create_application_details.py index ccde3420d5..70183b6e04 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/create_function_details.py b/src/oci/functions/models/create_function_details.py index 95295c367b..46efc43374 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/function.py b/src/oci/functions/models/function.py index 275e888ab2..de38a4f772 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/function_provisioned_concurrency_config.py b/src/oci/functions/models/function_provisioned_concurrency_config.py index 8cca4802e5..15a16329cb 100644 --- a/src/oci/functions/models/function_provisioned_concurrency_config.py +++ b/src/oci/functions/models/function_provisioned_concurrency_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/function_source_details.py b/src/oci/functions/models/function_source_details.py index a5c3a4c769..bbe94b60e8 100644 --- a/src/oci/functions/models/function_source_details.py +++ b/src/oci/functions/models/function_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/function_summary.py b/src/oci/functions/models/function_summary.py index 4bc6c46ccf..b7f9458e72 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/function_trace_config.py b/src/oci/functions/models/function_trace_config.py index 0bfa5a9b98..dd5dfcb1f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/image_policy_config.py b/src/oci/functions/models/image_policy_config.py index 942505dc1b..36f967089e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/key_details.py b/src/oci/functions/models/key_details.py index f99a1f865d..b3bef5e037 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/none_provisioned_concurrency_config.py b/src/oci/functions/models/none_provisioned_concurrency_config.py index 11b3b4c80b..aa9cd397ff 100644 --- a/src/oci/functions/models/none_provisioned_concurrency_config.py +++ b/src/oci/functions/models/none_provisioned_concurrency_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/pbf_listing.py b/src/oci/functions/models/pbf_listing.py index 2712e4a371..1e8d9cb13b 100644 --- a/src/oci/functions/models/pbf_listing.py +++ b/src/oci/functions/models/pbf_listing.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/pbf_listing_summary.py b/src/oci/functions/models/pbf_listing_summary.py index d65a643f81..5b3ab6f95b 100644 --- a/src/oci/functions/models/pbf_listing_summary.py +++ b/src/oci/functions/models/pbf_listing_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/pbf_listing_version.py b/src/oci/functions/models/pbf_listing_version.py index c7a51c6f45..c83d3dfa8f 100644 --- a/src/oci/functions/models/pbf_listing_version.py +++ b/src/oci/functions/models/pbf_listing_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/pbf_listing_version_summary.py b/src/oci/functions/models/pbf_listing_version_summary.py index 5f327938fc..3e277b89bb 100644 --- a/src/oci/functions/models/pbf_listing_version_summary.py +++ b/src/oci/functions/models/pbf_listing_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/pbf_listing_versions_collection.py b/src/oci/functions/models/pbf_listing_versions_collection.py index f9f05fe88e..a7d0b3a875 100644 --- a/src/oci/functions/models/pbf_listing_versions_collection.py +++ b/src/oci/functions/models/pbf_listing_versions_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/pbf_listings_collection.py b/src/oci/functions/models/pbf_listings_collection.py index dd3dc2603a..1303e0c5ac 100644 --- a/src/oci/functions/models/pbf_listings_collection.py +++ b/src/oci/functions/models/pbf_listings_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/policy_details.py b/src/oci/functions/models/policy_details.py index 492fa60572..7623df8b6e 100644 --- a/src/oci/functions/models/policy_details.py +++ b/src/oci/functions/models/policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/pre_built_function_source_details.py b/src/oci/functions/models/pre_built_function_source_details.py index 929aaca568..c428ae8dcb 100644 --- a/src/oci/functions/models/pre_built_function_source_details.py +++ b/src/oci/functions/models/pre_built_function_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/publisher_details.py b/src/oci/functions/models/publisher_details.py index 4af42bc881..0e2e79bf30 100644 --- a/src/oci/functions/models/publisher_details.py +++ b/src/oci/functions/models/publisher_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/requirement_details.py b/src/oci/functions/models/requirement_details.py index ba63a12f5e..5f9f2d77e8 100644 --- a/src/oci/functions/models/requirement_details.py +++ b/src/oci/functions/models/requirement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/trigger.py b/src/oci/functions/models/trigger.py index 57f41a56e1..098b0b42a8 100644 --- a/src/oci/functions/models/trigger.py +++ b/src/oci/functions/models/trigger.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/trigger_summary.py b/src/oci/functions/models/trigger_summary.py index 3a56d7c59a..6e38d6fada 100644 --- a/src/oci/functions/models/trigger_summary.py +++ b/src/oci/functions/models/trigger_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/triggers_collection.py b/src/oci/functions/models/triggers_collection.py index e594b554eb..a19a529133 100644 --- a/src/oci/functions/models/triggers_collection.py +++ b/src/oci/functions/models/triggers_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/update_application_details.py b/src/oci/functions/models/update_application_details.py index 27549eb852..936b2aa031 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/functions/models/update_function_details.py b/src/oci/functions/models/update_function_details.py index ab5a49c304..2c36d6c6a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/fusion_apps/__init__.py b/src/oci/fusion_apps/__init__.py index ccf8477c0a..ec3e6a5068 100644 --- a/src/oci/fusion_apps/__init__.py +++ b/src/oci/fusion_apps/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/fusion_applications_client.py b/src/oci/fusion_apps/fusion_applications_client.py index 79dcd4e12e..783d16b4ab 100644 --- a/src/oci/fusion_apps/fusion_applications_client.py +++ b/src/oci/fusion_apps/fusion_applications_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/fusion_applications_client_composite_operations.py b/src/oci/fusion_apps/fusion_applications_client_composite_operations.py index 89e4ceef76..71fbce4b03 100644 --- a/src/oci/fusion_apps/fusion_applications_client_composite_operations.py +++ b/src/oci/fusion_apps/fusion_applications_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/__init__.py b/src/oci/fusion_apps/models/__init__.py index ffffb61386..c5a907297f 100644 --- a/src/oci/fusion_apps/models/__init__.py +++ b/src/oci/fusion_apps/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/action.py b/src/oci/fusion_apps/models/action.py index 22e0034215..f0899b64d4 100644 --- a/src/oci/fusion_apps/models/action.py +++ b/src/oci/fusion_apps/models/action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/admin_user_collection.py b/src/oci/fusion_apps/models/admin_user_collection.py index 3958d0a795..2dcb4e438d 100644 --- a/src/oci/fusion_apps/models/admin_user_collection.py +++ b/src/oci/fusion_apps/models/admin_user_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/admin_user_summary.py b/src/oci/fusion_apps/models/admin_user_summary.py index 7d7c5b8af5..6e584ca5d4 100644 --- a/src/oci/fusion_apps/models/admin_user_summary.py +++ b/src/oci/fusion_apps/models/admin_user_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/allow_rule.py b/src/oci/fusion_apps/models/allow_rule.py index 0623affa1f..ab3dc11fda 100644 --- a/src/oci/fusion_apps/models/allow_rule.py +++ b/src/oci/fusion_apps/models/allow_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/capabilities.py b/src/oci/fusion_apps/models/capabilities.py index a9df144b5d..493cb0b07e 100644 --- a/src/oci/fusion_apps/models/capabilities.py +++ b/src/oci/fusion_apps/models/capabilities.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/change_fusion_environment_compartment_details.py b/src/oci/fusion_apps/models/change_fusion_environment_compartment_details.py index 9c400504f7..b1c298bb8e 100644 --- a/src/oci/fusion_apps/models/change_fusion_environment_compartment_details.py +++ b/src/oci/fusion_apps/models/change_fusion_environment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/change_fusion_environment_family_compartment_details.py b/src/oci/fusion_apps/models/change_fusion_environment_family_compartment_details.py index 18eb8a8a9a..ddac9d729d 100644 --- a/src/oci/fusion_apps/models/change_fusion_environment_family_compartment_details.py +++ b/src/oci/fusion_apps/models/change_fusion_environment_family_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/create_data_masking_activity_details.py b/src/oci/fusion_apps/models/create_data_masking_activity_details.py index a709af264e..b6042aada4 100644 --- a/src/oci/fusion_apps/models/create_data_masking_activity_details.py +++ b/src/oci/fusion_apps/models/create_data_masking_activity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/create_fusion_environment_admin_user_details.py b/src/oci/fusion_apps/models/create_fusion_environment_admin_user_details.py index 3bd684e9af..2465459334 100644 --- a/src/oci/fusion_apps/models/create_fusion_environment_admin_user_details.py +++ b/src/oci/fusion_apps/models/create_fusion_environment_admin_user_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/create_fusion_environment_details.py b/src/oci/fusion_apps/models/create_fusion_environment_details.py index 489c68ca40..e522efff7a 100644 --- a/src/oci/fusion_apps/models/create_fusion_environment_details.py +++ b/src/oci/fusion_apps/models/create_fusion_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/create_fusion_environment_family_details.py b/src/oci/fusion_apps/models/create_fusion_environment_family_details.py index 7ad866ed85..6df9431c8a 100644 --- a/src/oci/fusion_apps/models/create_fusion_environment_family_details.py +++ b/src/oci/fusion_apps/models/create_fusion_environment_family_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/create_refresh_activity_details.py b/src/oci/fusion_apps/models/create_refresh_activity_details.py index 2b7c82b5fd..99e95f142f 100644 --- a/src/oci/fusion_apps/models/create_refresh_activity_details.py +++ b/src/oci/fusion_apps/models/create_refresh_activity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/create_service_attachment_details.py b/src/oci/fusion_apps/models/create_service_attachment_details.py index 96e253244c..0d9fa5efcf 100644 --- a/src/oci/fusion_apps/models/create_service_attachment_details.py +++ b/src/oci/fusion_apps/models/create_service_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/data_masking_activity.py b/src/oci/fusion_apps/models/data_masking_activity.py index 8dea8e3927..4526b2b3ae 100644 --- a/src/oci/fusion_apps/models/data_masking_activity.py +++ b/src/oci/fusion_apps/models/data_masking_activity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/data_masking_activity_collection.py b/src/oci/fusion_apps/models/data_masking_activity_collection.py index 82d02f4acd..1fe1c45bb8 100644 --- a/src/oci/fusion_apps/models/data_masking_activity_collection.py +++ b/src/oci/fusion_apps/models/data_masking_activity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/data_masking_activity_summary.py b/src/oci/fusion_apps/models/data_masking_activity_summary.py index b9645f1480..f9b8bf8e8d 100644 --- a/src/oci/fusion_apps/models/data_masking_activity_summary.py +++ b/src/oci/fusion_apps/models/data_masking_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/environment_role.py b/src/oci/fusion_apps/models/environment_role.py index f122ac5438..2fb0ccc243 100644 --- a/src/oci/fusion_apps/models/environment_role.py +++ b/src/oci/fusion_apps/models/environment_role.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/extract_details_collection.py b/src/oci/fusion_apps/models/extract_details_collection.py index f1e8fc08be..84b94a1852 100644 --- a/src/oci/fusion_apps/models/extract_details_collection.py +++ b/src/oci/fusion_apps/models/extract_details_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/extract_details_summary.py b/src/oci/fusion_apps/models/extract_details_summary.py index a26cd1fadf..58558206a3 100644 --- a/src/oci/fusion_apps/models/extract_details_summary.py +++ b/src/oci/fusion_apps/models/extract_details_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/family_maintenance_policy.py b/src/oci/fusion_apps/models/family_maintenance_policy.py index 2c0e27c456..3657983910 100644 --- a/src/oci/fusion_apps/models/family_maintenance_policy.py +++ b/src/oci/fusion_apps/models/family_maintenance_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/fusion_environment.py b/src/oci/fusion_apps/models/fusion_environment.py index 1ad4c4cad8..10a1e28908 100644 --- a/src/oci/fusion_apps/models/fusion_environment.py +++ b/src/oci/fusion_apps/models/fusion_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/fusion_environment_collection.py b/src/oci/fusion_apps/models/fusion_environment_collection.py index 2fa1d96ea7..a939cf7155 100644 --- a/src/oci/fusion_apps/models/fusion_environment_collection.py +++ b/src/oci/fusion_apps/models/fusion_environment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/fusion_environment_family.py b/src/oci/fusion_apps/models/fusion_environment_family.py index 62a9b6c999..862b2d6f97 100644 --- a/src/oci/fusion_apps/models/fusion_environment_family.py +++ b/src/oci/fusion_apps/models/fusion_environment_family.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/fusion_environment_family_collection.py b/src/oci/fusion_apps/models/fusion_environment_family_collection.py index eddb295b26..1c292bb402 100644 --- a/src/oci/fusion_apps/models/fusion_environment_family_collection.py +++ b/src/oci/fusion_apps/models/fusion_environment_family_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/fusion_environment_family_limits_and_usage.py b/src/oci/fusion_apps/models/fusion_environment_family_limits_and_usage.py index b267590b79..1efc8c643b 100644 --- a/src/oci/fusion_apps/models/fusion_environment_family_limits_and_usage.py +++ b/src/oci/fusion_apps/models/fusion_environment_family_limits_and_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/fusion_environment_family_summary.py b/src/oci/fusion_apps/models/fusion_environment_family_summary.py index 0ca9c446e8..aaa83632f0 100644 --- a/src/oci/fusion_apps/models/fusion_environment_family_summary.py +++ b/src/oci/fusion_apps/models/fusion_environment_family_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/fusion_environment_status.py b/src/oci/fusion_apps/models/fusion_environment_status.py index ea11dafd9b..a86c8a107c 100644 --- a/src/oci/fusion_apps/models/fusion_environment_status.py +++ b/src/oci/fusion_apps/models/fusion_environment_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/fusion_environment_summary.py b/src/oci/fusion_apps/models/fusion_environment_summary.py index 145fa0e6a6..dc928eeeda 100644 --- a/src/oci/fusion_apps/models/fusion_environment_summary.py +++ b/src/oci/fusion_apps/models/fusion_environment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/get_maintenance_policy_details.py b/src/oci/fusion_apps/models/get_maintenance_policy_details.py index 43b1ec5774..9756e55857 100644 --- a/src/oci/fusion_apps/models/get_maintenance_policy_details.py +++ b/src/oci/fusion_apps/models/get_maintenance_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/kms_key_info.py b/src/oci/fusion_apps/models/kms_key_info.py index 8bc5ecec2c..12267dec22 100644 --- a/src/oci/fusion_apps/models/kms_key_info.py +++ b/src/oci/fusion_apps/models/kms_key_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/limit_and_usage.py b/src/oci/fusion_apps/models/limit_and_usage.py index 4d6f83de09..32115f5dc8 100644 --- a/src/oci/fusion_apps/models/limit_and_usage.py +++ b/src/oci/fusion_apps/models/limit_and_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/maintenance_policy.py b/src/oci/fusion_apps/models/maintenance_policy.py index 2434e2fe63..68e7458cf7 100644 --- a/src/oci/fusion_apps/models/maintenance_policy.py +++ b/src/oci/fusion_apps/models/maintenance_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/patch_action.py b/src/oci/fusion_apps/models/patch_action.py index ff857bcee4..518195487a 100644 --- a/src/oci/fusion_apps/models/patch_action.py +++ b/src/oci/fusion_apps/models/patch_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/quarterly_upgrade_begin_times.py b/src/oci/fusion_apps/models/quarterly_upgrade_begin_times.py index 34652f7ec9..27cdf0702e 100644 --- a/src/oci/fusion_apps/models/quarterly_upgrade_begin_times.py +++ b/src/oci/fusion_apps/models/quarterly_upgrade_begin_times.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/refresh_activity.py b/src/oci/fusion_apps/models/refresh_activity.py index 1b38b0f7dc..cca1c486c2 100644 --- a/src/oci/fusion_apps/models/refresh_activity.py +++ b/src/oci/fusion_apps/models/refresh_activity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/refresh_activity_collection.py b/src/oci/fusion_apps/models/refresh_activity_collection.py index dedc6f3afd..f18631b13f 100644 --- a/src/oci/fusion_apps/models/refresh_activity_collection.py +++ b/src/oci/fusion_apps/models/refresh_activity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/refresh_activity_summary.py b/src/oci/fusion_apps/models/refresh_activity_summary.py index 8703ebbc14..ff0f10fc2b 100644 --- a/src/oci/fusion_apps/models/refresh_activity_summary.py +++ b/src/oci/fusion_apps/models/refresh_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/refresh_details.py b/src/oci/fusion_apps/models/refresh_details.py index f64ab21c47..0e6d1a0162 100644 --- a/src/oci/fusion_apps/models/refresh_details.py +++ b/src/oci/fusion_apps/models/refresh_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/refresh_issue_details.py b/src/oci/fusion_apps/models/refresh_issue_details.py index 9bb54a1a1f..7edaab71e9 100644 --- a/src/oci/fusion_apps/models/refresh_issue_details.py +++ b/src/oci/fusion_apps/models/refresh_issue_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/reset_fusion_environment_password_details.py b/src/oci/fusion_apps/models/reset_fusion_environment_password_details.py index 812d547ddf..89bed3a888 100644 --- a/src/oci/fusion_apps/models/reset_fusion_environment_password_details.py +++ b/src/oci/fusion_apps/models/reset_fusion_environment_password_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/rule.py b/src/oci/fusion_apps/models/rule.py index c6050dbd3d..ebf747c3ea 100644 --- a/src/oci/fusion_apps/models/rule.py +++ b/src/oci/fusion_apps/models/rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/rule_condition.py b/src/oci/fusion_apps/models/rule_condition.py index ed0a32f69c..d6bb7aa804 100644 --- a/src/oci/fusion_apps/models/rule_condition.py +++ b/src/oci/fusion_apps/models/rule_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/scheduled_activity.py b/src/oci/fusion_apps/models/scheduled_activity.py index 3f6145a8fa..d53a48bbe0 100644 --- a/src/oci/fusion_apps/models/scheduled_activity.py +++ b/src/oci/fusion_apps/models/scheduled_activity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/scheduled_activity_collection.py b/src/oci/fusion_apps/models/scheduled_activity_collection.py index da5d398785..1f2d5542f7 100644 --- a/src/oci/fusion_apps/models/scheduled_activity_collection.py +++ b/src/oci/fusion_apps/models/scheduled_activity_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/scheduled_activity_summary.py b/src/oci/fusion_apps/models/scheduled_activity_summary.py index 9a0ef612f8..c92963fd56 100644 --- a/src/oci/fusion_apps/models/scheduled_activity_summary.py +++ b/src/oci/fusion_apps/models/scheduled_activity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/service_attachment.py b/src/oci/fusion_apps/models/service_attachment.py index 8428d9a309..8e7ad69060 100644 --- a/src/oci/fusion_apps/models/service_attachment.py +++ b/src/oci/fusion_apps/models/service_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/service_attachment_collection.py b/src/oci/fusion_apps/models/service_attachment_collection.py index 5fc5d9cd3e..8a9ac4be74 100644 --- a/src/oci/fusion_apps/models/service_attachment_collection.py +++ b/src/oci/fusion_apps/models/service_attachment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/service_attachment_summary.py b/src/oci/fusion_apps/models/service_attachment_summary.py index 061194fd30..6a27a75c88 100644 --- a/src/oci/fusion_apps/models/service_attachment_summary.py +++ b/src/oci/fusion_apps/models/service_attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/source_ip_address_condition.py b/src/oci/fusion_apps/models/source_ip_address_condition.py index c697903bc0..6048e48fcf 100644 --- a/src/oci/fusion_apps/models/source_ip_address_condition.py +++ b/src/oci/fusion_apps/models/source_ip_address_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/source_vcn_id_condition.py b/src/oci/fusion_apps/models/source_vcn_id_condition.py index b2902a743b..539a5c9a7e 100644 --- a/src/oci/fusion_apps/models/source_vcn_id_condition.py +++ b/src/oci/fusion_apps/models/source_vcn_id_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/source_vcn_ip_address_condition.py b/src/oci/fusion_apps/models/source_vcn_ip_address_condition.py index 55f75dac98..588559cd47 100644 --- a/src/oci/fusion_apps/models/source_vcn_ip_address_condition.py +++ b/src/oci/fusion_apps/models/source_vcn_ip_address_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/subscription.py b/src/oci/fusion_apps/models/subscription.py index 19d573211c..3dd4b42f29 100644 --- a/src/oci/fusion_apps/models/subscription.py +++ b/src/oci/fusion_apps/models/subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/subscription_detail.py b/src/oci/fusion_apps/models/subscription_detail.py index 1179d3c205..7bd774b2c4 100644 --- a/src/oci/fusion_apps/models/subscription_detail.py +++ b/src/oci/fusion_apps/models/subscription_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/subscription_sku.py b/src/oci/fusion_apps/models/subscription_sku.py index a538e7e476..793657fec8 100644 --- a/src/oci/fusion_apps/models/subscription_sku.py +++ b/src/oci/fusion_apps/models/subscription_sku.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/time_available_for_refresh.py b/src/oci/fusion_apps/models/time_available_for_refresh.py index a2428e4756..d3a3b833d9 100644 --- a/src/oci/fusion_apps/models/time_available_for_refresh.py +++ b/src/oci/fusion_apps/models/time_available_for_refresh.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/time_available_for_refresh_collection.py b/src/oci/fusion_apps/models/time_available_for_refresh_collection.py index 8fc56deb85..bfd19d426a 100644 --- a/src/oci/fusion_apps/models/time_available_for_refresh_collection.py +++ b/src/oci/fusion_apps/models/time_available_for_refresh_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/time_available_for_refresh_summary.py b/src/oci/fusion_apps/models/time_available_for_refresh_summary.py index e6e9d7cbf0..3b0585d4d5 100644 --- a/src/oci/fusion_apps/models/time_available_for_refresh_summary.py +++ b/src/oci/fusion_apps/models/time_available_for_refresh_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/update_family_maintenance_policy_details.py b/src/oci/fusion_apps/models/update_family_maintenance_policy_details.py index 398ea72ecb..a705759309 100644 --- a/src/oci/fusion_apps/models/update_family_maintenance_policy_details.py +++ b/src/oci/fusion_apps/models/update_family_maintenance_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/update_fusion_environment_details.py b/src/oci/fusion_apps/models/update_fusion_environment_details.py index b2887d3c94..aed3d4b255 100644 --- a/src/oci/fusion_apps/models/update_fusion_environment_details.py +++ b/src/oci/fusion_apps/models/update_fusion_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/update_fusion_environment_family_details.py b/src/oci/fusion_apps/models/update_fusion_environment_family_details.py index adb8f29060..24cc0055db 100644 --- a/src/oci/fusion_apps/models/update_fusion_environment_family_details.py +++ b/src/oci/fusion_apps/models/update_fusion_environment_family_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/update_refresh_activity_details.py b/src/oci/fusion_apps/models/update_refresh_activity_details.py index 830a846c2f..aaed2608cc 100644 --- a/src/oci/fusion_apps/models/update_refresh_activity_details.py +++ b/src/oci/fusion_apps/models/update_refresh_activity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/upgrade_action.py b/src/oci/fusion_apps/models/upgrade_action.py index 3800764f6b..b930f964ac 100644 --- a/src/oci/fusion_apps/models/upgrade_action.py +++ b/src/oci/fusion_apps/models/upgrade_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/verify_service_attachment_details.py b/src/oci/fusion_apps/models/verify_service_attachment_details.py index f7704b53a6..37bb489b35 100644 --- a/src/oci/fusion_apps/models/verify_service_attachment_details.py +++ b/src/oci/fusion_apps/models/verify_service_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/vertex_action.py b/src/oci/fusion_apps/models/vertex_action.py index 2a7538fc2e..26cdc51430 100644 --- a/src/oci/fusion_apps/models/vertex_action.py +++ b/src/oci/fusion_apps/models/vertex_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/work_request.py b/src/oci/fusion_apps/models/work_request.py index 6a967f672e..02d23c228f 100644 --- a/src/oci/fusion_apps/models/work_request.py +++ b/src/oci/fusion_apps/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/work_request_error.py b/src/oci/fusion_apps/models/work_request_error.py index 8be42d4d21..8b6e3ec9bb 100644 --- a/src/oci/fusion_apps/models/work_request_error.py +++ b/src/oci/fusion_apps/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/work_request_error_collection.py b/src/oci/fusion_apps/models/work_request_error_collection.py index c9ecb2ff95..31c37efa56 100644 --- a/src/oci/fusion_apps/models/work_request_error_collection.py +++ b/src/oci/fusion_apps/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/work_request_log_entry.py b/src/oci/fusion_apps/models/work_request_log_entry.py index 013fbb826c..168db7032c 100644 --- a/src/oci/fusion_apps/models/work_request_log_entry.py +++ b/src/oci/fusion_apps/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/work_request_log_entry_collection.py b/src/oci/fusion_apps/models/work_request_log_entry_collection.py index 22e03ad588..736c46b886 100644 --- a/src/oci/fusion_apps/models/work_request_log_entry_collection.py +++ b/src/oci/fusion_apps/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/work_request_resource.py b/src/oci/fusion_apps/models/work_request_resource.py index 50ac0f3d3d..99e5bc84bc 100644 --- a/src/oci/fusion_apps/models/work_request_resource.py +++ b/src/oci/fusion_apps/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/work_request_summary.py b/src/oci/fusion_apps/models/work_request_summary.py index 89fe7ad3ca..1a4affd054 100644 --- a/src/oci/fusion_apps/models/work_request_summary.py +++ b/src/oci/fusion_apps/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/fusion_apps/models/work_request_summary_collection.py b/src/oci/fusion_apps/models/work_request_summary_collection.py index c10b3d1356..868570f0e4 100644 --- a/src/oci/fusion_apps/models/work_request_summary_collection.py +++ b/src/oci/fusion_apps/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211201 diff --git a/src/oci/generative_ai/__init__.py b/src/oci/generative_ai/__init__.py index dc53337738..f99460e791 100644 --- a/src/oci/generative_ai/__init__.py +++ b/src/oci/generative_ai/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/generative_ai_client.py b/src/oci/generative_ai/generative_ai_client.py index 9ca547a0d1..e8cc5d20ae 100644 --- a/src/oci/generative_ai/generative_ai_client.py +++ b/src/oci/generative_ai/generative_ai_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/generative_ai_client_composite_operations.py b/src/oci/generative_ai/generative_ai_client_composite_operations.py index 94a30cfdcd..479e236ff7 100644 --- a/src/oci/generative_ai/generative_ai_client_composite_operations.py +++ b/src/oci/generative_ai/generative_ai_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/__init__.py b/src/oci/generative_ai/models/__init__.py index 869c4f6464..fcf28b69c4 100644 --- a/src/oci/generative_ai/models/__init__.py +++ b/src/oci/generative_ai/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/change_dedicated_ai_cluster_compartment_details.py b/src/oci/generative_ai/models/change_dedicated_ai_cluster_compartment_details.py index e087ca7dcf..676c37b879 100644 --- a/src/oci/generative_ai/models/change_dedicated_ai_cluster_compartment_details.py +++ b/src/oci/generative_ai/models/change_dedicated_ai_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/change_endpoint_compartment_details.py b/src/oci/generative_ai/models/change_endpoint_compartment_details.py index aeb1df22e0..782adc32c9 100644 --- a/src/oci/generative_ai/models/change_endpoint_compartment_details.py +++ b/src/oci/generative_ai/models/change_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/change_model_compartment_details.py b/src/oci/generative_ai/models/change_model_compartment_details.py index 40ed30dac3..2216450f4f 100644 --- a/src/oci/generative_ai/models/change_model_compartment_details.py +++ b/src/oci/generative_ai/models/change_model_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/chat_model_metrics.py b/src/oci/generative_ai/models/chat_model_metrics.py index cd748a0226..60f587f98d 100644 --- a/src/oci/generative_ai/models/chat_model_metrics.py +++ b/src/oci/generative_ai/models/chat_model_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/content_moderation_config.py b/src/oci/generative_ai/models/content_moderation_config.py index d908a9f4c2..03ffa794f9 100644 --- a/src/oci/generative_ai/models/content_moderation_config.py +++ b/src/oci/generative_ai/models/content_moderation_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/create_dedicated_ai_cluster_details.py b/src/oci/generative_ai/models/create_dedicated_ai_cluster_details.py index b4974dc639..b8a8747226 100644 --- a/src/oci/generative_ai/models/create_dedicated_ai_cluster_details.py +++ b/src/oci/generative_ai/models/create_dedicated_ai_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/create_endpoint_details.py b/src/oci/generative_ai/models/create_endpoint_details.py index e830669385..c9817f96cb 100644 --- a/src/oci/generative_ai/models/create_endpoint_details.py +++ b/src/oci/generative_ai/models/create_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/create_model_details.py b/src/oci/generative_ai/models/create_model_details.py index db556f1672..aa22ae5304 100644 --- a/src/oci/generative_ai/models/create_model_details.py +++ b/src/oci/generative_ai/models/create_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/dataset.py b/src/oci/generative_ai/models/dataset.py index 5dcbdebf3c..8ae23329d0 100644 --- a/src/oci/generative_ai/models/dataset.py +++ b/src/oci/generative_ai/models/dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/dedicated_ai_cluster.py b/src/oci/generative_ai/models/dedicated_ai_cluster.py index 7751c90c1f..2c6798c226 100644 --- a/src/oci/generative_ai/models/dedicated_ai_cluster.py +++ b/src/oci/generative_ai/models/dedicated_ai_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/dedicated_ai_cluster_capacity.py b/src/oci/generative_ai/models/dedicated_ai_cluster_capacity.py index d1e6faf3dd..b6dcf2e5ee 100644 --- a/src/oci/generative_ai/models/dedicated_ai_cluster_capacity.py +++ b/src/oci/generative_ai/models/dedicated_ai_cluster_capacity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/dedicated_ai_cluster_collection.py b/src/oci/generative_ai/models/dedicated_ai_cluster_collection.py index b9cefe1d58..1a34cd4b2b 100644 --- a/src/oci/generative_ai/models/dedicated_ai_cluster_collection.py +++ b/src/oci/generative_ai/models/dedicated_ai_cluster_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/dedicated_ai_cluster_hosting_capacity.py b/src/oci/generative_ai/models/dedicated_ai_cluster_hosting_capacity.py index 9de6883fb7..42f6c7aa15 100644 --- a/src/oci/generative_ai/models/dedicated_ai_cluster_hosting_capacity.py +++ b/src/oci/generative_ai/models/dedicated_ai_cluster_hosting_capacity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/dedicated_ai_cluster_summary.py b/src/oci/generative_ai/models/dedicated_ai_cluster_summary.py index 3b2474a389..0167f0102f 100644 --- a/src/oci/generative_ai/models/dedicated_ai_cluster_summary.py +++ b/src/oci/generative_ai/models/dedicated_ai_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/endpoint.py b/src/oci/generative_ai/models/endpoint.py index ffa8737ffb..56e92f72e1 100644 --- a/src/oci/generative_ai/models/endpoint.py +++ b/src/oci/generative_ai/models/endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/endpoint_collection.py b/src/oci/generative_ai/models/endpoint_collection.py index fa3cd894ba..c6918e065f 100644 --- a/src/oci/generative_ai/models/endpoint_collection.py +++ b/src/oci/generative_ai/models/endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/endpoint_summary.py b/src/oci/generative_ai/models/endpoint_summary.py index 790faee646..0827fa9b43 100644 --- a/src/oci/generative_ai/models/endpoint_summary.py +++ b/src/oci/generative_ai/models/endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/fine_tune_details.py b/src/oci/generative_ai/models/fine_tune_details.py index b25c9a9c36..1ffbd24d75 100644 --- a/src/oci/generative_ai/models/fine_tune_details.py +++ b/src/oci/generative_ai/models/fine_tune_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/lora_training_config.py b/src/oci/generative_ai/models/lora_training_config.py index ce1ac44c0d..d3fc8e863d 100644 --- a/src/oci/generative_ai/models/lora_training_config.py +++ b/src/oci/generative_ai/models/lora_training_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/model.py b/src/oci/generative_ai/models/model.py index 4b45f7e900..d0802355ee 100644 --- a/src/oci/generative_ai/models/model.py +++ b/src/oci/generative_ai/models/model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/model_collection.py b/src/oci/generative_ai/models/model_collection.py index 4c93c28eab..c6c49001d5 100644 --- a/src/oci/generative_ai/models/model_collection.py +++ b/src/oci/generative_ai/models/model_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/model_metrics.py b/src/oci/generative_ai/models/model_metrics.py index 4f7de62964..2820fc24b7 100644 --- a/src/oci/generative_ai/models/model_metrics.py +++ b/src/oci/generative_ai/models/model_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/model_summary.py b/src/oci/generative_ai/models/model_summary.py index 52b9d312aa..287748e6fa 100644 --- a/src/oci/generative_ai/models/model_summary.py +++ b/src/oci/generative_ai/models/model_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/object_storage_dataset.py b/src/oci/generative_ai/models/object_storage_dataset.py index bdd1b7ae86..c8b5db8005 100644 --- a/src/oci/generative_ai/models/object_storage_dataset.py +++ b/src/oci/generative_ai/models/object_storage_dataset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/t_few_training_config.py b/src/oci/generative_ai/models/t_few_training_config.py index 0b4558b741..3ac45545bc 100644 --- a/src/oci/generative_ai/models/t_few_training_config.py +++ b/src/oci/generative_ai/models/t_few_training_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/text_generation_model_metrics.py b/src/oci/generative_ai/models/text_generation_model_metrics.py index 2caa9fc808..4be4521536 100644 --- a/src/oci/generative_ai/models/text_generation_model_metrics.py +++ b/src/oci/generative_ai/models/text_generation_model_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/training_config.py b/src/oci/generative_ai/models/training_config.py index 84e4a9a991..c0614986c9 100644 --- a/src/oci/generative_ai/models/training_config.py +++ b/src/oci/generative_ai/models/training_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/update_dedicated_ai_cluster_details.py b/src/oci/generative_ai/models/update_dedicated_ai_cluster_details.py index 6d5efb5a7f..a5f57dbc7d 100644 --- a/src/oci/generative_ai/models/update_dedicated_ai_cluster_details.py +++ b/src/oci/generative_ai/models/update_dedicated_ai_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/update_endpoint_details.py b/src/oci/generative_ai/models/update_endpoint_details.py index 1121fedcb1..24b3b828d6 100644 --- a/src/oci/generative_ai/models/update_endpoint_details.py +++ b/src/oci/generative_ai/models/update_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/update_model_details.py b/src/oci/generative_ai/models/update_model_details.py index b0db4f776f..5aeb263a6c 100644 --- a/src/oci/generative_ai/models/update_model_details.py +++ b/src/oci/generative_ai/models/update_model_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/vanilla_training_config.py b/src/oci/generative_ai/models/vanilla_training_config.py index 5fcfb630cb..dd8182db2e 100644 --- a/src/oci/generative_ai/models/vanilla_training_config.py +++ b/src/oci/generative_ai/models/vanilla_training_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/work_request.py b/src/oci/generative_ai/models/work_request.py index 422da8b73d..a072dcee3a 100644 --- a/src/oci/generative_ai/models/work_request.py +++ b/src/oci/generative_ai/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/work_request_error.py b/src/oci/generative_ai/models/work_request_error.py index ee6962885c..eae84e9f63 100644 --- a/src/oci/generative_ai/models/work_request_error.py +++ b/src/oci/generative_ai/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/work_request_error_collection.py b/src/oci/generative_ai/models/work_request_error_collection.py index 9bf49aae49..c3d3061297 100644 --- a/src/oci/generative_ai/models/work_request_error_collection.py +++ b/src/oci/generative_ai/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/work_request_log_entry.py b/src/oci/generative_ai/models/work_request_log_entry.py index 4cecc2a9a5..d558b08b41 100644 --- a/src/oci/generative_ai/models/work_request_log_entry.py +++ b/src/oci/generative_ai/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/work_request_log_entry_collection.py b/src/oci/generative_ai/models/work_request_log_entry_collection.py index 4a45aed90e..4fec2a2a12 100644 --- a/src/oci/generative_ai/models/work_request_log_entry_collection.py +++ b/src/oci/generative_ai/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/work_request_resource.py b/src/oci/generative_ai/models/work_request_resource.py index 460fd17fa4..c45b9ccd5a 100644 --- a/src/oci/generative_ai/models/work_request_resource.py +++ b/src/oci/generative_ai/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/work_request_summary.py b/src/oci/generative_ai/models/work_request_summary.py index 2ad7555ff2..02b8ce394a 100644 --- a/src/oci/generative_ai/models/work_request_summary.py +++ b/src/oci/generative_ai/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai/models/work_request_summary_collection.py b/src/oci/generative_ai/models/work_request_summary_collection.py index 7ddf480a96..38a67f2c29 100644 --- a/src/oci/generative_ai/models/work_request_summary_collection.py +++ b/src/oci/generative_ai/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_agent/__init__.py b/src/oci/generative_ai_agent/__init__.py index 57bba7abf4..92949d34ed 100644 --- a/src/oci/generative_ai_agent/__init__.py +++ b/src/oci/generative_ai_agent/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/generative_ai_agent_client.py b/src/oci/generative_ai_agent/generative_ai_agent_client.py index d4e68f547b..5852e79ca9 100644 --- a/src/oci/generative_ai_agent/generative_ai_agent_client.py +++ b/src/oci/generative_ai_agent/generative_ai_agent_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/generative_ai_agent_client_composite_operations.py b/src/oci/generative_ai_agent/generative_ai_agent_client_composite_operations.py index b0c1f41c13..df1b2d15fd 100644 --- a/src/oci/generative_ai_agent/generative_ai_agent_client_composite_operations.py +++ b/src/oci/generative_ai_agent/generative_ai_agent_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/__init__.py b/src/oci/generative_ai_agent/models/__init__.py index 8de195cbee..0313cf7b86 100644 --- a/src/oci/generative_ai_agent/models/__init__.py +++ b/src/oci/generative_ai_agent/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/agent.py b/src/oci/generative_ai_agent/models/agent.py index 24673b5882..fb9650f518 100644 --- a/src/oci/generative_ai_agent/models/agent.py +++ b/src/oci/generative_ai_agent/models/agent.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/agent_collection.py b/src/oci/generative_ai_agent/models/agent_collection.py index 5a3cca41d0..e95e3a783d 100644 --- a/src/oci/generative_ai_agent/models/agent_collection.py +++ b/src/oci/generative_ai_agent/models/agent_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/agent_endpoint.py b/src/oci/generative_ai_agent/models/agent_endpoint.py index 1a60156f53..31996cba48 100644 --- a/src/oci/generative_ai_agent/models/agent_endpoint.py +++ b/src/oci/generative_ai_agent/models/agent_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/agent_endpoint_collection.py b/src/oci/generative_ai_agent/models/agent_endpoint_collection.py index 1a502e309c..c410ed6a9b 100644 --- a/src/oci/generative_ai_agent/models/agent_endpoint_collection.py +++ b/src/oci/generative_ai_agent/models/agent_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/agent_endpoint_summary.py b/src/oci/generative_ai_agent/models/agent_endpoint_summary.py index 887222cb6f..4781e2cbb5 100644 --- a/src/oci/generative_ai_agent/models/agent_endpoint_summary.py +++ b/src/oci/generative_ai_agent/models/agent_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/agent_summary.py b/src/oci/generative_ai_agent/models/agent_summary.py index 0c495cdce3..40ca4898ec 100644 --- a/src/oci/generative_ai_agent/models/agent_summary.py +++ b/src/oci/generative_ai_agent/models/agent_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/basic_auth_secret.py b/src/oci/generative_ai_agent/models/basic_auth_secret.py index b50cf1b457..e6f4082650 100644 --- a/src/oci/generative_ai_agent/models/basic_auth_secret.py +++ b/src/oci/generative_ai_agent/models/basic_auth_secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/change_agent_compartment_details.py b/src/oci/generative_ai_agent/models/change_agent_compartment_details.py index b95ff39551..289470b997 100644 --- a/src/oci/generative_ai_agent/models/change_agent_compartment_details.py +++ b/src/oci/generative_ai_agent/models/change_agent_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/change_agent_endpoint_compartment_details.py b/src/oci/generative_ai_agent/models/change_agent_endpoint_compartment_details.py index 188426720b..9e40216b8b 100644 --- a/src/oci/generative_ai_agent/models/change_agent_endpoint_compartment_details.py +++ b/src/oci/generative_ai_agent/models/change_agent_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/change_knowledge_base_compartment_details.py b/src/oci/generative_ai_agent/models/change_knowledge_base_compartment_details.py index e2b054caea..da1a05951d 100644 --- a/src/oci/generative_ai_agent/models/change_knowledge_base_compartment_details.py +++ b/src/oci/generative_ai_agent/models/change_knowledge_base_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/content_moderation_config.py b/src/oci/generative_ai_agent/models/content_moderation_config.py index 1cb43ac3f8..df19ca5fa9 100644 --- a/src/oci/generative_ai_agent/models/content_moderation_config.py +++ b/src/oci/generative_ai_agent/models/content_moderation_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/create_agent_details.py b/src/oci/generative_ai_agent/models/create_agent_details.py index 4ee5046cd2..fd33d759e0 100644 --- a/src/oci/generative_ai_agent/models/create_agent_details.py +++ b/src/oci/generative_ai_agent/models/create_agent_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/create_agent_endpoint_details.py b/src/oci/generative_ai_agent/models/create_agent_endpoint_details.py index 78756ea638..c157833caf 100644 --- a/src/oci/generative_ai_agent/models/create_agent_endpoint_details.py +++ b/src/oci/generative_ai_agent/models/create_agent_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/create_data_ingestion_job_details.py b/src/oci/generative_ai_agent/models/create_data_ingestion_job_details.py index 1b1417f532..53514a57d6 100644 --- a/src/oci/generative_ai_agent/models/create_data_ingestion_job_details.py +++ b/src/oci/generative_ai_agent/models/create_data_ingestion_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/create_data_source_details.py b/src/oci/generative_ai_agent/models/create_data_source_details.py index c467f07b9e..40a2343e52 100644 --- a/src/oci/generative_ai_agent/models/create_data_source_details.py +++ b/src/oci/generative_ai_agent/models/create_data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/create_knowledge_base_details.py b/src/oci/generative_ai_agent/models/create_knowledge_base_details.py index 1bfc2e213a..caea81d733 100644 --- a/src/oci/generative_ai_agent/models/create_knowledge_base_details.py +++ b/src/oci/generative_ai_agent/models/create_knowledge_base_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/data_ingestion_job.py b/src/oci/generative_ai_agent/models/data_ingestion_job.py index 4b736a13c2..a99af985bf 100644 --- a/src/oci/generative_ai_agent/models/data_ingestion_job.py +++ b/src/oci/generative_ai_agent/models/data_ingestion_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/data_ingestion_job_collection.py b/src/oci/generative_ai_agent/models/data_ingestion_job_collection.py index 6d4df26990..a5e1909061 100644 --- a/src/oci/generative_ai_agent/models/data_ingestion_job_collection.py +++ b/src/oci/generative_ai_agent/models/data_ingestion_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/data_ingestion_job_statistics.py b/src/oci/generative_ai_agent/models/data_ingestion_job_statistics.py index 77bb247e23..71b827f696 100644 --- a/src/oci/generative_ai_agent/models/data_ingestion_job_statistics.py +++ b/src/oci/generative_ai_agent/models/data_ingestion_job_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/data_ingestion_job_summary.py b/src/oci/generative_ai_agent/models/data_ingestion_job_summary.py index ef08f28be3..db1c1e32e4 100644 --- a/src/oci/generative_ai_agent/models/data_ingestion_job_summary.py +++ b/src/oci/generative_ai_agent/models/data_ingestion_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/data_source.py b/src/oci/generative_ai_agent/models/data_source.py index aea0b1cddb..ae8b70e1ec 100644 --- a/src/oci/generative_ai_agent/models/data_source.py +++ b/src/oci/generative_ai_agent/models/data_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/data_source_collection.py b/src/oci/generative_ai_agent/models/data_source_collection.py index f637741254..7d7ab6976d 100644 --- a/src/oci/generative_ai_agent/models/data_source_collection.py +++ b/src/oci/generative_ai_agent/models/data_source_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/data_source_config.py b/src/oci/generative_ai_agent/models/data_source_config.py index 4be812d4be..8288465830 100644 --- a/src/oci/generative_ai_agent/models/data_source_config.py +++ b/src/oci/generative_ai_agent/models/data_source_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/data_source_summary.py b/src/oci/generative_ai_agent/models/data_source_summary.py index 6b407d7208..655364ca64 100644 --- a/src/oci/generative_ai_agent/models/data_source_summary.py +++ b/src/oci/generative_ai_agent/models/data_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/database_connection.py b/src/oci/generative_ai_agent/models/database_connection.py index e944a6156f..c74f6ec73a 100644 --- a/src/oci/generative_ai_agent/models/database_connection.py +++ b/src/oci/generative_ai_agent/models/database_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/database_function.py b/src/oci/generative_ai_agent/models/database_function.py index 37fafcaf05..f3263aa048 100644 --- a/src/oci/generative_ai_agent/models/database_function.py +++ b/src/oci/generative_ai_agent/models/database_function.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/database_tool_connection.py b/src/oci/generative_ai_agent/models/database_tool_connection.py index 74bd5bacea..32b8f576a3 100644 --- a/src/oci/generative_ai_agent/models/database_tool_connection.py +++ b/src/oci/generative_ai_agent/models/database_tool_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/default_index_config.py b/src/oci/generative_ai_agent/models/default_index_config.py index f9ba5f71ec..29c8659286 100644 --- a/src/oci/generative_ai_agent/models/default_index_config.py +++ b/src/oci/generative_ai_agent/models/default_index_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/idcs_secret.py b/src/oci/generative_ai_agent/models/idcs_secret.py index 3092f581be..15d1a7e638 100644 --- a/src/oci/generative_ai_agent/models/idcs_secret.py +++ b/src/oci/generative_ai_agent/models/idcs_secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/index.py b/src/oci/generative_ai_agent/models/index.py index 1b5dc3fc0c..6641b49b20 100644 --- a/src/oci/generative_ai_agent/models/index.py +++ b/src/oci/generative_ai_agent/models/index.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/index_config.py b/src/oci/generative_ai_agent/models/index_config.py index 4b7fb5e421..b77e84d98e 100644 --- a/src/oci/generative_ai_agent/models/index_config.py +++ b/src/oci/generative_ai_agent/models/index_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/index_schema.py b/src/oci/generative_ai_agent/models/index_schema.py index 0d6ee5a014..a52d3b59c0 100644 --- a/src/oci/generative_ai_agent/models/index_schema.py +++ b/src/oci/generative_ai_agent/models/index_schema.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/knowledge_base.py b/src/oci/generative_ai_agent/models/knowledge_base.py index 5cf300fcfd..2ed16ffcda 100644 --- a/src/oci/generative_ai_agent/models/knowledge_base.py +++ b/src/oci/generative_ai_agent/models/knowledge_base.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/knowledge_base_collection.py b/src/oci/generative_ai_agent/models/knowledge_base_collection.py index 887c712ca8..eb7cf749b6 100644 --- a/src/oci/generative_ai_agent/models/knowledge_base_collection.py +++ b/src/oci/generative_ai_agent/models/knowledge_base_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/knowledge_base_statistics.py b/src/oci/generative_ai_agent/models/knowledge_base_statistics.py index 4b8cdd4736..c0bc1bce1a 100644 --- a/src/oci/generative_ai_agent/models/knowledge_base_statistics.py +++ b/src/oci/generative_ai_agent/models/knowledge_base_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/knowledge_base_summary.py b/src/oci/generative_ai_agent/models/knowledge_base_summary.py index 054a2ff125..d4b69b2894 100644 --- a/src/oci/generative_ai_agent/models/knowledge_base_summary.py +++ b/src/oci/generative_ai_agent/models/knowledge_base_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/object_storage_prefix.py b/src/oci/generative_ai_agent/models/object_storage_prefix.py index ab1672cde1..2e62e5045f 100644 --- a/src/oci/generative_ai_agent/models/object_storage_prefix.py +++ b/src/oci/generative_ai_agent/models/object_storage_prefix.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/oci_database_config.py b/src/oci/generative_ai_agent/models/oci_database_config.py index 616e309e6f..c11fd33960 100644 --- a/src/oci/generative_ai_agent/models/oci_database_config.py +++ b/src/oci/generative_ai_agent/models/oci_database_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/oci_object_storage_data_source_config.py b/src/oci/generative_ai_agent/models/oci_object_storage_data_source_config.py index 553c5a685c..12bf5891a9 100644 --- a/src/oci/generative_ai_agent/models/oci_object_storage_data_source_config.py +++ b/src/oci/generative_ai_agent/models/oci_object_storage_data_source_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/oci_open_search_index_config.py b/src/oci/generative_ai_agent/models/oci_open_search_index_config.py index c0912cbc9b..08818832e9 100644 --- a/src/oci/generative_ai_agent/models/oci_open_search_index_config.py +++ b/src/oci/generative_ai_agent/models/oci_open_search_index_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/secret_detail.py b/src/oci/generative_ai_agent/models/secret_detail.py index 19cbe95d50..d9b478c534 100644 --- a/src/oci/generative_ai_agent/models/secret_detail.py +++ b/src/oci/generative_ai_agent/models/secret_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/session_config.py b/src/oci/generative_ai_agent/models/session_config.py index bc698a4052..4a3799f10e 100644 --- a/src/oci/generative_ai_agent/models/session_config.py +++ b/src/oci/generative_ai_agent/models/session_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/update_agent_details.py b/src/oci/generative_ai_agent/models/update_agent_details.py index f06958616b..5c2c51c0be 100644 --- a/src/oci/generative_ai_agent/models/update_agent_details.py +++ b/src/oci/generative_ai_agent/models/update_agent_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/update_agent_endpoint_details.py b/src/oci/generative_ai_agent/models/update_agent_endpoint_details.py index 98af765dff..ee7e84c2a6 100644 --- a/src/oci/generative_ai_agent/models/update_agent_endpoint_details.py +++ b/src/oci/generative_ai_agent/models/update_agent_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/update_data_source_details.py b/src/oci/generative_ai_agent/models/update_data_source_details.py index 0d8693adeb..ecb80d3570 100644 --- a/src/oci/generative_ai_agent/models/update_data_source_details.py +++ b/src/oci/generative_ai_agent/models/update_data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/update_knowledge_base_details.py b/src/oci/generative_ai_agent/models/update_knowledge_base_details.py index 749f0083d8..ce86ae0c52 100644 --- a/src/oci/generative_ai_agent/models/update_knowledge_base_details.py +++ b/src/oci/generative_ai_agent/models/update_knowledge_base_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/work_request.py b/src/oci/generative_ai_agent/models/work_request.py index e70bea3a2a..ab6887bf40 100644 --- a/src/oci/generative_ai_agent/models/work_request.py +++ b/src/oci/generative_ai_agent/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/work_request_error.py b/src/oci/generative_ai_agent/models/work_request_error.py index 5f3d5421e9..e3a1ca2870 100644 --- a/src/oci/generative_ai_agent/models/work_request_error.py +++ b/src/oci/generative_ai_agent/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/work_request_error_collection.py b/src/oci/generative_ai_agent/models/work_request_error_collection.py index 6a83ebd501..54ae12b285 100644 --- a/src/oci/generative_ai_agent/models/work_request_error_collection.py +++ b/src/oci/generative_ai_agent/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/work_request_log_entry.py b/src/oci/generative_ai_agent/models/work_request_log_entry.py index 32a5456ac9..c1fe768a94 100644 --- a/src/oci/generative_ai_agent/models/work_request_log_entry.py +++ b/src/oci/generative_ai_agent/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/work_request_log_entry_collection.py b/src/oci/generative_ai_agent/models/work_request_log_entry_collection.py index e68812be35..a6bfe9b5e2 100644 --- a/src/oci/generative_ai_agent/models/work_request_log_entry_collection.py +++ b/src/oci/generative_ai_agent/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/work_request_resource.py b/src/oci/generative_ai_agent/models/work_request_resource.py index 9d9dce879b..a559f47405 100644 --- a/src/oci/generative_ai_agent/models/work_request_resource.py +++ b/src/oci/generative_ai_agent/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/work_request_summary.py b/src/oci/generative_ai_agent/models/work_request_summary.py index 885dd36dab..1e2b8ce767 100644 --- a/src/oci/generative_ai_agent/models/work_request_summary.py +++ b/src/oci/generative_ai_agent/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent/models/work_request_summary_collection.py b/src/oci/generative_ai_agent/models/work_request_summary_collection.py index 797d03a951..82e69d4a59 100644 --- a/src/oci/generative_ai_agent/models/work_request_summary_collection.py +++ b/src/oci/generative_ai_agent/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/__init__.py b/src/oci/generative_ai_agent_runtime/__init__.py index 0c1aa30991..30b4fed5ff 100644 --- a/src/oci/generative_ai_agent_runtime/__init__.py +++ b/src/oci/generative_ai_agent_runtime/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py b/src/oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py index 4d82cc2041..6883dccf1d 100644 --- a/src/oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py +++ b/src/oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client_composite_operations.py b/src/oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client_composite_operations.py index f074641ed9..9c178d7c80 100644 --- a/src/oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client_composite_operations.py +++ b/src/oci/generative_ai_agent_runtime/generative_ai_agent_runtime_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/__init__.py b/src/oci/generative_ai_agent_runtime/models/__init__.py index 09f1b83b22..8b2220f8a3 100644 --- a/src/oci/generative_ai_agent_runtime/models/__init__.py +++ b/src/oci/generative_ai_agent_runtime/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/chat_details.py b/src/oci/generative_ai_agent_runtime/models/chat_details.py index 3e90614f9c..a58b02091b 100644 --- a/src/oci/generative_ai_agent_runtime/models/chat_details.py +++ b/src/oci/generative_ai_agent_runtime/models/chat_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/chat_result.py b/src/oci/generative_ai_agent_runtime/models/chat_result.py index f5dacef1c2..6a3abdbce9 100644 --- a/src/oci/generative_ai_agent_runtime/models/chat_result.py +++ b/src/oci/generative_ai_agent_runtime/models/chat_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/citation.py b/src/oci/generative_ai_agent_runtime/models/citation.py index 8a3f320ad7..171c95462b 100644 --- a/src/oci/generative_ai_agent_runtime/models/citation.py +++ b/src/oci/generative_ai_agent_runtime/models/citation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/create_session_details.py b/src/oci/generative_ai_agent_runtime/models/create_session_details.py index e80ca10fcf..a239d5ac54 100644 --- a/src/oci/generative_ai_agent_runtime/models/create_session_details.py +++ b/src/oci/generative_ai_agent_runtime/models/create_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/error_trace.py b/src/oci/generative_ai_agent_runtime/models/error_trace.py index 7413025815..0ffa96d2c8 100644 --- a/src/oci/generative_ai_agent_runtime/models/error_trace.py +++ b/src/oci/generative_ai_agent_runtime/models/error_trace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/generation_trace.py b/src/oci/generative_ai_agent_runtime/models/generation_trace.py index 06a0f9803e..bcd16e45dc 100644 --- a/src/oci/generative_ai_agent_runtime/models/generation_trace.py +++ b/src/oci/generative_ai_agent_runtime/models/generation_trace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/message.py b/src/oci/generative_ai_agent_runtime/models/message.py index 540e2fd6df..1b4cfeec3e 100644 --- a/src/oci/generative_ai_agent_runtime/models/message.py +++ b/src/oci/generative_ai_agent_runtime/models/message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/message_content.py b/src/oci/generative_ai_agent_runtime/models/message_content.py index 7b0f18b6c6..f0913098e6 100644 --- a/src/oci/generative_ai_agent_runtime/models/message_content.py +++ b/src/oci/generative_ai_agent_runtime/models/message_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/oci_database_source_location.py b/src/oci/generative_ai_agent_runtime/models/oci_database_source_location.py index bc54ec06c8..d5f091fc2d 100644 --- a/src/oci/generative_ai_agent_runtime/models/oci_database_source_location.py +++ b/src/oci/generative_ai_agent_runtime/models/oci_database_source_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/oci_object_storage_source_location.py b/src/oci/generative_ai_agent_runtime/models/oci_object_storage_source_location.py index 3b879a6dc2..92996ee422 100644 --- a/src/oci/generative_ai_agent_runtime/models/oci_object_storage_source_location.py +++ b/src/oci/generative_ai_agent_runtime/models/oci_object_storage_source_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/oci_open_search_source_location.py b/src/oci/generative_ai_agent_runtime/models/oci_open_search_source_location.py index ccde106071..be084ba492 100644 --- a/src/oci/generative_ai_agent_runtime/models/oci_open_search_source_location.py +++ b/src/oci/generative_ai_agent_runtime/models/oci_open_search_source_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/retrieval_trace.py b/src/oci/generative_ai_agent_runtime/models/retrieval_trace.py index 2df55a2463..f9b9a1099d 100644 --- a/src/oci/generative_ai_agent_runtime/models/retrieval_trace.py +++ b/src/oci/generative_ai_agent_runtime/models/retrieval_trace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/session.py b/src/oci/generative_ai_agent_runtime/models/session.py index 4c25e4d8b6..06d152003e 100644 --- a/src/oci/generative_ai_agent_runtime/models/session.py +++ b/src/oci/generative_ai_agent_runtime/models/session.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/source_location.py b/src/oci/generative_ai_agent_runtime/models/source_location.py index 80d5e10185..644e9575c5 100644 --- a/src/oci/generative_ai_agent_runtime/models/source_location.py +++ b/src/oci/generative_ai_agent_runtime/models/source_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/trace.py b/src/oci/generative_ai_agent_runtime/models/trace.py index 8219cfeca3..3f668aa17e 100644 --- a/src/oci/generative_ai_agent_runtime/models/trace.py +++ b/src/oci/generative_ai_agent_runtime/models/trace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_agent_runtime/models/update_session_details.py b/src/oci/generative_ai_agent_runtime/models/update_session_details.py index 76d77f72ec..48d89ff990 100644 --- a/src/oci/generative_ai_agent_runtime/models/update_session_details.py +++ b/src/oci/generative_ai_agent_runtime/models/update_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240531 diff --git a/src/oci/generative_ai_inference/__init__.py b/src/oci/generative_ai_inference/__init__.py index 68dbefc13c..f47008196c 100644 --- a/src/oci/generative_ai_inference/__init__.py +++ b/src/oci/generative_ai_inference/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/generative_ai_inference_client.py b/src/oci/generative_ai_inference/generative_ai_inference_client.py index 6de2732394..1dd5438904 100644 --- a/src/oci/generative_ai_inference/generative_ai_inference_client.py +++ b/src/oci/generative_ai_inference/generative_ai_inference_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/generative_ai_inference_client_composite_operations.py b/src/oci/generative_ai_inference/generative_ai_inference_client_composite_operations.py index 682904de96..faa37393fa 100644 --- a/src/oci/generative_ai_inference/generative_ai_inference_client_composite_operations.py +++ b/src/oci/generative_ai_inference/generative_ai_inference_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/__init__.py b/src/oci/generative_ai_inference/models/__init__.py index 3cd0d3cfc5..437aa608ce 100644 --- a/src/oci/generative_ai_inference/models/__init__.py +++ b/src/oci/generative_ai_inference/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/assistant_message.py b/src/oci/generative_ai_inference/models/assistant_message.py index 9b51f2a8e0..ccda9830ab 100644 --- a/src/oci/generative_ai_inference/models/assistant_message.py +++ b/src/oci/generative_ai_inference/models/assistant_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/base_chat_request.py b/src/oci/generative_ai_inference/models/base_chat_request.py index fc7b37cf76..82fce05631 100644 --- a/src/oci/generative_ai_inference/models/base_chat_request.py +++ b/src/oci/generative_ai_inference/models/base_chat_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/base_chat_response.py b/src/oci/generative_ai_inference/models/base_chat_response.py index 47a9465694..059774cd74 100644 --- a/src/oci/generative_ai_inference/models/base_chat_response.py +++ b/src/oci/generative_ai_inference/models/base_chat_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/chat_choice.py b/src/oci/generative_ai_inference/models/chat_choice.py index 627022dbae..bc42aedcda 100644 --- a/src/oci/generative_ai_inference/models/chat_choice.py +++ b/src/oci/generative_ai_inference/models/chat_choice.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/chat_content.py b/src/oci/generative_ai_inference/models/chat_content.py index 2a2e00ff2d..f793cc4719 100644 --- a/src/oci/generative_ai_inference/models/chat_content.py +++ b/src/oci/generative_ai_inference/models/chat_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/chat_details.py b/src/oci/generative_ai_inference/models/chat_details.py index b90c4f89b2..79fc21940d 100644 --- a/src/oci/generative_ai_inference/models/chat_details.py +++ b/src/oci/generative_ai_inference/models/chat_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/chat_result.py b/src/oci/generative_ai_inference/models/chat_result.py index 8f55dd9e63..0b960cb524 100644 --- a/src/oci/generative_ai_inference/models/chat_result.py +++ b/src/oci/generative_ai_inference/models/chat_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/choice.py b/src/oci/generative_ai_inference/models/choice.py index 7614779996..046fabeb7e 100644 --- a/src/oci/generative_ai_inference/models/choice.py +++ b/src/oci/generative_ai_inference/models/choice.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/citation.py b/src/oci/generative_ai_inference/models/citation.py index 054babb07d..6bda318f52 100644 --- a/src/oci/generative_ai_inference/models/citation.py +++ b/src/oci/generative_ai_inference/models/citation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_chat_bot_message.py b/src/oci/generative_ai_inference/models/cohere_chat_bot_message.py index 84dc7a4532..295ed4d685 100644 --- a/src/oci/generative_ai_inference/models/cohere_chat_bot_message.py +++ b/src/oci/generative_ai_inference/models/cohere_chat_bot_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_chat_request.py b/src/oci/generative_ai_inference/models/cohere_chat_request.py index 1c401fa7f5..c37f65ffa2 100644 --- a/src/oci/generative_ai_inference/models/cohere_chat_request.py +++ b/src/oci/generative_ai_inference/models/cohere_chat_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_chat_response.py b/src/oci/generative_ai_inference/models/cohere_chat_response.py index 1e9a76116f..ac90301f87 100644 --- a/src/oci/generative_ai_inference/models/cohere_chat_response.py +++ b/src/oci/generative_ai_inference/models/cohere_chat_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_llm_inference_request.py b/src/oci/generative_ai_inference/models/cohere_llm_inference_request.py index b20be9098f..7b02027003 100644 --- a/src/oci/generative_ai_inference/models/cohere_llm_inference_request.py +++ b/src/oci/generative_ai_inference/models/cohere_llm_inference_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_llm_inference_response.py b/src/oci/generative_ai_inference/models/cohere_llm_inference_response.py index 7b27c22d80..96eb6bb433 100644 --- a/src/oci/generative_ai_inference/models/cohere_llm_inference_response.py +++ b/src/oci/generative_ai_inference/models/cohere_llm_inference_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_message.py b/src/oci/generative_ai_inference/models/cohere_message.py index aab606a603..e0ee34da91 100644 --- a/src/oci/generative_ai_inference/models/cohere_message.py +++ b/src/oci/generative_ai_inference/models/cohere_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_parameter_definition.py b/src/oci/generative_ai_inference/models/cohere_parameter_definition.py index 9a5b857777..7d0a2c594c 100644 --- a/src/oci/generative_ai_inference/models/cohere_parameter_definition.py +++ b/src/oci/generative_ai_inference/models/cohere_parameter_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_response_format.py b/src/oci/generative_ai_inference/models/cohere_response_format.py index e0f736d7f4..6de3d52911 100644 --- a/src/oci/generative_ai_inference/models/cohere_response_format.py +++ b/src/oci/generative_ai_inference/models/cohere_response_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_response_json_format.py b/src/oci/generative_ai_inference/models/cohere_response_json_format.py index 0d9695e6d4..4e027ee726 100644 --- a/src/oci/generative_ai_inference/models/cohere_response_json_format.py +++ b/src/oci/generative_ai_inference/models/cohere_response_json_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_response_text_format.py b/src/oci/generative_ai_inference/models/cohere_response_text_format.py index 088dbcf674..2a76f3b6c0 100644 --- a/src/oci/generative_ai_inference/models/cohere_response_text_format.py +++ b/src/oci/generative_ai_inference/models/cohere_response_text_format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_system_message.py b/src/oci/generative_ai_inference/models/cohere_system_message.py index 90f9eb9329..dfb497204a 100644 --- a/src/oci/generative_ai_inference/models/cohere_system_message.py +++ b/src/oci/generative_ai_inference/models/cohere_system_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_tool.py b/src/oci/generative_ai_inference/models/cohere_tool.py index f8db940ae8..c35b8c97aa 100644 --- a/src/oci/generative_ai_inference/models/cohere_tool.py +++ b/src/oci/generative_ai_inference/models/cohere_tool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_tool_call.py b/src/oci/generative_ai_inference/models/cohere_tool_call.py index ea6aa4aa81..54c5ed7487 100644 --- a/src/oci/generative_ai_inference/models/cohere_tool_call.py +++ b/src/oci/generative_ai_inference/models/cohere_tool_call.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_tool_message.py b/src/oci/generative_ai_inference/models/cohere_tool_message.py index a93b74d767..9663169c15 100644 --- a/src/oci/generative_ai_inference/models/cohere_tool_message.py +++ b/src/oci/generative_ai_inference/models/cohere_tool_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_tool_result.py b/src/oci/generative_ai_inference/models/cohere_tool_result.py index 57e0272c1f..7ee3acb103 100644 --- a/src/oci/generative_ai_inference/models/cohere_tool_result.py +++ b/src/oci/generative_ai_inference/models/cohere_tool_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/cohere_user_message.py b/src/oci/generative_ai_inference/models/cohere_user_message.py index 58d2a52d8c..5963eb4396 100644 --- a/src/oci/generative_ai_inference/models/cohere_user_message.py +++ b/src/oci/generative_ai_inference/models/cohere_user_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/dedicated_serving_mode.py b/src/oci/generative_ai_inference/models/dedicated_serving_mode.py index 4c6fbe72f6..b39773e59a 100644 --- a/src/oci/generative_ai_inference/models/dedicated_serving_mode.py +++ b/src/oci/generative_ai_inference/models/dedicated_serving_mode.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/embed_text_details.py b/src/oci/generative_ai_inference/models/embed_text_details.py index 86ec43b59c..7220344ccc 100644 --- a/src/oci/generative_ai_inference/models/embed_text_details.py +++ b/src/oci/generative_ai_inference/models/embed_text_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/embed_text_result.py b/src/oci/generative_ai_inference/models/embed_text_result.py index 2159d2c2b3..5c69b8f24c 100644 --- a/src/oci/generative_ai_inference/models/embed_text_result.py +++ b/src/oci/generative_ai_inference/models/embed_text_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/generate_text_details.py b/src/oci/generative_ai_inference/models/generate_text_details.py index ea5e0a091a..0380e07442 100644 --- a/src/oci/generative_ai_inference/models/generate_text_details.py +++ b/src/oci/generative_ai_inference/models/generate_text_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/generate_text_result.py b/src/oci/generative_ai_inference/models/generate_text_result.py index 7e2bd1bcf4..688773b448 100644 --- a/src/oci/generative_ai_inference/models/generate_text_result.py +++ b/src/oci/generative_ai_inference/models/generate_text_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/generated_text.py b/src/oci/generative_ai_inference/models/generated_text.py index f0068ceab4..eef60f7fab 100644 --- a/src/oci/generative_ai_inference/models/generated_text.py +++ b/src/oci/generative_ai_inference/models/generated_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/generic_chat_request.py b/src/oci/generative_ai_inference/models/generic_chat_request.py index 8e777dd851..e5d3062d75 100644 --- a/src/oci/generative_ai_inference/models/generic_chat_request.py +++ b/src/oci/generative_ai_inference/models/generic_chat_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/generic_chat_response.py b/src/oci/generative_ai_inference/models/generic_chat_response.py index 1b480cda86..feda1238a3 100644 --- a/src/oci/generative_ai_inference/models/generic_chat_response.py +++ b/src/oci/generative_ai_inference/models/generic_chat_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/image_content.py b/src/oci/generative_ai_inference/models/image_content.py index 13e7c0fc06..769ec70677 100644 --- a/src/oci/generative_ai_inference/models/image_content.py +++ b/src/oci/generative_ai_inference/models/image_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/image_url.py b/src/oci/generative_ai_inference/models/image_url.py index 6ce1c11212..8908f84498 100644 --- a/src/oci/generative_ai_inference/models/image_url.py +++ b/src/oci/generative_ai_inference/models/image_url.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/llama_llm_inference_request.py b/src/oci/generative_ai_inference/models/llama_llm_inference_request.py index 8ea9fafb00..5d20898ebe 100644 --- a/src/oci/generative_ai_inference/models/llama_llm_inference_request.py +++ b/src/oci/generative_ai_inference/models/llama_llm_inference_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/llama_llm_inference_response.py b/src/oci/generative_ai_inference/models/llama_llm_inference_response.py index 454fdbfa77..e472079dea 100644 --- a/src/oci/generative_ai_inference/models/llama_llm_inference_response.py +++ b/src/oci/generative_ai_inference/models/llama_llm_inference_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/llm_inference_request.py b/src/oci/generative_ai_inference/models/llm_inference_request.py index 034b2d76b2..8a55128d3f 100644 --- a/src/oci/generative_ai_inference/models/llm_inference_request.py +++ b/src/oci/generative_ai_inference/models/llm_inference_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/llm_inference_response.py b/src/oci/generative_ai_inference/models/llm_inference_response.py index 6af294f302..8aa0a406c6 100644 --- a/src/oci/generative_ai_inference/models/llm_inference_response.py +++ b/src/oci/generative_ai_inference/models/llm_inference_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/logprobs.py b/src/oci/generative_ai_inference/models/logprobs.py index 72edfefc7f..e926f40824 100644 --- a/src/oci/generative_ai_inference/models/logprobs.py +++ b/src/oci/generative_ai_inference/models/logprobs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/message.py b/src/oci/generative_ai_inference/models/message.py index 3ccc846c1d..5aab6067f9 100644 --- a/src/oci/generative_ai_inference/models/message.py +++ b/src/oci/generative_ai_inference/models/message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/on_demand_serving_mode.py b/src/oci/generative_ai_inference/models/on_demand_serving_mode.py index 82f36a2b9f..d7cbc80084 100644 --- a/src/oci/generative_ai_inference/models/on_demand_serving_mode.py +++ b/src/oci/generative_ai_inference/models/on_demand_serving_mode.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/search_query.py b/src/oci/generative_ai_inference/models/search_query.py index 0b7cf337b9..394cb13ef6 100644 --- a/src/oci/generative_ai_inference/models/search_query.py +++ b/src/oci/generative_ai_inference/models/search_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/serving_mode.py b/src/oci/generative_ai_inference/models/serving_mode.py index 6dd4b4a3ca..e2c6e898e6 100644 --- a/src/oci/generative_ai_inference/models/serving_mode.py +++ b/src/oci/generative_ai_inference/models/serving_mode.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/summarize_text_details.py b/src/oci/generative_ai_inference/models/summarize_text_details.py index 7959b9bbf6..c0c442d6c6 100644 --- a/src/oci/generative_ai_inference/models/summarize_text_details.py +++ b/src/oci/generative_ai_inference/models/summarize_text_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/summarize_text_result.py b/src/oci/generative_ai_inference/models/summarize_text_result.py index 51ee9bee33..c670dfed0a 100644 --- a/src/oci/generative_ai_inference/models/summarize_text_result.py +++ b/src/oci/generative_ai_inference/models/summarize_text_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/system_message.py b/src/oci/generative_ai_inference/models/system_message.py index e731df2409..98311a1fcf 100644 --- a/src/oci/generative_ai_inference/models/system_message.py +++ b/src/oci/generative_ai_inference/models/system_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/text_content.py b/src/oci/generative_ai_inference/models/text_content.py index 9ad8b3b1dd..115f5f231f 100644 --- a/src/oci/generative_ai_inference/models/text_content.py +++ b/src/oci/generative_ai_inference/models/text_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/token_likelihood.py b/src/oci/generative_ai_inference/models/token_likelihood.py index a866ac2091..28623bccdd 100644 --- a/src/oci/generative_ai_inference/models/token_likelihood.py +++ b/src/oci/generative_ai_inference/models/token_likelihood.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generative_ai_inference/models/user_message.py b/src/oci/generative_ai_inference/models/user_message.py index 33fdc97c9e..08e0f665c0 100644 --- a/src/oci/generative_ai_inference/models/user_message.py +++ b/src/oci/generative_ai_inference/models/user_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20231130 diff --git a/src/oci/generic_artifacts_content/__init__.py b/src/oci/generic_artifacts_content/__init__.py index 1b47a9aaa6..b16dca4a47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 28624e921d..3605530422 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 525f5d81c7..877a9dbcda 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/generic_artifacts_content/models/__init__.py b/src/oci/generic_artifacts_content/models/__init__.py index d8c4d38f47..23668eac13 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/generic_artifacts_content/models/generic_artifact.py b/src/oci/generic_artifacts_content/models/generic_artifact.py index 097c36a3b0..5ea1793fa7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/globally_distributed_database/__init__.py b/src/oci/globally_distributed_database/__init__.py index 76bcc83474..efc19ccb9a 100644 --- a/src/oci/globally_distributed_database/__init__.py +++ b/src/oci/globally_distributed_database/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/__init__.py b/src/oci/globally_distributed_database/models/__init__.py index d7fd94a46d..409b18a4ab 100644 --- a/src/oci/globally_distributed_database/models/__init__.py +++ b/src/oci/globally_distributed_database/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/change_private_endpoint_compartment_details.py b/src/oci/globally_distributed_database/models/change_private_endpoint_compartment_details.py index d5939c040a..e52a585bde 100644 --- a/src/oci/globally_distributed_database/models/change_private_endpoint_compartment_details.py +++ b/src/oci/globally_distributed_database/models/change_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/change_sharded_database_compartment_details.py b/src/oci/globally_distributed_database/models/change_sharded_database_compartment_details.py index ca7b8508dd..7fcf9c1669 100644 --- a/src/oci/globally_distributed_database/models/change_sharded_database_compartment_details.py +++ b/src/oci/globally_distributed_database/models/change_sharded_database_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/configure_sharded_database_gsms_details.py b/src/oci/globally_distributed_database/models/configure_sharded_database_gsms_details.py index 861c7514be..f8582b26e0 100644 --- a/src/oci/globally_distributed_database/models/configure_sharded_database_gsms_details.py +++ b/src/oci/globally_distributed_database/models/configure_sharded_database_gsms_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/connection_string.py b/src/oci/globally_distributed_database/models/connection_string.py index dc18370f27..a72ec1aefb 100644 --- a/src/oci/globally_distributed_database/models/connection_string.py +++ b/src/oci/globally_distributed_database/models/connection_string.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/create_dedicated_catalog_detail.py b/src/oci/globally_distributed_database/models/create_dedicated_catalog_detail.py index 018bdf5f08..cf910d3179 100644 --- a/src/oci/globally_distributed_database/models/create_dedicated_catalog_detail.py +++ b/src/oci/globally_distributed_database/models/create_dedicated_catalog_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/create_dedicated_shard_detail.py b/src/oci/globally_distributed_database/models/create_dedicated_shard_detail.py index 387d7109c8..ef1eb83fa8 100644 --- a/src/oci/globally_distributed_database/models/create_dedicated_shard_detail.py +++ b/src/oci/globally_distributed_database/models/create_dedicated_shard_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/create_dedicated_sharded_database.py b/src/oci/globally_distributed_database/models/create_dedicated_sharded_database.py index 721d2b7da5..f160bde99e 100644 --- a/src/oci/globally_distributed_database/models/create_dedicated_sharded_database.py +++ b/src/oci/globally_distributed_database/models/create_dedicated_sharded_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/create_private_endpoint_details.py b/src/oci/globally_distributed_database/models/create_private_endpoint_details.py index f33a05b6a0..6d4b14dfd0 100644 --- a/src/oci/globally_distributed_database/models/create_private_endpoint_details.py +++ b/src/oci/globally_distributed_database/models/create_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/create_sharded_database_details.py b/src/oci/globally_distributed_database/models/create_sharded_database_details.py index 6687c441a2..eb45fa86cd 100644 --- a/src/oci/globally_distributed_database/models/create_sharded_database_details.py +++ b/src/oci/globally_distributed_database/models/create_sharded_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/dedicated_catalog_details.py b/src/oci/globally_distributed_database/models/dedicated_catalog_details.py index b8cc832a7e..cdf445548d 100644 --- a/src/oci/globally_distributed_database/models/dedicated_catalog_details.py +++ b/src/oci/globally_distributed_database/models/dedicated_catalog_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/dedicated_shard_details.py b/src/oci/globally_distributed_database/models/dedicated_shard_details.py index a9fbd89f24..dc089f1487 100644 --- a/src/oci/globally_distributed_database/models/dedicated_shard_details.py +++ b/src/oci/globally_distributed_database/models/dedicated_shard_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/dedicated_shard_or_catalog_encryption_key_details.py b/src/oci/globally_distributed_database/models/dedicated_shard_or_catalog_encryption_key_details.py index b7247aa93d..a7349b01b3 100644 --- a/src/oci/globally_distributed_database/models/dedicated_shard_or_catalog_encryption_key_details.py +++ b/src/oci/globally_distributed_database/models/dedicated_shard_or_catalog_encryption_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/dedicated_sharded_database.py b/src/oci/globally_distributed_database/models/dedicated_sharded_database.py index fa5e0ed0b3..e4bceab55a 100644 --- a/src/oci/globally_distributed_database/models/dedicated_sharded_database.py +++ b/src/oci/globally_distributed_database/models/dedicated_sharded_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/dedicated_sharded_database_summary.py b/src/oci/globally_distributed_database/models/dedicated_sharded_database_summary.py index 03c69b13eb..b3b71bc593 100644 --- a/src/oci/globally_distributed_database/models/dedicated_sharded_database_summary.py +++ b/src/oci/globally_distributed_database/models/dedicated_sharded_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/fetch_shardable_cloud_autonomous_vm_clusters_details.py b/src/oci/globally_distributed_database/models/fetch_shardable_cloud_autonomous_vm_clusters_details.py index dffa7af978..e9a0d24ca0 100644 --- a/src/oci/globally_distributed_database/models/fetch_shardable_cloud_autonomous_vm_clusters_details.py +++ b/src/oci/globally_distributed_database/models/fetch_shardable_cloud_autonomous_vm_clusters_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/generate_wallet_details.py b/src/oci/globally_distributed_database/models/generate_wallet_details.py index becdf767e1..ea8e9c199d 100644 --- a/src/oci/globally_distributed_database/models/generate_wallet_details.py +++ b/src/oci/globally_distributed_database/models/generate_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/gsm_details.py b/src/oci/globally_distributed_database/models/gsm_details.py index 782dae3efa..fe46c38a02 100644 --- a/src/oci/globally_distributed_database/models/gsm_details.py +++ b/src/oci/globally_distributed_database/models/gsm_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/patch_insert_instruction.py b/src/oci/globally_distributed_database/models/patch_insert_instruction.py index 2eccb9383b..571e3bba60 100644 --- a/src/oci/globally_distributed_database/models/patch_insert_instruction.py +++ b/src/oci/globally_distributed_database/models/patch_insert_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/patch_instruction.py b/src/oci/globally_distributed_database/models/patch_instruction.py index 3fe0b126d8..55c60860bf 100644 --- a/src/oci/globally_distributed_database/models/patch_instruction.py +++ b/src/oci/globally_distributed_database/models/patch_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/patch_merge_instruction.py b/src/oci/globally_distributed_database/models/patch_merge_instruction.py index aa65165095..7e163453c0 100644 --- a/src/oci/globally_distributed_database/models/patch_merge_instruction.py +++ b/src/oci/globally_distributed_database/models/patch_merge_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/patch_remove_instruction.py b/src/oci/globally_distributed_database/models/patch_remove_instruction.py index 7d0e43296e..cd7f0d35bf 100644 --- a/src/oci/globally_distributed_database/models/patch_remove_instruction.py +++ b/src/oci/globally_distributed_database/models/patch_remove_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/patch_sharded_database_details.py b/src/oci/globally_distributed_database/models/patch_sharded_database_details.py index 6fb0b7d2a4..945d2f2363 100644 --- a/src/oci/globally_distributed_database/models/patch_sharded_database_details.py +++ b/src/oci/globally_distributed_database/models/patch_sharded_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/prevalidate_create_payload.py b/src/oci/globally_distributed_database/models/prevalidate_create_payload.py index f6fd37b648..05ee56732f 100644 --- a/src/oci/globally_distributed_database/models/prevalidate_create_payload.py +++ b/src/oci/globally_distributed_database/models/prevalidate_create_payload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/prevalidate_patch_payload.py b/src/oci/globally_distributed_database/models/prevalidate_patch_payload.py index b648e9bbf4..2eef72c296 100644 --- a/src/oci/globally_distributed_database/models/prevalidate_patch_payload.py +++ b/src/oci/globally_distributed_database/models/prevalidate_patch_payload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/prevalidate_payload.py b/src/oci/globally_distributed_database/models/prevalidate_payload.py index 68c4f2ab81..3119a3d748 100644 --- a/src/oci/globally_distributed_database/models/prevalidate_payload.py +++ b/src/oci/globally_distributed_database/models/prevalidate_payload.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/prevalidate_sharded_database_details.py b/src/oci/globally_distributed_database/models/prevalidate_sharded_database_details.py index a67e739406..921902c436 100644 --- a/src/oci/globally_distributed_database/models/prevalidate_sharded_database_details.py +++ b/src/oci/globally_distributed_database/models/prevalidate_sharded_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/prevalidate_sharded_database_result.py b/src/oci/globally_distributed_database/models/prevalidate_sharded_database_result.py index fe6a0d13cd..a2fc7afb57 100644 --- a/src/oci/globally_distributed_database/models/prevalidate_sharded_database_result.py +++ b/src/oci/globally_distributed_database/models/prevalidate_sharded_database_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/private_endpoint.py b/src/oci/globally_distributed_database/models/private_endpoint.py index 974f88fec2..ea053d5536 100644 --- a/src/oci/globally_distributed_database/models/private_endpoint.py +++ b/src/oci/globally_distributed_database/models/private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/private_endpoint_collection.py b/src/oci/globally_distributed_database/models/private_endpoint_collection.py index 8155a32622..0fa1682613 100644 --- a/src/oci/globally_distributed_database/models/private_endpoint_collection.py +++ b/src/oci/globally_distributed_database/models/private_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/private_endpoint_summary.py b/src/oci/globally_distributed_database/models/private_endpoint_summary.py index 6a5367925c..5912429a7e 100644 --- a/src/oci/globally_distributed_database/models/private_endpoint_summary.py +++ b/src/oci/globally_distributed_database/models/private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/shardable_cloud_autonomous_vm_cluster_summary.py b/src/oci/globally_distributed_database/models/shardable_cloud_autonomous_vm_cluster_summary.py index aa65b5198c..0ceca3637f 100644 --- a/src/oci/globally_distributed_database/models/shardable_cloud_autonomous_vm_cluster_summary.py +++ b/src/oci/globally_distributed_database/models/shardable_cloud_autonomous_vm_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/shardable_cloud_autonomous_vm_clusters.py b/src/oci/globally_distributed_database/models/shardable_cloud_autonomous_vm_clusters.py index 4da548c50e..3e7746effa 100644 --- a/src/oci/globally_distributed_database/models/shardable_cloud_autonomous_vm_clusters.py +++ b/src/oci/globally_distributed_database/models/shardable_cloud_autonomous_vm_clusters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/sharded_database.py b/src/oci/globally_distributed_database/models/sharded_database.py index 6cd7025469..299c7f0810 100644 --- a/src/oci/globally_distributed_database/models/sharded_database.py +++ b/src/oci/globally_distributed_database/models/sharded_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/sharded_database_collection.py b/src/oci/globally_distributed_database/models/sharded_database_collection.py index b75b210607..922c76291b 100644 --- a/src/oci/globally_distributed_database/models/sharded_database_collection.py +++ b/src/oci/globally_distributed_database/models/sharded_database_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/sharded_database_summary.py b/src/oci/globally_distributed_database/models/sharded_database_summary.py index a2bab7b944..5e87633713 100644 --- a/src/oci/globally_distributed_database/models/sharded_database_summary.py +++ b/src/oci/globally_distributed_database/models/sharded_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/update_private_endpoint_details.py b/src/oci/globally_distributed_database/models/update_private_endpoint_details.py index 9a0bb9c30c..6082fd74ed 100644 --- a/src/oci/globally_distributed_database/models/update_private_endpoint_details.py +++ b/src/oci/globally_distributed_database/models/update_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/update_sharded_database_details.py b/src/oci/globally_distributed_database/models/update_sharded_database_details.py index 8119c1776a..f578695c09 100644 --- a/src/oci/globally_distributed_database/models/update_sharded_database_details.py +++ b/src/oci/globally_distributed_database/models/update_sharded_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/upload_signed_certificate_and_generate_wallet_details.py b/src/oci/globally_distributed_database/models/upload_signed_certificate_and_generate_wallet_details.py index 065d9d372d..a231301df4 100644 --- a/src/oci/globally_distributed_database/models/upload_signed_certificate_and_generate_wallet_details.py +++ b/src/oci/globally_distributed_database/models/upload_signed_certificate_and_generate_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/work_request.py b/src/oci/globally_distributed_database/models/work_request.py index 6b629e0d5c..121cb074a2 100644 --- a/src/oci/globally_distributed_database/models/work_request.py +++ b/src/oci/globally_distributed_database/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/work_request_error.py b/src/oci/globally_distributed_database/models/work_request_error.py index d5f0146d93..1703ba173d 100644 --- a/src/oci/globally_distributed_database/models/work_request_error.py +++ b/src/oci/globally_distributed_database/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/work_request_error_collection.py b/src/oci/globally_distributed_database/models/work_request_error_collection.py index 948ae06c97..bf86b9157a 100644 --- a/src/oci/globally_distributed_database/models/work_request_error_collection.py +++ b/src/oci/globally_distributed_database/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/work_request_log_entry.py b/src/oci/globally_distributed_database/models/work_request_log_entry.py index ba5f9c98e0..0bdbb98ffc 100644 --- a/src/oci/globally_distributed_database/models/work_request_log_entry.py +++ b/src/oci/globally_distributed_database/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/work_request_log_entry_collection.py b/src/oci/globally_distributed_database/models/work_request_log_entry_collection.py index 1a812161a7..843258b2f6 100644 --- a/src/oci/globally_distributed_database/models/work_request_log_entry_collection.py +++ b/src/oci/globally_distributed_database/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/work_request_resource.py b/src/oci/globally_distributed_database/models/work_request_resource.py index dcc5435f0e..181d6a0319 100644 --- a/src/oci/globally_distributed_database/models/work_request_resource.py +++ b/src/oci/globally_distributed_database/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/work_request_summary.py b/src/oci/globally_distributed_database/models/work_request_summary.py index ba831de28b..a1192bc993 100644 --- a/src/oci/globally_distributed_database/models/work_request_summary.py +++ b/src/oci/globally_distributed_database/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/models/work_request_summary_collection.py b/src/oci/globally_distributed_database/models/work_request_summary_collection.py index 80f579bdd1..402b7200b9 100644 --- a/src/oci/globally_distributed_database/models/work_request_summary_collection.py +++ b/src/oci/globally_distributed_database/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/sharded_database_service_client.py b/src/oci/globally_distributed_database/sharded_database_service_client.py index 85d6d9b9f8..766c240418 100644 --- a/src/oci/globally_distributed_database/sharded_database_service_client.py +++ b/src/oci/globally_distributed_database/sharded_database_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/globally_distributed_database/sharded_database_service_client_composite_operations.py b/src/oci/globally_distributed_database/sharded_database_service_client_composite_operations.py index 0372957dee..87551d8d12 100644 --- a/src/oci/globally_distributed_database/sharded_database_service_client_composite_operations.py +++ b/src/oci/globally_distributed_database/sharded_database_service_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230301 diff --git a/src/oci/golden_gate/__init__.py b/src/oci/golden_gate/__init__.py index fe75d24fcf..9de6e32a40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/golden_gate_client.py b/src/oci/golden_gate/golden_gate_client.py index e8178dd0ad..d4d1b6b5c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 50db227480..1403641054 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/__init__.py b/src/oci/golden_gate/models/__init__.py index c85c81f3b1..477842db74 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/add_resource_lock_details.py b/src/oci/golden_gate/models/add_resource_lock_details.py index 5f82de0bc2..66a22f69d1 100644 --- a/src/oci/golden_gate/models/add_resource_lock_details.py +++ b/src/oci/golden_gate/models/add_resource_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/amazon_kinesis_connection.py b/src/oci/golden_gate/models/amazon_kinesis_connection.py index 7003142dd5..213274d9af 100644 --- a/src/oci/golden_gate/models/amazon_kinesis_connection.py +++ b/src/oci/golden_gate/models/amazon_kinesis_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/amazon_kinesis_connection_summary.py b/src/oci/golden_gate/models/amazon_kinesis_connection_summary.py index f05531be46..1102a9f372 100644 --- a/src/oci/golden_gate/models/amazon_kinesis_connection_summary.py +++ b/src/oci/golden_gate/models/amazon_kinesis_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/amazon_redshift_connection.py b/src/oci/golden_gate/models/amazon_redshift_connection.py index 2ba15990f2..50b2f9ca58 100644 --- a/src/oci/golden_gate/models/amazon_redshift_connection.py +++ b/src/oci/golden_gate/models/amazon_redshift_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/amazon_redshift_connection_summary.py b/src/oci/golden_gate/models/amazon_redshift_connection_summary.py index f54273bd31..ff956f020f 100644 --- a/src/oci/golden_gate/models/amazon_redshift_connection_summary.py +++ b/src/oci/golden_gate/models/amazon_redshift_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/amazon_s3_connection.py b/src/oci/golden_gate/models/amazon_s3_connection.py index d32eea90dc..acd8feb54e 100644 --- a/src/oci/golden_gate/models/amazon_s3_connection.py +++ b/src/oci/golden_gate/models/amazon_s3_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/amazon_s3_connection_summary.py b/src/oci/golden_gate/models/amazon_s3_connection_summary.py index 0eb80a40ef..4ad184324c 100644 --- a/src/oci/golden_gate/models/amazon_s3_connection_summary.py +++ b/src/oci/golden_gate/models/amazon_s3_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/azure_data_lake_storage_connection.py b/src/oci/golden_gate/models/azure_data_lake_storage_connection.py index 03ba31bbba..639f28f978 100644 --- a/src/oci/golden_gate/models/azure_data_lake_storage_connection.py +++ b/src/oci/golden_gate/models/azure_data_lake_storage_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/azure_data_lake_storage_connection_summary.py b/src/oci/golden_gate/models/azure_data_lake_storage_connection_summary.py index ffa139aa81..80ba769cc2 100644 --- a/src/oci/golden_gate/models/azure_data_lake_storage_connection_summary.py +++ b/src/oci/golden_gate/models/azure_data_lake_storage_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/azure_synapse_connection.py b/src/oci/golden_gate/models/azure_synapse_connection.py index c85ca695eb..5360d37d93 100644 --- a/src/oci/golden_gate/models/azure_synapse_connection.py +++ b/src/oci/golden_gate/models/azure_synapse_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/azure_synapse_connection_summary.py b/src/oci/golden_gate/models/azure_synapse_connection_summary.py index 9e42ffb49e..7bc0dc4522 100644 --- a/src/oci/golden_gate/models/azure_synapse_connection_summary.py +++ b/src/oci/golden_gate/models/azure_synapse_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 88a3a27ce4..3fe1b687b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/cancel_deployment_upgrade_details.py b/src/oci/golden_gate/models/cancel_deployment_upgrade_details.py index 628b33d6d6..0ef0eb6ae2 100644 --- a/src/oci/golden_gate/models/cancel_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/cancel_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/cancel_snooze_deployment_upgrade_details.py b/src/oci/golden_gate/models/cancel_snooze_deployment_upgrade_details.py index e74194864f..fda566f58a 100644 --- a/src/oci/golden_gate/models/cancel_snooze_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/cancel_snooze_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/certificate.py b/src/oci/golden_gate/models/certificate.py index 3e3c7d5481..a27910a966 100644 --- a/src/oci/golden_gate/models/certificate.py +++ b/src/oci/golden_gate/models/certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/certificate_collection.py b/src/oci/golden_gate/models/certificate_collection.py index 7345a67a7c..37ecaf2ec1 100644 --- a/src/oci/golden_gate/models/certificate_collection.py +++ b/src/oci/golden_gate/models/certificate_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/certificate_summary.py b/src/oci/golden_gate/models/certificate_summary.py index f766d63934..6712839101 100644 --- a/src/oci/golden_gate/models/certificate_summary.py +++ b/src/oci/golden_gate/models/certificate_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/change_connection_compartment_details.py b/src/oci/golden_gate/models/change_connection_compartment_details.py index 068368ee83..888442bc03 100644 --- a/src/oci/golden_gate/models/change_connection_compartment_details.py +++ b/src/oci/golden_gate/models/change_connection_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 e2ed939904..45102f407c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 dc5cbfb245..c728076ee9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 7d83500892..a552beace5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/change_pipeline_compartment_details.py b/src/oci/golden_gate/models/change_pipeline_compartment_details.py index 986460b7dd..4ec0f82113 100644 --- a/src/oci/golden_gate/models/change_pipeline_compartment_details.py +++ b/src/oci/golden_gate/models/change_pipeline_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/collect_deployment_diagnostic_details.py b/src/oci/golden_gate/models/collect_deployment_diagnostic_details.py index 7f17237428..b11ba41284 100644 --- a/src/oci/golden_gate/models/collect_deployment_diagnostic_details.py +++ b/src/oci/golden_gate/models/collect_deployment_diagnostic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/connection.py b/src/oci/golden_gate/models/connection.py index f04112dcd9..e5726278be 100644 --- a/src/oci/golden_gate/models/connection.py +++ b/src/oci/golden_gate/models/connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/connection_assignment.py b/src/oci/golden_gate/models/connection_assignment.py index bea2d144e3..573d0b187f 100644 --- a/src/oci/golden_gate/models/connection_assignment.py +++ b/src/oci/golden_gate/models/connection_assignment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/connection_assignment_collection.py b/src/oci/golden_gate/models/connection_assignment_collection.py index 926069f6ab..824c8fd257 100644 --- a/src/oci/golden_gate/models/connection_assignment_collection.py +++ b/src/oci/golden_gate/models/connection_assignment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/connection_assignment_summary.py b/src/oci/golden_gate/models/connection_assignment_summary.py index 1532e9d368..9a546979ea 100644 --- a/src/oci/golden_gate/models/connection_assignment_summary.py +++ b/src/oci/golden_gate/models/connection_assignment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/connection_collection.py b/src/oci/golden_gate/models/connection_collection.py index 73114176de..9da6f4ea8a 100644 --- a/src/oci/golden_gate/models/connection_collection.py +++ b/src/oci/golden_gate/models/connection_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/connection_summary.py b/src/oci/golden_gate/models/connection_summary.py index a1b4d5c9ea..4f8692121f 100644 --- a/src/oci/golden_gate/models/connection_summary.py +++ b/src/oci/golden_gate/models/connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/copy_deployment_backup_details.py b/src/oci/golden_gate/models/copy_deployment_backup_details.py index 9ebec89b97..da9d6887e2 100644 --- a/src/oci/golden_gate/models/copy_deployment_backup_details.py +++ b/src/oci/golden_gate/models/copy_deployment_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_amazon_kinesis_connection_details.py b/src/oci/golden_gate/models/create_amazon_kinesis_connection_details.py index 2a1780e878..0b10714c73 100644 --- a/src/oci/golden_gate/models/create_amazon_kinesis_connection_details.py +++ b/src/oci/golden_gate/models/create_amazon_kinesis_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_amazon_redshift_connection_details.py b/src/oci/golden_gate/models/create_amazon_redshift_connection_details.py index a12b1d1035..5da0ef1b77 100644 --- a/src/oci/golden_gate/models/create_amazon_redshift_connection_details.py +++ b/src/oci/golden_gate/models/create_amazon_redshift_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_amazon_s3_connection_details.py b/src/oci/golden_gate/models/create_amazon_s3_connection_details.py index 11a41759b2..0e1897714c 100644 --- a/src/oci/golden_gate/models/create_amazon_s3_connection_details.py +++ b/src/oci/golden_gate/models/create_amazon_s3_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_azure_data_lake_storage_connection_details.py b/src/oci/golden_gate/models/create_azure_data_lake_storage_connection_details.py index f3fcab6ba9..a7bbeec301 100644 --- a/src/oci/golden_gate/models/create_azure_data_lake_storage_connection_details.py +++ b/src/oci/golden_gate/models/create_azure_data_lake_storage_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_azure_synapse_connection_details.py b/src/oci/golden_gate/models/create_azure_synapse_connection_details.py index 87bb80c072..627b896a31 100644 --- a/src/oci/golden_gate/models/create_azure_synapse_connection_details.py +++ b/src/oci/golden_gate/models/create_azure_synapse_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_certificate_details.py b/src/oci/golden_gate/models/create_certificate_details.py index 5310c17f45..661bc5d117 100644 --- a/src/oci/golden_gate/models/create_certificate_details.py +++ b/src/oci/golden_gate/models/create_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_connection_assignment_details.py b/src/oci/golden_gate/models/create_connection_assignment_details.py index de2ca4726d..1013d61ec3 100644 --- a/src/oci/golden_gate/models/create_connection_assignment_details.py +++ b/src/oci/golden_gate/models/create_connection_assignment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_connection_details.py b/src/oci/golden_gate/models/create_connection_details.py index 129b309f34..30c1bb105e 100644 --- a/src/oci/golden_gate/models/create_connection_details.py +++ b/src/oci/golden_gate/models/create_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 b7a074e729..7b1db8b717 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_db2_connection_details.py b/src/oci/golden_gate/models/create_db2_connection_details.py index 32726cf94e..1e3612971b 100644 --- a/src/oci/golden_gate/models/create_db2_connection_details.py +++ b/src/oci/golden_gate/models/create_db2_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 11b099edfa..01ae16f9f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_deployment_details.py b/src/oci/golden_gate/models/create_deployment_details.py index cb8fc2e360..187eae8628 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_elasticsearch_connection_details.py b/src/oci/golden_gate/models/create_elasticsearch_connection_details.py index 25bdbb3c77..40a54c4205 100644 --- a/src/oci/golden_gate/models/create_elasticsearch_connection_details.py +++ b/src/oci/golden_gate/models/create_elasticsearch_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_generic_connection_details.py b/src/oci/golden_gate/models/create_generic_connection_details.py index 2567a6b89a..cf59dc0e3b 100644 --- a/src/oci/golden_gate/models/create_generic_connection_details.py +++ b/src/oci/golden_gate/models/create_generic_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_golden_gate_connection_details.py b/src/oci/golden_gate/models/create_golden_gate_connection_details.py index 1eee640cf8..b8d6bd308c 100644 --- a/src/oci/golden_gate/models/create_golden_gate_connection_details.py +++ b/src/oci/golden_gate/models/create_golden_gate_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_google_big_query_connection_details.py b/src/oci/golden_gate/models/create_google_big_query_connection_details.py index ee8cbe7f31..eac322bfff 100644 --- a/src/oci/golden_gate/models/create_google_big_query_connection_details.py +++ b/src/oci/golden_gate/models/create_google_big_query_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_google_cloud_storage_connection_details.py b/src/oci/golden_gate/models/create_google_cloud_storage_connection_details.py index fe3ce65b90..1fb8d2bb88 100644 --- a/src/oci/golden_gate/models/create_google_cloud_storage_connection_details.py +++ b/src/oci/golden_gate/models/create_google_cloud_storage_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_hdfs_connection_details.py b/src/oci/golden_gate/models/create_hdfs_connection_details.py index 5d061413d2..1547338614 100644 --- a/src/oci/golden_gate/models/create_hdfs_connection_details.py +++ b/src/oci/golden_gate/models/create_hdfs_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_java_message_service_connection_details.py b/src/oci/golden_gate/models/create_java_message_service_connection_details.py index 52fd05b995..339eb6cc67 100644 --- a/src/oci/golden_gate/models/create_java_message_service_connection_details.py +++ b/src/oci/golden_gate/models/create_java_message_service_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_kafka_connection_details.py b/src/oci/golden_gate/models/create_kafka_connection_details.py index e1470d1296..ffae737b49 100644 --- a/src/oci/golden_gate/models/create_kafka_connection_details.py +++ b/src/oci/golden_gate/models/create_kafka_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_kafka_schema_registry_connection_details.py b/src/oci/golden_gate/models/create_kafka_schema_registry_connection_details.py index 34c7e1590d..c306a0e84b 100644 --- a/src/oci/golden_gate/models/create_kafka_schema_registry_connection_details.py +++ b/src/oci/golden_gate/models/create_kafka_schema_registry_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_maintenance_configuration_details.py b/src/oci/golden_gate/models/create_maintenance_configuration_details.py index 28265dd7dd..4759bd99a3 100644 --- a/src/oci/golden_gate/models/create_maintenance_configuration_details.py +++ b/src/oci/golden_gate/models/create_maintenance_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_maintenance_window_details.py b/src/oci/golden_gate/models/create_maintenance_window_details.py index 97bdf66854..608ffa7bad 100644 --- a/src/oci/golden_gate/models/create_maintenance_window_details.py +++ b/src/oci/golden_gate/models/create_maintenance_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_microsoft_sqlserver_connection_details.py b/src/oci/golden_gate/models/create_microsoft_sqlserver_connection_details.py index 51586ea66e..54d081ea5a 100644 --- a/src/oci/golden_gate/models/create_microsoft_sqlserver_connection_details.py +++ b/src/oci/golden_gate/models/create_microsoft_sqlserver_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_mongo_db_connection_details.py b/src/oci/golden_gate/models/create_mongo_db_connection_details.py index 49546afe14..f6d1a3a502 100644 --- a/src/oci/golden_gate/models/create_mongo_db_connection_details.py +++ b/src/oci/golden_gate/models/create_mongo_db_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_mysql_connection_details.py b/src/oci/golden_gate/models/create_mysql_connection_details.py index 0799e876e0..2c0724e398 100644 --- a/src/oci/golden_gate/models/create_mysql_connection_details.py +++ b/src/oci/golden_gate/models/create_mysql_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_oci_object_storage_connection_details.py b/src/oci/golden_gate/models/create_oci_object_storage_connection_details.py index e722f5d2e7..4f81ca05cc 100644 --- a/src/oci/golden_gate/models/create_oci_object_storage_connection_details.py +++ b/src/oci/golden_gate/models/create_oci_object_storage_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 c4fefd84a6..ee45b9aeca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_oracle_connection_details.py b/src/oci/golden_gate/models/create_oracle_connection_details.py index 29bd3d9f04..47656bf9ca 100644 --- a/src/oci/golden_gate/models/create_oracle_connection_details.py +++ b/src/oci/golden_gate/models/create_oracle_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_oracle_nosql_connection_details.py b/src/oci/golden_gate/models/create_oracle_nosql_connection_details.py index a9aa67f287..254e41f1fa 100644 --- a/src/oci/golden_gate/models/create_oracle_nosql_connection_details.py +++ b/src/oci/golden_gate/models/create_oracle_nosql_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_pipeline_details.py b/src/oci/golden_gate/models/create_pipeline_details.py index 7a86592a34..bcaa1aaa3e 100644 --- a/src/oci/golden_gate/models/create_pipeline_details.py +++ b/src/oci/golden_gate/models/create_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_postgresql_connection_details.py b/src/oci/golden_gate/models/create_postgresql_connection_details.py index fb0e4f7261..89710a97a7 100644 --- a/src/oci/golden_gate/models/create_postgresql_connection_details.py +++ b/src/oci/golden_gate/models/create_postgresql_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_redis_connection_details.py b/src/oci/golden_gate/models/create_redis_connection_details.py index bbf775cb54..301d0dee98 100644 --- a/src/oci/golden_gate/models/create_redis_connection_details.py +++ b/src/oci/golden_gate/models/create_redis_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_snowflake_connection_details.py b/src/oci/golden_gate/models/create_snowflake_connection_details.py index 9893930b71..9064030075 100644 --- a/src/oci/golden_gate/models/create_snowflake_connection_details.py +++ b/src/oci/golden_gate/models/create_snowflake_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/create_zero_etl_pipeline_details.py b/src/oci/golden_gate/models/create_zero_etl_pipeline_details.py index c927e93590..737bd4d351 100644 --- a/src/oci/golden_gate/models/create_zero_etl_pipeline_details.py +++ b/src/oci/golden_gate/models/create_zero_etl_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/database_registration.py b/src/oci/golden_gate/models/database_registration.py index 0c7dd82553..a417484975 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/database_registration_collection.py b/src/oci/golden_gate/models/database_registration_collection.py index 3b087b0cea..f74fc7ede1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/database_registration_summary.py b/src/oci/golden_gate/models/database_registration_summary.py index 587b7b8fda..a032227994 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/db2_connection.py b/src/oci/golden_gate/models/db2_connection.py index e6bbb1ba3b..4727d6b0d0 100644 --- a/src/oci/golden_gate/models/db2_connection.py +++ b/src/oci/golden_gate/models/db2_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/db2_connection_summary.py b/src/oci/golden_gate/models/db2_connection_summary.py index 0388dc034b..0c29095c53 100644 --- a/src/oci/golden_gate/models/db2_connection_summary.py +++ b/src/oci/golden_gate/models/db2_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 f419b8102d..55bf3bcb45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_cancel_deployment_upgrade_details.py b/src/oci/golden_gate/models/default_cancel_deployment_upgrade_details.py index f92a8c951c..ef2657b6c0 100644 --- a/src/oci/golden_gate/models/default_cancel_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/default_cancel_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_cancel_snooze_deployment_upgrade_details.py b/src/oci/golden_gate/models/default_cancel_snooze_deployment_upgrade_details.py index ae999be60a..7524a51cd7 100644 --- a/src/oci/golden_gate/models/default_cancel_snooze_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/default_cancel_snooze_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_deployment_wallet_exists_details.py b/src/oci/golden_gate/models/default_deployment_wallet_exists_details.py index 24592d5172..397a60e951 100644 --- a/src/oci/golden_gate/models/default_deployment_wallet_exists_details.py +++ b/src/oci/golden_gate/models/default_deployment_wallet_exists_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_refresh_connection_details.py b/src/oci/golden_gate/models/default_refresh_connection_details.py index e558bb3dbd..d7f41a7115 100644 --- a/src/oci/golden_gate/models/default_refresh_connection_details.py +++ b/src/oci/golden_gate/models/default_refresh_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 4794a12ee2..5b73cc9509 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_rollback_deployment_upgrade_details.py b/src/oci/golden_gate/models/default_rollback_deployment_upgrade_details.py index c8a752983d..c04abbaa8c 100644 --- a/src/oci/golden_gate/models/default_rollback_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/default_rollback_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_snooze_deployment_upgrade_details.py b/src/oci/golden_gate/models/default_snooze_deployment_upgrade_details.py index 4c267f0272..bc923b7aba 100644 --- a/src/oci/golden_gate/models/default_snooze_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/default_snooze_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 6dacc63967..f975d9d11f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_start_pipeline_details.py b/src/oci/golden_gate/models/default_start_pipeline_details.py index f5470d4196..c60de62776 100644 --- a/src/oci/golden_gate/models/default_start_pipeline_details.py +++ b/src/oci/golden_gate/models/default_start_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 e12e6dbfd5..25001f1f6c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_stop_pipeline_details.py b/src/oci/golden_gate/models/default_stop_pipeline_details.py index 8af5642bce..1607a80e18 100644 --- a/src/oci/golden_gate/models/default_stop_pipeline_details.py +++ b/src/oci/golden_gate/models/default_stop_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_test_connection_assignment_details.py b/src/oci/golden_gate/models/default_test_connection_assignment_details.py index 6fce3a12d4..21c90ecf29 100644 --- a/src/oci/golden_gate/models/default_test_connection_assignment_details.py +++ b/src/oci/golden_gate/models/default_test_connection_assignment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_test_pipeline_connection_details.py b/src/oci/golden_gate/models/default_test_pipeline_connection_details.py index 24f0e4f2dd..6154d753bd 100644 --- a/src/oci/golden_gate/models/default_test_pipeline_connection_details.py +++ b/src/oci/golden_gate/models/default_test_pipeline_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/default_upgrade_deployment_upgrade_details.py b/src/oci/golden_gate/models/default_upgrade_deployment_upgrade_details.py index 1d205b5cc5..7c83ff3d97 100644 --- a/src/oci/golden_gate/models/default_upgrade_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/default_upgrade_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment.py b/src/oci/golden_gate/models/deployment.py index ade1c39263..a386c9628f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_backup.py b/src/oci/golden_gate/models/deployment_backup.py index de22563b59..928de5434a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_backup_collection.py b/src/oci/golden_gate/models/deployment_backup_collection.py index 509f5a98a7..a3fc40a305 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_backup_summary.py b/src/oci/golden_gate/models/deployment_backup_summary.py index 074393b130..8ffea55ebf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_collection.py b/src/oci/golden_gate/models/deployment_collection.py index 3d9bed7f96..4129fc26af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_diagnostic_data.py b/src/oci/golden_gate/models/deployment_diagnostic_data.py index d326e042ca..bda3137513 100644 --- a/src/oci/golden_gate/models/deployment_diagnostic_data.py +++ b/src/oci/golden_gate/models/deployment_diagnostic_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_environment_collection.py b/src/oci/golden_gate/models/deployment_environment_collection.py index 9cbcd63977..7139ae9d77 100644 --- a/src/oci/golden_gate/models/deployment_environment_collection.py +++ b/src/oci/golden_gate/models/deployment_environment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_environment_summary.py b/src/oci/golden_gate/models/deployment_environment_summary.py index 487fb1e186..d219562d16 100644 --- a/src/oci/golden_gate/models/deployment_environment_summary.py +++ b/src/oci/golden_gate/models/deployment_environment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_message_collection.py b/src/oci/golden_gate/models/deployment_message_collection.py index 2b8b101004..59d6c4d399 100644 --- a/src/oci/golden_gate/models/deployment_message_collection.py +++ b/src/oci/golden_gate/models/deployment_message_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_summary.py b/src/oci/golden_gate/models/deployment_summary.py index 3854535bff..214fd81b0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_type_collection.py b/src/oci/golden_gate/models/deployment_type_collection.py index 91b7019efe..2373a6953e 100644 --- a/src/oci/golden_gate/models/deployment_type_collection.py +++ b/src/oci/golden_gate/models/deployment_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_type_summary.py b/src/oci/golden_gate/models/deployment_type_summary.py index 13eb64dfd9..320b5bfa7a 100644 --- a/src/oci/golden_gate/models/deployment_type_summary.py +++ b/src/oci/golden_gate/models/deployment_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_upgrade.py b/src/oci/golden_gate/models/deployment_upgrade.py index 1269d24f20..867832ebe4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_upgrade_collection.py b/src/oci/golden_gate/models/deployment_upgrade_collection.py index b2706701e6..17b685fac4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_upgrade_summary.py b/src/oci/golden_gate/models/deployment_upgrade_summary.py index 8a0f8bba28..2d418b217d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_version_collection.py b/src/oci/golden_gate/models/deployment_version_collection.py index a1dc05341f..bfd6d3a3d3 100644 --- a/src/oci/golden_gate/models/deployment_version_collection.py +++ b/src/oci/golden_gate/models/deployment_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_version_summary.py b/src/oci/golden_gate/models/deployment_version_summary.py index cd50e42b9f..5f4c7dc3fc 100644 --- a/src/oci/golden_gate/models/deployment_version_summary.py +++ b/src/oci/golden_gate/models/deployment_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_wallet_exists_details.py b/src/oci/golden_gate/models/deployment_wallet_exists_details.py index a10e34b8ce..c02aac8bb6 100644 --- a/src/oci/golden_gate/models/deployment_wallet_exists_details.py +++ b/src/oci/golden_gate/models/deployment_wallet_exists_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_wallet_exists_response_details.py b/src/oci/golden_gate/models/deployment_wallet_exists_response_details.py index d83bc33fb7..d376a2c338 100644 --- a/src/oci/golden_gate/models/deployment_wallet_exists_response_details.py +++ b/src/oci/golden_gate/models/deployment_wallet_exists_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_wallets_operation_collection.py b/src/oci/golden_gate/models/deployment_wallets_operation_collection.py index 09708e0fa7..f260113f86 100644 --- a/src/oci/golden_gate/models/deployment_wallets_operation_collection.py +++ b/src/oci/golden_gate/models/deployment_wallets_operation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/deployment_wallets_operation_summary.py b/src/oci/golden_gate/models/deployment_wallets_operation_summary.py index a89bafabd5..c86546ab57 100644 --- a/src/oci/golden_gate/models/deployment_wallets_operation_summary.py +++ b/src/oci/golden_gate/models/deployment_wallets_operation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/elasticsearch_connection.py b/src/oci/golden_gate/models/elasticsearch_connection.py index 3265b882a9..878fe85c51 100644 --- a/src/oci/golden_gate/models/elasticsearch_connection.py +++ b/src/oci/golden_gate/models/elasticsearch_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/elasticsearch_connection_summary.py b/src/oci/golden_gate/models/elasticsearch_connection_summary.py index 0020f60581..3a6cd828a3 100644 --- a/src/oci/golden_gate/models/elasticsearch_connection_summary.py +++ b/src/oci/golden_gate/models/elasticsearch_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/export_deployment_wallet_details.py b/src/oci/golden_gate/models/export_deployment_wallet_details.py index 3eaca2ae63..706277b3b5 100644 --- a/src/oci/golden_gate/models/export_deployment_wallet_details.py +++ b/src/oci/golden_gate/models/export_deployment_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/generate_library_url_details.py b/src/oci/golden_gate/models/generate_library_url_details.py index 2cf35ab230..f6dca321e9 100644 --- a/src/oci/golden_gate/models/generate_library_url_details.py +++ b/src/oci/golden_gate/models/generate_library_url_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/generate_log_reader_component_library_url_details.py b/src/oci/golden_gate/models/generate_log_reader_component_library_url_details.py index 8924e95ffe..58b3f45d22 100644 --- a/src/oci/golden_gate/models/generate_log_reader_component_library_url_details.py +++ b/src/oci/golden_gate/models/generate_log_reader_component_library_url_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/generic_connection.py b/src/oci/golden_gate/models/generic_connection.py index 575f3c651d..0788f7d0d1 100644 --- a/src/oci/golden_gate/models/generic_connection.py +++ b/src/oci/golden_gate/models/generic_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/generic_connection_summary.py b/src/oci/golden_gate/models/generic_connection_summary.py index f1f6512cd9..b037f16bae 100644 --- a/src/oci/golden_gate/models/generic_connection_summary.py +++ b/src/oci/golden_gate/models/generic_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/golden_gate_connection.py b/src/oci/golden_gate/models/golden_gate_connection.py index 5258085baa..223dff5ff5 100644 --- a/src/oci/golden_gate/models/golden_gate_connection.py +++ b/src/oci/golden_gate/models/golden_gate_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/golden_gate_connection_summary.py b/src/oci/golden_gate/models/golden_gate_connection_summary.py index a460865009..0009bcc9d0 100644 --- a/src/oci/golden_gate/models/golden_gate_connection_summary.py +++ b/src/oci/golden_gate/models/golden_gate_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/google_big_query_connection.py b/src/oci/golden_gate/models/google_big_query_connection.py index 03306f8bd4..e8eeb1ca4c 100644 --- a/src/oci/golden_gate/models/google_big_query_connection.py +++ b/src/oci/golden_gate/models/google_big_query_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/google_big_query_connection_summary.py b/src/oci/golden_gate/models/google_big_query_connection_summary.py index 827866d728..07dfca368d 100644 --- a/src/oci/golden_gate/models/google_big_query_connection_summary.py +++ b/src/oci/golden_gate/models/google_big_query_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/google_cloud_storage_connection.py b/src/oci/golden_gate/models/google_cloud_storage_connection.py index 1e71cd0f32..49a5f43eb2 100644 --- a/src/oci/golden_gate/models/google_cloud_storage_connection.py +++ b/src/oci/golden_gate/models/google_cloud_storage_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/google_cloud_storage_connection_summary.py b/src/oci/golden_gate/models/google_cloud_storage_connection_summary.py index 17b45a1eb1..cf4980299b 100644 --- a/src/oci/golden_gate/models/google_cloud_storage_connection_summary.py +++ b/src/oci/golden_gate/models/google_cloud_storage_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/group_to_roles_mapping_details.py b/src/oci/golden_gate/models/group_to_roles_mapping_details.py index 7f9cc8c770..bb29f08771 100644 --- a/src/oci/golden_gate/models/group_to_roles_mapping_details.py +++ b/src/oci/golden_gate/models/group_to_roles_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/hdfs_connection.py b/src/oci/golden_gate/models/hdfs_connection.py index fcf6b60010..61515095ef 100644 --- a/src/oci/golden_gate/models/hdfs_connection.py +++ b/src/oci/golden_gate/models/hdfs_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/hdfs_connection_summary.py b/src/oci/golden_gate/models/hdfs_connection_summary.py index 281eb58c7f..289c836605 100644 --- a/src/oci/golden_gate/models/hdfs_connection_summary.py +++ b/src/oci/golden_gate/models/hdfs_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/import_deployment_wallet_details.py b/src/oci/golden_gate/models/import_deployment_wallet_details.py index 4d53c38582..84a6d5b7c0 100644 --- a/src/oci/golden_gate/models/import_deployment_wallet_details.py +++ b/src/oci/golden_gate/models/import_deployment_wallet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/ingress_ip_details.py b/src/oci/golden_gate/models/ingress_ip_details.py index ba3553713f..0e843ee667 100644 --- a/src/oci/golden_gate/models/ingress_ip_details.py +++ b/src/oci/golden_gate/models/ingress_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/initial_data_load.py b/src/oci/golden_gate/models/initial_data_load.py index 1f486ac9c5..feae5ec148 100644 --- a/src/oci/golden_gate/models/initial_data_load.py +++ b/src/oci/golden_gate/models/initial_data_load.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/java_message_service_connection.py b/src/oci/golden_gate/models/java_message_service_connection.py index 53d698c5aa..9a1a36d875 100644 --- a/src/oci/golden_gate/models/java_message_service_connection.py +++ b/src/oci/golden_gate/models/java_message_service_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/java_message_service_connection_summary.py b/src/oci/golden_gate/models/java_message_service_connection_summary.py index 20af4d6d11..930d83dcc7 100644 --- a/src/oci/golden_gate/models/java_message_service_connection_summary.py +++ b/src/oci/golden_gate/models/java_message_service_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/kafka_bootstrap_server.py b/src/oci/golden_gate/models/kafka_bootstrap_server.py index 4edb04f8ea..3d558b52a4 100644 --- a/src/oci/golden_gate/models/kafka_bootstrap_server.py +++ b/src/oci/golden_gate/models/kafka_bootstrap_server.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/kafka_connection.py b/src/oci/golden_gate/models/kafka_connection.py index 38993f9d7c..147d8e0aa1 100644 --- a/src/oci/golden_gate/models/kafka_connection.py +++ b/src/oci/golden_gate/models/kafka_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/kafka_connection_summary.py b/src/oci/golden_gate/models/kafka_connection_summary.py index 2cbf6ca2b7..0a4e7cbbfc 100644 --- a/src/oci/golden_gate/models/kafka_connection_summary.py +++ b/src/oci/golden_gate/models/kafka_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/kafka_schema_registry_connection.py b/src/oci/golden_gate/models/kafka_schema_registry_connection.py index 287b4eddd0..d9eaa7174b 100644 --- a/src/oci/golden_gate/models/kafka_schema_registry_connection.py +++ b/src/oci/golden_gate/models/kafka_schema_registry_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/kafka_schema_registry_connection_summary.py b/src/oci/golden_gate/models/kafka_schema_registry_connection_summary.py index 68de0e0b88..e149f925be 100644 --- a/src/oci/golden_gate/models/kafka_schema_registry_connection_summary.py +++ b/src/oci/golden_gate/models/kafka_schema_registry_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/library_url.py b/src/oci/golden_gate/models/library_url.py index 52ec1c82f0..49cf63c935 100644 --- a/src/oci/golden_gate/models/library_url.py +++ b/src/oci/golden_gate/models/library_url.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/maintenance_configuration.py b/src/oci/golden_gate/models/maintenance_configuration.py index f90cbe4fc4..339f460e2d 100644 --- a/src/oci/golden_gate/models/maintenance_configuration.py +++ b/src/oci/golden_gate/models/maintenance_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/maintenance_window.py b/src/oci/golden_gate/models/maintenance_window.py index 0bc1c1f497..a2787de163 100644 --- a/src/oci/golden_gate/models/maintenance_window.py +++ b/src/oci/golden_gate/models/maintenance_window.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/mapping_rule.py b/src/oci/golden_gate/models/mapping_rule.py index a60032d5cf..5b611501f1 100644 --- a/src/oci/golden_gate/models/mapping_rule.py +++ b/src/oci/golden_gate/models/mapping_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/message_summary.py b/src/oci/golden_gate/models/message_summary.py index 6a19c03837..d628889dd6 100644 --- a/src/oci/golden_gate/models/message_summary.py +++ b/src/oci/golden_gate/models/message_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/microsoft_sqlserver_connection.py b/src/oci/golden_gate/models/microsoft_sqlserver_connection.py index d95bfceb82..d190e63f5c 100644 --- a/src/oci/golden_gate/models/microsoft_sqlserver_connection.py +++ b/src/oci/golden_gate/models/microsoft_sqlserver_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/microsoft_sqlserver_connection_summary.py b/src/oci/golden_gate/models/microsoft_sqlserver_connection_summary.py index fbc1e2ad36..a0b9349f26 100644 --- a/src/oci/golden_gate/models/microsoft_sqlserver_connection_summary.py +++ b/src/oci/golden_gate/models/microsoft_sqlserver_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/mongo_db_connection.py b/src/oci/golden_gate/models/mongo_db_connection.py index 9c8f50178b..e4eee46d53 100644 --- a/src/oci/golden_gate/models/mongo_db_connection.py +++ b/src/oci/golden_gate/models/mongo_db_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/mongo_db_connection_summary.py b/src/oci/golden_gate/models/mongo_db_connection_summary.py index 4c7cec7798..bb0c5a546f 100644 --- a/src/oci/golden_gate/models/mongo_db_connection_summary.py +++ b/src/oci/golden_gate/models/mongo_db_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/mysql_connection.py b/src/oci/golden_gate/models/mysql_connection.py index b62b5662cb..1809d57f24 100644 --- a/src/oci/golden_gate/models/mysql_connection.py +++ b/src/oci/golden_gate/models/mysql_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/mysql_connection_summary.py b/src/oci/golden_gate/models/mysql_connection_summary.py index f318c9412c..512cae5716 100644 --- a/src/oci/golden_gate/models/mysql_connection_summary.py +++ b/src/oci/golden_gate/models/mysql_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/name_value_pair.py b/src/oci/golden_gate/models/name_value_pair.py index 906529c804..184b0f344c 100644 --- a/src/oci/golden_gate/models/name_value_pair.py +++ b/src/oci/golden_gate/models/name_value_pair.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/oci_object_storage_connection.py b/src/oci/golden_gate/models/oci_object_storage_connection.py index d2999b9e6b..b79e9ef2d1 100644 --- a/src/oci/golden_gate/models/oci_object_storage_connection.py +++ b/src/oci/golden_gate/models/oci_object_storage_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/oci_object_storage_connection_summary.py b/src/oci/golden_gate/models/oci_object_storage_connection_summary.py index db0edb0c82..804e917abd 100644 --- a/src/oci/golden_gate/models/oci_object_storage_connection_summary.py +++ b/src/oci/golden_gate/models/oci_object_storage_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/ogg_deployment.py b/src/oci/golden_gate/models/ogg_deployment.py index faa5987e3a..d160a0a07d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/oracle_connection.py b/src/oci/golden_gate/models/oracle_connection.py index ca923da9e6..438ec92cdc 100644 --- a/src/oci/golden_gate/models/oracle_connection.py +++ b/src/oci/golden_gate/models/oracle_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/oracle_connection_summary.py b/src/oci/golden_gate/models/oracle_connection_summary.py index 680c8eb20d..abe8ddf3df 100644 --- a/src/oci/golden_gate/models/oracle_connection_summary.py +++ b/src/oci/golden_gate/models/oracle_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/oracle_nosql_connection.py b/src/oci/golden_gate/models/oracle_nosql_connection.py index c6db58d7d8..0d0150c583 100644 --- a/src/oci/golden_gate/models/oracle_nosql_connection.py +++ b/src/oci/golden_gate/models/oracle_nosql_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/oracle_nosql_connection_summary.py b/src/oci/golden_gate/models/oracle_nosql_connection_summary.py index bc53dc628d..de3f86db1d 100644 --- a/src/oci/golden_gate/models/oracle_nosql_connection_summary.py +++ b/src/oci/golden_gate/models/oracle_nosql_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline.py b/src/oci/golden_gate/models/pipeline.py index c7e7b040d0..e047adac25 100644 --- a/src/oci/golden_gate/models/pipeline.py +++ b/src/oci/golden_gate/models/pipeline.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_collection.py b/src/oci/golden_gate/models/pipeline_collection.py index e84bd801f4..f8a86d8222 100644 --- a/src/oci/golden_gate/models/pipeline_collection.py +++ b/src/oci/golden_gate/models/pipeline_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_initialization_step.py b/src/oci/golden_gate/models/pipeline_initialization_step.py index d57f844430..3088f4065b 100644 --- a/src/oci/golden_gate/models/pipeline_initialization_step.py +++ b/src/oci/golden_gate/models/pipeline_initialization_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_initialization_steps.py b/src/oci/golden_gate/models/pipeline_initialization_steps.py index 94254130a1..c9770bfaf2 100644 --- a/src/oci/golden_gate/models/pipeline_initialization_steps.py +++ b/src/oci/golden_gate/models/pipeline_initialization_steps.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_running_process_collection.py b/src/oci/golden_gate/models/pipeline_running_process_collection.py index d76bc91303..4ba429f972 100644 --- a/src/oci/golden_gate/models/pipeline_running_process_collection.py +++ b/src/oci/golden_gate/models/pipeline_running_process_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_running_process_summary.py b/src/oci/golden_gate/models/pipeline_running_process_summary.py index ff67005f2b..ee7f788d1d 100644 --- a/src/oci/golden_gate/models/pipeline_running_process_summary.py +++ b/src/oci/golden_gate/models/pipeline_running_process_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_schema_collection.py b/src/oci/golden_gate/models/pipeline_schema_collection.py index 939c664d04..3356565c07 100644 --- a/src/oci/golden_gate/models/pipeline_schema_collection.py +++ b/src/oci/golden_gate/models/pipeline_schema_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_schema_summary.py b/src/oci/golden_gate/models/pipeline_schema_summary.py index 174985d80d..8f2b8c58f9 100644 --- a/src/oci/golden_gate/models/pipeline_schema_summary.py +++ b/src/oci/golden_gate/models/pipeline_schema_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_schema_table_collection.py b/src/oci/golden_gate/models/pipeline_schema_table_collection.py index 363bda7ac7..709b82930e 100644 --- a/src/oci/golden_gate/models/pipeline_schema_table_collection.py +++ b/src/oci/golden_gate/models/pipeline_schema_table_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_schema_table_summary.py b/src/oci/golden_gate/models/pipeline_schema_table_summary.py index bc0ed273a1..9ea1023363 100644 --- a/src/oci/golden_gate/models/pipeline_schema_table_summary.py +++ b/src/oci/golden_gate/models/pipeline_schema_table_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/pipeline_summary.py b/src/oci/golden_gate/models/pipeline_summary.py index 093620f7aa..f1702b79f0 100644 --- a/src/oci/golden_gate/models/pipeline_summary.py +++ b/src/oci/golden_gate/models/pipeline_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/postgresql_connection.py b/src/oci/golden_gate/models/postgresql_connection.py index 9fbc0bb46f..276f61740c 100644 --- a/src/oci/golden_gate/models/postgresql_connection.py +++ b/src/oci/golden_gate/models/postgresql_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/postgresql_connection_summary.py b/src/oci/golden_gate/models/postgresql_connection_summary.py index bc89f9bc74..04a87ea857 100644 --- a/src/oci/golden_gate/models/postgresql_connection_summary.py +++ b/src/oci/golden_gate/models/postgresql_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/process_options.py b/src/oci/golden_gate/models/process_options.py index d8600682bb..167a95465e 100644 --- a/src/oci/golden_gate/models/process_options.py +++ b/src/oci/golden_gate/models/process_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/recipe_summary.py b/src/oci/golden_gate/models/recipe_summary.py index 547f5b0934..6a3b750401 100644 --- a/src/oci/golden_gate/models/recipe_summary.py +++ b/src/oci/golden_gate/models/recipe_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/recipe_summary_collection.py b/src/oci/golden_gate/models/recipe_summary_collection.py index 5463bc2a79..4763ad2b6e 100644 --- a/src/oci/golden_gate/models/recipe_summary_collection.py +++ b/src/oci/golden_gate/models/recipe_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/redis_connection.py b/src/oci/golden_gate/models/redis_connection.py index 142eaf5e17..2bf2546776 100644 --- a/src/oci/golden_gate/models/redis_connection.py +++ b/src/oci/golden_gate/models/redis_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/redis_connection_summary.py b/src/oci/golden_gate/models/redis_connection_summary.py index e7178d0ea8..78e50f421d 100644 --- a/src/oci/golden_gate/models/redis_connection_summary.py +++ b/src/oci/golden_gate/models/redis_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/refresh_connection_details.py b/src/oci/golden_gate/models/refresh_connection_details.py index e96e7b76a0..8c4a454cc0 100644 --- a/src/oci/golden_gate/models/refresh_connection_details.py +++ b/src/oci/golden_gate/models/refresh_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/remove_resource_lock_details.py b/src/oci/golden_gate/models/remove_resource_lock_details.py index 0e0aa7f4bf..eb275e6916 100644 --- a/src/oci/golden_gate/models/remove_resource_lock_details.py +++ b/src/oci/golden_gate/models/remove_resource_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/replicate_schema_change.py b/src/oci/golden_gate/models/replicate_schema_change.py index e088835987..c64174f562 100644 --- a/src/oci/golden_gate/models/replicate_schema_change.py +++ b/src/oci/golden_gate/models/replicate_schema_change.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/reschedule_deployment_upgrade_details.py b/src/oci/golden_gate/models/reschedule_deployment_upgrade_details.py index 502faeee73..90956e44b0 100644 --- a/src/oci/golden_gate/models/reschedule_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/reschedule_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/reschedule_deployment_upgrade_to_date_details.py b/src/oci/golden_gate/models/reschedule_deployment_upgrade_to_date_details.py index 3d31ccba3a..84febaa3d0 100644 --- a/src/oci/golden_gate/models/reschedule_deployment_upgrade_to_date_details.py +++ b/src/oci/golden_gate/models/reschedule_deployment_upgrade_to_date_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/resource_lock.py b/src/oci/golden_gate/models/resource_lock.py index f4a9ce9f53..0f0f04d03c 100644 --- a/src/oci/golden_gate/models/resource_lock.py +++ b/src/oci/golden_gate/models/resource_lock.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/restore_deployment_details.py b/src/oci/golden_gate/models/restore_deployment_details.py index bc4449edc3..43acae87c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/rollback_deployment_upgrade_details.py b/src/oci/golden_gate/models/rollback_deployment_upgrade_details.py index dc1a1cd84b..a5ced3aac1 100644 --- a/src/oci/golden_gate/models/rollback_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/rollback_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/snooze_deployment_upgrade_details.py b/src/oci/golden_gate/models/snooze_deployment_upgrade_details.py index f27f5f78c1..35d94d2f88 100644 --- a/src/oci/golden_gate/models/snooze_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/snooze_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/snowflake_connection.py b/src/oci/golden_gate/models/snowflake_connection.py index eed511b9af..e4cc01ed36 100644 --- a/src/oci/golden_gate/models/snowflake_connection.py +++ b/src/oci/golden_gate/models/snowflake_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/snowflake_connection_summary.py b/src/oci/golden_gate/models/snowflake_connection_summary.py index a1710ea94c..dd14ed0512 100644 --- a/src/oci/golden_gate/models/snowflake_connection_summary.py +++ b/src/oci/golden_gate/models/snowflake_connection_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/source_pipeline_connection_details.py b/src/oci/golden_gate/models/source_pipeline_connection_details.py index 9d93eb4169..2a6723e98b 100644 --- a/src/oci/golden_gate/models/source_pipeline_connection_details.py +++ b/src/oci/golden_gate/models/source_pipeline_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/start_deployment_details.py b/src/oci/golden_gate/models/start_deployment_details.py index 836b08b006..f6c610e160 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/start_pipeline_details.py b/src/oci/golden_gate/models/start_pipeline_details.py index 5de3d20ec3..ed6d3f634b 100644 --- a/src/oci/golden_gate/models/start_pipeline_details.py +++ b/src/oci/golden_gate/models/start_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/step_message.py b/src/oci/golden_gate/models/step_message.py index 0554036e00..79c9be438b 100644 --- a/src/oci/golden_gate/models/step_message.py +++ b/src/oci/golden_gate/models/step_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/stop_deployment_details.py b/src/oci/golden_gate/models/stop_deployment_details.py index a43b698dbe..43aebd63e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/stop_pipeline_details.py b/src/oci/golden_gate/models/stop_pipeline_details.py index e181c3f3c5..7805aacc97 100644 --- a/src/oci/golden_gate/models/stop_pipeline_details.py +++ b/src/oci/golden_gate/models/stop_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/target_pipeline_connection_details.py b/src/oci/golden_gate/models/target_pipeline_connection_details.py index a5251b9fd8..c2c8acfaec 100644 --- a/src/oci/golden_gate/models/target_pipeline_connection_details.py +++ b/src/oci/golden_gate/models/target_pipeline_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/test_connection_assignment_details.py b/src/oci/golden_gate/models/test_connection_assignment_details.py index 172757905c..e8a9c43e39 100644 --- a/src/oci/golden_gate/models/test_connection_assignment_details.py +++ b/src/oci/golden_gate/models/test_connection_assignment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/test_connection_assignment_error.py b/src/oci/golden_gate/models/test_connection_assignment_error.py index f11d549309..5263492293 100644 --- a/src/oci/golden_gate/models/test_connection_assignment_error.py +++ b/src/oci/golden_gate/models/test_connection_assignment_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/test_connection_assignment_result.py b/src/oci/golden_gate/models/test_connection_assignment_result.py index ca6e0fa4c0..6e978a557a 100644 --- a/src/oci/golden_gate/models/test_connection_assignment_result.py +++ b/src/oci/golden_gate/models/test_connection_assignment_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/test_pipeline_connection_details.py b/src/oci/golden_gate/models/test_pipeline_connection_details.py index 6cd5cff5a8..f5421b8aa9 100644 --- a/src/oci/golden_gate/models/test_pipeline_connection_details.py +++ b/src/oci/golden_gate/models/test_pipeline_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/test_pipeline_connection_error.py b/src/oci/golden_gate/models/test_pipeline_connection_error.py index 4139e1cc05..4d10e5244a 100644 --- a/src/oci/golden_gate/models/test_pipeline_connection_error.py +++ b/src/oci/golden_gate/models/test_pipeline_connection_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/test_pipeline_connection_result.py b/src/oci/golden_gate/models/test_pipeline_connection_result.py index 22ee623574..1ef7e85412 100644 --- a/src/oci/golden_gate/models/test_pipeline_connection_result.py +++ b/src/oci/golden_gate/models/test_pipeline_connection_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/trail_file_collection.py b/src/oci/golden_gate/models/trail_file_collection.py index de4bb9641f..7631da3cf4 100644 --- a/src/oci/golden_gate/models/trail_file_collection.py +++ b/src/oci/golden_gate/models/trail_file_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/trail_file_summary.py b/src/oci/golden_gate/models/trail_file_summary.py index 2d17cf2789..876dfa0f76 100644 --- a/src/oci/golden_gate/models/trail_file_summary.py +++ b/src/oci/golden_gate/models/trail_file_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/trail_sequence_collection.py b/src/oci/golden_gate/models/trail_sequence_collection.py index 7bcc32a44e..7a73b7680c 100644 --- a/src/oci/golden_gate/models/trail_sequence_collection.py +++ b/src/oci/golden_gate/models/trail_sequence_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/trail_sequence_summary.py b/src/oci/golden_gate/models/trail_sequence_summary.py index aed6a43467..067c6fc578 100644 --- a/src/oci/golden_gate/models/trail_sequence_summary.py +++ b/src/oci/golden_gate/models/trail_sequence_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_amazon_kinesis_connection_details.py b/src/oci/golden_gate/models/update_amazon_kinesis_connection_details.py index cf7e6e566d..563f65e11d 100644 --- a/src/oci/golden_gate/models/update_amazon_kinesis_connection_details.py +++ b/src/oci/golden_gate/models/update_amazon_kinesis_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_amazon_redshift_connection_details.py b/src/oci/golden_gate/models/update_amazon_redshift_connection_details.py index edaa0777bc..d75d0cdc94 100644 --- a/src/oci/golden_gate/models/update_amazon_redshift_connection_details.py +++ b/src/oci/golden_gate/models/update_amazon_redshift_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_amazon_s3_connection_details.py b/src/oci/golden_gate/models/update_amazon_s3_connection_details.py index 32daef8b98..3dc000d3bb 100644 --- a/src/oci/golden_gate/models/update_amazon_s3_connection_details.py +++ b/src/oci/golden_gate/models/update_amazon_s3_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_azure_data_lake_storage_connection_details.py b/src/oci/golden_gate/models/update_azure_data_lake_storage_connection_details.py index 1857ed8cd2..08e410b283 100644 --- a/src/oci/golden_gate/models/update_azure_data_lake_storage_connection_details.py +++ b/src/oci/golden_gate/models/update_azure_data_lake_storage_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_azure_synapse_connection_details.py b/src/oci/golden_gate/models/update_azure_synapse_connection_details.py index e8a3e8b09e..fdb740301b 100644 --- a/src/oci/golden_gate/models/update_azure_synapse_connection_details.py +++ b/src/oci/golden_gate/models/update_azure_synapse_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_connection_details.py b/src/oci/golden_gate/models/update_connection_details.py index cbadc541ad..74f0823c98 100644 --- a/src/oci/golden_gate/models/update_connection_details.py +++ b/src/oci/golden_gate/models/update_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 c48525103d..c351d90704 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_db2_connection_details.py b/src/oci/golden_gate/models/update_db2_connection_details.py index fc6d72e783..6f299df9a5 100644 --- a/src/oci/golden_gate/models/update_db2_connection_details.py +++ b/src/oci/golden_gate/models/update_db2_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 61322a4079..ce6fffcdc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_deployment_details.py b/src/oci/golden_gate/models/update_deployment_details.py index fff983a663..7ecbbd697c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_elasticsearch_connection_details.py b/src/oci/golden_gate/models/update_elasticsearch_connection_details.py index 8bd1943081..33e43ffc12 100644 --- a/src/oci/golden_gate/models/update_elasticsearch_connection_details.py +++ b/src/oci/golden_gate/models/update_elasticsearch_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_generic_connection_details.py b/src/oci/golden_gate/models/update_generic_connection_details.py index 6f2cc85303..76ad2c9d8b 100644 --- a/src/oci/golden_gate/models/update_generic_connection_details.py +++ b/src/oci/golden_gate/models/update_generic_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_golden_gate_connection_details.py b/src/oci/golden_gate/models/update_golden_gate_connection_details.py index 6748f10398..50285384c2 100644 --- a/src/oci/golden_gate/models/update_golden_gate_connection_details.py +++ b/src/oci/golden_gate/models/update_golden_gate_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_google_big_query_connection_details.py b/src/oci/golden_gate/models/update_google_big_query_connection_details.py index 7ee4dc5a76..672bc4a882 100644 --- a/src/oci/golden_gate/models/update_google_big_query_connection_details.py +++ b/src/oci/golden_gate/models/update_google_big_query_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_google_cloud_storage_connection_details.py b/src/oci/golden_gate/models/update_google_cloud_storage_connection_details.py index fd8c3fee40..4208c536d6 100644 --- a/src/oci/golden_gate/models/update_google_cloud_storage_connection_details.py +++ b/src/oci/golden_gate/models/update_google_cloud_storage_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_group_to_roles_mapping_details.py b/src/oci/golden_gate/models/update_group_to_roles_mapping_details.py index 990340cc82..356be788e2 100644 --- a/src/oci/golden_gate/models/update_group_to_roles_mapping_details.py +++ b/src/oci/golden_gate/models/update_group_to_roles_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_hdfs_connection_details.py b/src/oci/golden_gate/models/update_hdfs_connection_details.py index 07bd0dff61..8f7fe8e1c9 100644 --- a/src/oci/golden_gate/models/update_hdfs_connection_details.py +++ b/src/oci/golden_gate/models/update_hdfs_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_java_message_service_connection_details.py b/src/oci/golden_gate/models/update_java_message_service_connection_details.py index 6fcc91ecfd..855c771ac7 100644 --- a/src/oci/golden_gate/models/update_java_message_service_connection_details.py +++ b/src/oci/golden_gate/models/update_java_message_service_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_kafka_connection_details.py b/src/oci/golden_gate/models/update_kafka_connection_details.py index b1609aacc6..f7d8e74e68 100644 --- a/src/oci/golden_gate/models/update_kafka_connection_details.py +++ b/src/oci/golden_gate/models/update_kafka_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_kafka_schema_registry_connection_details.py b/src/oci/golden_gate/models/update_kafka_schema_registry_connection_details.py index c646742c85..93a57aa517 100644 --- a/src/oci/golden_gate/models/update_kafka_schema_registry_connection_details.py +++ b/src/oci/golden_gate/models/update_kafka_schema_registry_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_maintenance_configuration_details.py b/src/oci/golden_gate/models/update_maintenance_configuration_details.py index cbd5292474..2d08d0eec1 100644 --- a/src/oci/golden_gate/models/update_maintenance_configuration_details.py +++ b/src/oci/golden_gate/models/update_maintenance_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_maintenance_window_details.py b/src/oci/golden_gate/models/update_maintenance_window_details.py index 6c29a6757c..02cf3e0922 100644 --- a/src/oci/golden_gate/models/update_maintenance_window_details.py +++ b/src/oci/golden_gate/models/update_maintenance_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_microsoft_sqlserver_connection_details.py b/src/oci/golden_gate/models/update_microsoft_sqlserver_connection_details.py index 848041ebe6..89d1429813 100644 --- a/src/oci/golden_gate/models/update_microsoft_sqlserver_connection_details.py +++ b/src/oci/golden_gate/models/update_microsoft_sqlserver_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_mongo_db_connection_details.py b/src/oci/golden_gate/models/update_mongo_db_connection_details.py index 636fbf7cba..58f3ad9855 100644 --- a/src/oci/golden_gate/models/update_mongo_db_connection_details.py +++ b/src/oci/golden_gate/models/update_mongo_db_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_mysql_connection_details.py b/src/oci/golden_gate/models/update_mysql_connection_details.py index 49bc0dec5d..30cf09ecc6 100644 --- a/src/oci/golden_gate/models/update_mysql_connection_details.py +++ b/src/oci/golden_gate/models/update_mysql_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_oci_object_storage_connection_details.py b/src/oci/golden_gate/models/update_oci_object_storage_connection_details.py index 767038f10d..f9a1742378 100644 --- a/src/oci/golden_gate/models/update_oci_object_storage_connection_details.py +++ b/src/oci/golden_gate/models/update_oci_object_storage_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 f635bedf1f..73311d3e09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_oracle_connection_details.py b/src/oci/golden_gate/models/update_oracle_connection_details.py index e70e168224..fc5bab1586 100644 --- a/src/oci/golden_gate/models/update_oracle_connection_details.py +++ b/src/oci/golden_gate/models/update_oracle_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_oracle_nosql_connection_details.py b/src/oci/golden_gate/models/update_oracle_nosql_connection_details.py index 46c7f5b435..4e9f9c5aff 100644 --- a/src/oci/golden_gate/models/update_oracle_nosql_connection_details.py +++ b/src/oci/golden_gate/models/update_oracle_nosql_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_pipeline_details.py b/src/oci/golden_gate/models/update_pipeline_details.py index 4255abf6ae..9e3062d989 100644 --- a/src/oci/golden_gate/models/update_pipeline_details.py +++ b/src/oci/golden_gate/models/update_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_postgresql_connection_details.py b/src/oci/golden_gate/models/update_postgresql_connection_details.py index a23b52924e..8d26b37fd5 100644 --- a/src/oci/golden_gate/models/update_postgresql_connection_details.py +++ b/src/oci/golden_gate/models/update_postgresql_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_redis_connection_details.py b/src/oci/golden_gate/models/update_redis_connection_details.py index 5e29ce309c..330061d0df 100644 --- a/src/oci/golden_gate/models/update_redis_connection_details.py +++ b/src/oci/golden_gate/models/update_redis_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_snowflake_connection_details.py b/src/oci/golden_gate/models/update_snowflake_connection_details.py index 79c16e15bf..acdbfe01f9 100644 --- a/src/oci/golden_gate/models/update_snowflake_connection_details.py +++ b/src/oci/golden_gate/models/update_snowflake_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/update_zero_etl_pipeline_details.py b/src/oci/golden_gate/models/update_zero_etl_pipeline_details.py index 4cb1200d3f..583df6a5e9 100644 --- a/src/oci/golden_gate/models/update_zero_etl_pipeline_details.py +++ b/src/oci/golden_gate/models/update_zero_etl_pipeline_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 f2cdedb7b9..5d388447dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/upgrade_deployment_details.py b/src/oci/golden_gate/models/upgrade_deployment_details.py index 5a69b358c3..47af56503f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/upgrade_deployment_specific_release_details.py b/src/oci/golden_gate/models/upgrade_deployment_specific_release_details.py index 3bc855c7f5..ae747d0bde 100644 --- a/src/oci/golden_gate/models/upgrade_deployment_specific_release_details.py +++ b/src/oci/golden_gate/models/upgrade_deployment_specific_release_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/upgrade_deployment_upgrade_details.py b/src/oci/golden_gate/models/upgrade_deployment_upgrade_details.py index 17e2448971..6ebe5bec53 100644 --- a/src/oci/golden_gate/models/upgrade_deployment_upgrade_details.py +++ b/src/oci/golden_gate/models/upgrade_deployment_upgrade_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/work_request.py b/src/oci/golden_gate/models/work_request.py index 627ba9d674..c4e848f4e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/work_request_error.py b/src/oci/golden_gate/models/work_request_error.py index be44e1d04b..8a3e813e1b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 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 a8773b7d0f..4b9f3e1c47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/work_request_resource.py b/src/oci/golden_gate/models/work_request_resource.py index 6c5b66d809..4197059c3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/zero_etl_pipeline.py b/src/oci/golden_gate/models/zero_etl_pipeline.py index d5d035afb0..9a0371b122 100644 --- a/src/oci/golden_gate/models/zero_etl_pipeline.py +++ b/src/oci/golden_gate/models/zero_etl_pipeline.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/golden_gate/models/zero_etl_pipeline_summary.py b/src/oci/golden_gate/models/zero_etl_pipeline_summary.py index 91a4c96cb9..d723d5f173 100644 --- a/src/oci/golden_gate/models/zero_etl_pipeline_summary.py +++ b/src/oci/golden_gate/models/zero_etl_pipeline_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200407 diff --git a/src/oci/governance_rules_control_plane/__init__.py b/src/oci/governance_rules_control_plane/__init__.py index b8941a3053..8853c0b3ba 100644 --- a/src/oci/governance_rules_control_plane/__init__.py +++ b/src/oci/governance_rules_control_plane/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/governance_rule_client.py b/src/oci/governance_rules_control_plane/governance_rule_client.py index 4168537058..2a70ace502 100644 --- a/src/oci/governance_rules_control_plane/governance_rule_client.py +++ b/src/oci/governance_rules_control_plane/governance_rule_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/governance_rule_client_composite_operations.py b/src/oci/governance_rules_control_plane/governance_rule_client_composite_operations.py index 1233a06076..54d46be29f 100644 --- a/src/oci/governance_rules_control_plane/governance_rule_client_composite_operations.py +++ b/src/oci/governance_rules_control_plane/governance_rule_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/__init__.py b/src/oci/governance_rules_control_plane/models/__init__.py index d544419594..3a5f8e5495 100644 --- a/src/oci/governance_rules_control_plane/models/__init__.py +++ b/src/oci/governance_rules_control_plane/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/allowed_regions_template.py b/src/oci/governance_rules_control_plane/models/allowed_regions_template.py index 1609340b6d..95d8753861 100644 --- a/src/oci/governance_rules_control_plane/models/allowed_regions_template.py +++ b/src/oci/governance_rules_control_plane/models/allowed_regions_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/association.py b/src/oci/governance_rules_control_plane/models/association.py index 3d6536c955..5f0d956403 100644 --- a/src/oci/governance_rules_control_plane/models/association.py +++ b/src/oci/governance_rules_control_plane/models/association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/base_tag_definition_validator.py b/src/oci/governance_rules_control_plane/models/base_tag_definition_validator.py index 2068783da8..fdd0ce2907 100644 --- a/src/oci/governance_rules_control_plane/models/base_tag_definition_validator.py +++ b/src/oci/governance_rules_control_plane/models/base_tag_definition_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/create_governance_rule_details.py b/src/oci/governance_rules_control_plane/models/create_governance_rule_details.py index 36ab0b2ed2..26d6860274 100644 --- a/src/oci/governance_rules_control_plane/models/create_governance_rule_details.py +++ b/src/oci/governance_rules_control_plane/models/create_governance_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/create_inclusion_criterion_details.py b/src/oci/governance_rules_control_plane/models/create_inclusion_criterion_details.py index d6c3b1e0c9..5b83734958 100644 --- a/src/oci/governance_rules_control_plane/models/create_inclusion_criterion_details.py +++ b/src/oci/governance_rules_control_plane/models/create_inclusion_criterion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/default_tag_definition_validator.py b/src/oci/governance_rules_control_plane/models/default_tag_definition_validator.py index ffaa636863..28f80784ac 100644 --- a/src/oci/governance_rules_control_plane/models/default_tag_definition_validator.py +++ b/src/oci/governance_rules_control_plane/models/default_tag_definition_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/enforced_governance_rule.py b/src/oci/governance_rules_control_plane/models/enforced_governance_rule.py index 6f6f7ea5f6..f43c453607 100644 --- a/src/oci/governance_rules_control_plane/models/enforced_governance_rule.py +++ b/src/oci/governance_rules_control_plane/models/enforced_governance_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/enforced_governance_rule_collection.py b/src/oci/governance_rules_control_plane/models/enforced_governance_rule_collection.py index a7d3608522..92ff0a01fa 100644 --- a/src/oci/governance_rules_control_plane/models/enforced_governance_rule_collection.py +++ b/src/oci/governance_rules_control_plane/models/enforced_governance_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/enforced_governance_rule_summary.py b/src/oci/governance_rules_control_plane/models/enforced_governance_rule_summary.py index 820e018432..d5f9a19339 100644 --- a/src/oci/governance_rules_control_plane/models/enforced_governance_rule_summary.py +++ b/src/oci/governance_rules_control_plane/models/enforced_governance_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/enum_tag_definition_validator.py b/src/oci/governance_rules_control_plane/models/enum_tag_definition_validator.py index 6e760e369b..7f2e97b7f3 100644 --- a/src/oci/governance_rules_control_plane/models/enum_tag_definition_validator.py +++ b/src/oci/governance_rules_control_plane/models/enum_tag_definition_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/governance_rule.py b/src/oci/governance_rules_control_plane/models/governance_rule.py index f38db8e938..bc1b729793 100644 --- a/src/oci/governance_rules_control_plane/models/governance_rule.py +++ b/src/oci/governance_rules_control_plane/models/governance_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/governance_rule_collection.py b/src/oci/governance_rules_control_plane/models/governance_rule_collection.py index cbfc6dedd6..577d99d17e 100644 --- a/src/oci/governance_rules_control_plane/models/governance_rule_collection.py +++ b/src/oci/governance_rules_control_plane/models/governance_rule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/governance_rule_summary.py b/src/oci/governance_rules_control_plane/models/governance_rule_summary.py index d22f7830d9..4dfdcfd8db 100644 --- a/src/oci/governance_rules_control_plane/models/governance_rule_summary.py +++ b/src/oci/governance_rules_control_plane/models/governance_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/inclusion_criterion.py b/src/oci/governance_rules_control_plane/models/inclusion_criterion.py index 4ec5228dd8..b00fcdec32 100644 --- a/src/oci/governance_rules_control_plane/models/inclusion_criterion.py +++ b/src/oci/governance_rules_control_plane/models/inclusion_criterion.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/inclusion_criterion_collection.py b/src/oci/governance_rules_control_plane/models/inclusion_criterion_collection.py index 24eefcf3b2..b56045095d 100644 --- a/src/oci/governance_rules_control_plane/models/inclusion_criterion_collection.py +++ b/src/oci/governance_rules_control_plane/models/inclusion_criterion_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/inclusion_criterion_summary.py b/src/oci/governance_rules_control_plane/models/inclusion_criterion_summary.py index cd43ff03e7..0f9628cd26 100644 --- a/src/oci/governance_rules_control_plane/models/inclusion_criterion_summary.py +++ b/src/oci/governance_rules_control_plane/models/inclusion_criterion_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/quota_template.py b/src/oci/governance_rules_control_plane/models/quota_template.py index 89e0844e92..5e3b1b6bb3 100644 --- a/src/oci/governance_rules_control_plane/models/quota_template.py +++ b/src/oci/governance_rules_control_plane/models/quota_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/tag.py b/src/oci/governance_rules_control_plane/models/tag.py index d88a4b96f6..cc517e5d2a 100644 --- a/src/oci/governance_rules_control_plane/models/tag.py +++ b/src/oci/governance_rules_control_plane/models/tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/tag_default.py b/src/oci/governance_rules_control_plane/models/tag_default.py index 4313d893a4..fef151068f 100644 --- a/src/oci/governance_rules_control_plane/models/tag_default.py +++ b/src/oci/governance_rules_control_plane/models/tag_default.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/tag_template.py b/src/oci/governance_rules_control_plane/models/tag_template.py index 6025e0a363..bab2a6c083 100644 --- a/src/oci/governance_rules_control_plane/models/tag_template.py +++ b/src/oci/governance_rules_control_plane/models/tag_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/template.py b/src/oci/governance_rules_control_plane/models/template.py index 708d886211..12813e5459 100644 --- a/src/oci/governance_rules_control_plane/models/template.py +++ b/src/oci/governance_rules_control_plane/models/template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/tenancy_association.py b/src/oci/governance_rules_control_plane/models/tenancy_association.py index 1f9004c5c5..0f96998940 100644 --- a/src/oci/governance_rules_control_plane/models/tenancy_association.py +++ b/src/oci/governance_rules_control_plane/models/tenancy_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/tenancy_attachment.py b/src/oci/governance_rules_control_plane/models/tenancy_attachment.py index acb119cff7..65687c90b3 100644 --- a/src/oci/governance_rules_control_plane/models/tenancy_attachment.py +++ b/src/oci/governance_rules_control_plane/models/tenancy_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/tenancy_attachment_collection.py b/src/oci/governance_rules_control_plane/models/tenancy_attachment_collection.py index b5806f8838..c486be7b87 100644 --- a/src/oci/governance_rules_control_plane/models/tenancy_attachment_collection.py +++ b/src/oci/governance_rules_control_plane/models/tenancy_attachment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/tenancy_attachment_summary.py b/src/oci/governance_rules_control_plane/models/tenancy_attachment_summary.py index 894a2bc860..055f98cbf6 100644 --- a/src/oci/governance_rules_control_plane/models/tenancy_attachment_summary.py +++ b/src/oci/governance_rules_control_plane/models/tenancy_attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/update_governance_rule_details.py b/src/oci/governance_rules_control_plane/models/update_governance_rule_details.py index 0d3aa20e0d..58d6a8b3ba 100644 --- a/src/oci/governance_rules_control_plane/models/update_governance_rule_details.py +++ b/src/oci/governance_rules_control_plane/models/update_governance_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/work_request.py b/src/oci/governance_rules_control_plane/models/work_request.py index 73d54af80a..9cc357c723 100644 --- a/src/oci/governance_rules_control_plane/models/work_request.py +++ b/src/oci/governance_rules_control_plane/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/work_request_error.py b/src/oci/governance_rules_control_plane/models/work_request_error.py index 1414bc8aa3..70949c4a48 100644 --- a/src/oci/governance_rules_control_plane/models/work_request_error.py +++ b/src/oci/governance_rules_control_plane/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/work_request_error_collection.py b/src/oci/governance_rules_control_plane/models/work_request_error_collection.py index d391cd956b..ce0ddb6947 100644 --- a/src/oci/governance_rules_control_plane/models/work_request_error_collection.py +++ b/src/oci/governance_rules_control_plane/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/work_request_log_entry.py b/src/oci/governance_rules_control_plane/models/work_request_log_entry.py index c88b8c88ff..ebc93ec8ed 100644 --- a/src/oci/governance_rules_control_plane/models/work_request_log_entry.py +++ b/src/oci/governance_rules_control_plane/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/work_request_log_entry_collection.py b/src/oci/governance_rules_control_plane/models/work_request_log_entry_collection.py index 99ebd6b074..45b4cebf19 100644 --- a/src/oci/governance_rules_control_plane/models/work_request_log_entry_collection.py +++ b/src/oci/governance_rules_control_plane/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/work_request_resource.py b/src/oci/governance_rules_control_plane/models/work_request_resource.py index fe24a35738..b61df8b7b2 100644 --- a/src/oci/governance_rules_control_plane/models/work_request_resource.py +++ b/src/oci/governance_rules_control_plane/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/work_request_summary.py b/src/oci/governance_rules_control_plane/models/work_request_summary.py index 9d14b2680d..35fa0978f6 100644 --- a/src/oci/governance_rules_control_plane/models/work_request_summary.py +++ b/src/oci/governance_rules_control_plane/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/models/work_request_summary_collection.py b/src/oci/governance_rules_control_plane/models/work_request_summary_collection.py index 42b5555bf4..34865508b0 100644 --- a/src/oci/governance_rules_control_plane/models/work_request_summary_collection.py +++ b/src/oci/governance_rules_control_plane/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/work_request_client.py b/src/oci/governance_rules_control_plane/work_request_client.py index 7aeb7f71f8..b69cd85083 100644 --- a/src/oci/governance_rules_control_plane/work_request_client.py +++ b/src/oci/governance_rules_control_plane/work_request_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/governance_rules_control_plane/work_request_client_composite_operations.py b/src/oci/governance_rules_control_plane/work_request_client_composite_operations.py index fa4fb765ad..bf61e9a52c 100644 --- a/src/oci/governance_rules_control_plane/work_request_client_composite_operations.py +++ b/src/oci/governance_rules_control_plane/work_request_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220504 diff --git a/src/oci/healthchecks/__init__.py b/src/oci/healthchecks/__init__.py index fec77f5691..856638a128 100644 --- a/src/oci/healthchecks/__init__.py +++ b/src/oci/healthchecks/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/health_checks_client.py b/src/oci/healthchecks/health_checks_client.py index 123f56cb5e..378d75a688 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/health_checks_client_composite_operations.py b/src/oci/healthchecks/health_checks_client_composite_operations.py index 9a2581d9b4..f09257b5e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/__init__.py b/src/oci/healthchecks/models/__init__.py index e6cd557b49..2627df3e3b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 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 793aee11b9..3059054007 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 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 b3dc80117b..896eb9c135 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/connection.py b/src/oci/healthchecks/models/connection.py index 4615ac1f85..c3a1ec0fb3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/create_http_monitor_details.py b/src/oci/healthchecks/models/create_http_monitor_details.py index 615b598e25..7ceacfddb3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 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 7bae813e12..f921fb41e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 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 ae4f058424..e635005f1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/create_ping_monitor_details.py b/src/oci/healthchecks/models/create_ping_monitor_details.py index 127cead5af..7d4a5447cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/dns.py b/src/oci/healthchecks/models/dns.py index cca3e8e466..4df555b40d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/geolocation.py b/src/oci/healthchecks/models/geolocation.py index 836b5cedb2..9cbfce7814 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 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 0780886095..295210d742 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/http_monitor.py b/src/oci/healthchecks/models/http_monitor.py index 1162a59ed9..d077379f32 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/http_monitor_summary.py b/src/oci/healthchecks/models/http_monitor_summary.py index 9956d80e80..256dfc4d53 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/http_probe.py b/src/oci/healthchecks/models/http_probe.py index 284de0088a..dd44559625 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/http_probe_result_summary.py b/src/oci/healthchecks/models/http_probe_result_summary.py index f746c476f4..3332fc6964 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/ping_monitor.py b/src/oci/healthchecks/models/ping_monitor.py index 45b5c6bd31..de60dc78c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/ping_monitor_summary.py b/src/oci/healthchecks/models/ping_monitor_summary.py index 1386b8c9d8..26fa0f9fe1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/ping_probe.py b/src/oci/healthchecks/models/ping_probe.py index 68e1fcc2a3..ccb1aa853c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/ping_probe_result_summary.py b/src/oci/healthchecks/models/ping_probe_result_summary.py index 2b6d876682..57650c07d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/routing.py b/src/oci/healthchecks/models/routing.py index 0a1f339607..9a55853485 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/tcp_connection.py b/src/oci/healthchecks/models/tcp_connection.py index a244f42f74..997f47c678 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/update_http_monitor_details.py b/src/oci/healthchecks/models/update_http_monitor_details.py index 3d4d35ef5e..6e21bf3aa8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/healthchecks/models/update_ping_monitor_details.py b/src/oci/healthchecks/models/update_ping_monitor_details.py index ae575c43a1..a542cf442d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180501 diff --git a/src/oci/identity/__init__.py b/src/oci/identity/__init__.py index 2c3b27f2dc..6f74534642 100644 --- a/src/oci/identity/__init__.py +++ b/src/oci/identity/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/identity_client.py b/src/oci/identity/identity_client.py index 573445b8de..0be0b9f43e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/identity_client_composite_operations.py b/src/oci/identity/identity_client_composite_operations.py index 38aaf74fdc..79146cee38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/__init__.py b/src/oci/identity/models/__init__.py index acaccf90fd..a7519c9154 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/add_lock_details.py b/src/oci/identity/models/add_lock_details.py index bb0e5f1500..d4e0e9d4f1 100644 --- a/src/oci/identity/models/add_lock_details.py +++ b/src/oci/identity/models/add_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2e84be2b9b..1cfe6e1540 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b4bf2fa3b6..cd5c47535f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/api_key.py b/src/oci/identity/models/api_key.py index b9ad3ca224..89ad06d8d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/auth_token.py b/src/oci/identity/models/auth_token.py index 008c6b76c5..ae6ae41cdb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/authentication_policy.py b/src/oci/identity/models/authentication_policy.py index 94de493cde..8ea6cf2cbd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/availability_domain.py b/src/oci/identity/models/availability_domain.py index b538422317..f4695f9557 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/base_tag_definition_validator.py b/src/oci/identity/models/base_tag_definition_validator.py index 71ef5c3bf5..2adca5fbed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/bulk_action_resource.py b/src/oci/identity/models/bulk_action_resource.py index c216606742..009eb9325c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/bulk_action_resource_type.py b/src/oci/identity/models/bulk_action_resource_type.py index 976c56f838..9d61b9260c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 73893bcfd0..908c246587 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/bulk_delete_resources_details.py b/src/oci/identity/models/bulk_delete_resources_details.py index 9be3011231..d3db9dd7f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/bulk_delete_tags_details.py b/src/oci/identity/models/bulk_delete_tags_details.py index 4b96101d90..f71b39411a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/bulk_edit_operation_details.py b/src/oci/identity/models/bulk_edit_operation_details.py index b719fdecd9..4239ab09c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/bulk_edit_resource.py b/src/oci/identity/models/bulk_edit_resource.py index 5c5a83b6ad..b623d5a0f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/bulk_edit_tags_details.py b/src/oci/identity/models/bulk_edit_tags_details.py index 9954565b63..092723ac50 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 11e8a46f81..68518a26ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1ac31b2e9a..3bd5329974 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/bulk_move_resources_details.py b/src/oci/identity/models/bulk_move_resources_details.py index f1bcca98c1..d124b1069d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/change_domain_compartment_details.py b/src/oci/identity/models/change_domain_compartment_details.py index 40427784c4..ef4ccbe104 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 03ecd4d67f..f03308d9d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 17c53530aa..7ef7c3bc4f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 9b280daf98..362bdcc89a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/compartment.py b/src/oci/identity/models/compartment.py index 7a72fbfe65..246988ccb8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_api_key_details.py b/src/oci/identity/models/create_api_key_details.py index 4db57553d4..ec1ebbcba1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_auth_token_details.py b/src/oci/identity/models/create_auth_token_details.py index c693221e35..f7fa1f89c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_compartment_details.py b/src/oci/identity/models/create_compartment_details.py index 92af2ee5d8..3351e625e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 29761ea84f..1393205e15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_db_credential_details.py b/src/oci/identity/models/create_db_credential_details.py index 6a0dedfa4f..e1510f0a79 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_domain_details.py b/src/oci/identity/models/create_domain_details.py index a8930c0558..5a0269b7f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_dynamic_group_details.py b/src/oci/identity/models/create_dynamic_group_details.py index 1e58223e15..c71af22199 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_group_details.py b/src/oci/identity/models/create_group_details.py index 48fbb5430a..fe0fbbb85d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_identity_provider_details.py b/src/oci/identity/models/create_identity_provider_details.py index 12732ce70f..3f1a4d0530 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b206dcc34c..714c6bc4a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_network_source_details.py b/src/oci/identity/models/create_network_source_details.py index 8287164cd5..49b38b4ba9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 73815d1bfb..e4ed114aa8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_policy_details.py b/src/oci/identity/models/create_policy_details.py index 3187a6a1ab..4eef51e8a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_region_subscription_details.py b/src/oci/identity/models/create_region_subscription_details.py index ec60773e88..852c4d4ed9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 73f1d59ab1..d752ae4609 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_smtp_credential_details.py b/src/oci/identity/models/create_smtp_credential_details.py index 568846bba3..53928a638f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_swift_password_details.py b/src/oci/identity/models/create_swift_password_details.py index 5888b34bcc..1f9242abcf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_tag_default_details.py b/src/oci/identity/models/create_tag_default_details.py index 0f59e724f0..6c800e9fa9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_tag_details.py b/src/oci/identity/models/create_tag_details.py index 3943a22d96..0cd5f49f19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_tag_namespace_details.py b/src/oci/identity/models/create_tag_namespace_details.py index 3bd4f234a9..47efe1db07 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/create_user_details.py b/src/oci/identity/models/create_user_details.py index bd56b8ce82..62f65cdda6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/customer_secret_key.py b/src/oci/identity/models/customer_secret_key.py index ec3ebf1d90..1fdd19902c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/customer_secret_key_summary.py b/src/oci/identity/models/customer_secret_key_summary.py index b9a233edb6..3bfbc81b91 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/db_credential.py b/src/oci/identity/models/db_credential.py index bde6d0181e..702a7e3dc9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/db_credential_summary.py b/src/oci/identity/models/db_credential_summary.py index a8ab12171e..674e3fd183 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/default_tag_definition_validator.py b/src/oci/identity/models/default_tag_definition_validator.py index a0e638761d..a3b6bd6a39 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/domain.py b/src/oci/identity/models/domain.py index 1b53adf247..f25ad046e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/domain_replication.py b/src/oci/identity/models/domain_replication.py index 7cccda5772..65ecd18f3e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/domain_replication_states.py b/src/oci/identity/models/domain_replication_states.py index c1677117cf..3357953364 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/domain_summary.py b/src/oci/identity/models/domain_summary.py index 7c50affaee..211bfc3c2f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/dynamic_group.py b/src/oci/identity/models/dynamic_group.py index 1e0190e980..93e1fb5e36 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 77aea1ecfa..9324056034 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/enum_tag_definition_validator.py b/src/oci/identity/models/enum_tag_definition_validator.py index f8aa7e88d8..791f00af9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/fault_domain.py b/src/oci/identity/models/fault_domain.py index 8abfa2ef6b..5a2e240e8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/fully_qualified_scope.py b/src/oci/identity/models/fully_qualified_scope.py index 3599c268e3..1ed8058c34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/group.py b/src/oci/identity/models/group.py index c8542dcc80..b4c8aef397 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/iam_work_request.py b/src/oci/identity/models/iam_work_request.py index edeec6cf92..924010cf3b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ba8164d2a9..fc186700dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 744ad684f6..ac7dfb8132 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/iam_work_request_resource.py b/src/oci/identity/models/iam_work_request_resource.py index c10c36f55b..e657eb4bf6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/iam_work_request_summary.py b/src/oci/identity/models/iam_work_request_summary.py index 721408393f..1ffef16b73 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/identity_provider.py b/src/oci/identity/models/identity_provider.py index 213a7ccc9f..ca20ba1582 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/identity_provider_group_summary.py b/src/oci/identity/models/identity_provider_group_summary.py index 55e1faefd6..14d0c0b653 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/idp_group_mapping.py b/src/oci/identity/models/idp_group_mapping.py index ea033966bb..e34aaad23c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/import_standard_tags_details.py b/src/oci/identity/models/import_standard_tags_details.py index 6ef5faeda3..b2ae8d60a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/mfa_totp_device.py b/src/oci/identity/models/mfa_totp_device.py index ad742043ea..419aeff8ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/mfa_totp_device_summary.py b/src/oci/identity/models/mfa_totp_device_summary.py index 266b535501..72c6f3dc4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/mfa_totp_token.py b/src/oci/identity/models/mfa_totp_token.py index 2faef106d8..6d3b56d17e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/move_compartment_details.py b/src/oci/identity/models/move_compartment_details.py index aefda24aff..00bc8ab79f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/network_policy.py b/src/oci/identity/models/network_policy.py index 29e304d664..d1c8e83259 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/network_sources.py b/src/oci/identity/models/network_sources.py index d9e9017b1a..6b9a1a2e04 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/network_sources_summary.py b/src/oci/identity/models/network_sources_summary.py index 0d1d39e4fa..1da679cdb8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 61616af5d5..0fcb8daaaa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/o_auth2_client_credential.py b/src/oci/identity/models/o_auth2_client_credential.py index 0a705381db..1f754d00ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2839934f61..0399cd3693 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/password_policy.py b/src/oci/identity/models/password_policy.py index 9fae1c726d..2a4e77ac45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/policy.py b/src/oci/identity/models/policy.py index 45581ef1cb..f565b98703 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/region.py b/src/oci/identity/models/region.py index 19d1f141c6..093947fea9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/region_subscription.py b/src/oci/identity/models/region_subscription.py index 7883a3d1d9..b9ef706678 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/remove_lock_details.py b/src/oci/identity/models/remove_lock_details.py index f45fc12510..f1e967f0b7 100644 --- a/src/oci/identity/models/remove_lock_details.py +++ b/src/oci/identity/models/remove_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/replicated_region_details.py b/src/oci/identity/models/replicated_region_details.py index bc4c6b2ff3..5ec717241e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/resource_lock.py b/src/oci/identity/models/resource_lock.py index 3c6e2f57a1..d11eb6770a 100644 --- a/src/oci/identity/models/resource_lock.py +++ b/src/oci/identity/models/resource_lock.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/saml2_identity_provider.py b/src/oci/identity/models/saml2_identity_provider.py index f43dcb2562..12a12288bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/scim_client_credentials.py b/src/oci/identity/models/scim_client_credentials.py index c800d854f2..3f60c8ce56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/smtp_credential.py b/src/oci/identity/models/smtp_credential.py index b48bfda153..0a0c584a99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/smtp_credential_summary.py b/src/oci/identity/models/smtp_credential_summary.py index 13a691f8d1..6c4ce7cac5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/standard_tag_definition_template.py b/src/oci/identity/models/standard_tag_definition_template.py index c18b87d7ff..f5f9702be9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/standard_tag_namespace_template.py b/src/oci/identity/models/standard_tag_namespace_template.py index 60f48eeae9..a00e5d7a98 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 ec30689b90..b0e1248279 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/swift_password.py b/src/oci/identity/models/swift_password.py index 586398a243..9f4e0bcd51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/tag.py b/src/oci/identity/models/tag.py index 7eca871017..8ee8cb16ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/tag_default.py b/src/oci/identity/models/tag_default.py index 8682a71ef7..addc39b53a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/tag_default_summary.py b/src/oci/identity/models/tag_default_summary.py index 1b0a43f85a..a71fdf8788 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/tag_namespace.py b/src/oci/identity/models/tag_namespace.py index 9cca4bc614..fdf45d24a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/tag_namespace_summary.py b/src/oci/identity/models/tag_namespace_summary.py index 921aea4f45..62cc50e050 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/tag_summary.py b/src/oci/identity/models/tag_summary.py index 9d58e82450..c1e6e45e87 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/tagging_work_request.py b/src/oci/identity/models/tagging_work_request.py index efc14b002e..c836e2c51f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1389fd9800..b4ac8b0c9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f9cd865dcf..634ef0a414 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/tagging_work_request_summary.py b/src/oci/identity/models/tagging_work_request_summary.py index ae9b2debd8..df13624a9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/tenancy.py b/src/oci/identity/models/tenancy.py index b88bff8569..163ffe929e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/ui_password.py b/src/oci/identity/models/ui_password.py index e478d2ce84..b661c55ad0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/ui_password_information.py b/src/oci/identity/models/ui_password_information.py index e6e31d3684..63b5a3665b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_auth_token_details.py b/src/oci/identity/models/update_auth_token_details.py index cbb6ed2bf0..66b028ea76 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_authentication_policy_details.py b/src/oci/identity/models/update_authentication_policy_details.py index b0e6fcda0a..964613f596 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_compartment_details.py b/src/oci/identity/models/update_compartment_details.py index 47128785da..eb61515f5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 30b3dc9d0c..ab1fb70125 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_domain_details.py b/src/oci/identity/models/update_domain_details.py index 4510e93bdd..71479d07d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_dynamic_group_details.py b/src/oci/identity/models/update_dynamic_group_details.py index f766592440..1a282e3e4f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_group_details.py b/src/oci/identity/models/update_group_details.py index a18c29197a..1eb7e68eea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_identity_provider_details.py b/src/oci/identity/models/update_identity_provider_details.py index d4eb990c19..5cf9257e1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 dad9788923..90aac1cd3b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_network_source_details.py b/src/oci/identity/models/update_network_source_details.py index 8c8cbe64be..64ea87396e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 93095f34c0..7e703ea7b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_policy_details.py b/src/oci/identity/models/update_policy_details.py index 3608577f42..6993ab6f90 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 f8fe53a9df..70518648c0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_smtp_credential_details.py b/src/oci/identity/models/update_smtp_credential_details.py index f77030fd4a..33d7aee7dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_state_details.py b/src/oci/identity/models/update_state_details.py index 35fb58bcf3..f0ec1fe8d1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_swift_password_details.py b/src/oci/identity/models/update_swift_password_details.py index 264afe94d4..398c48134d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_tag_default_details.py b/src/oci/identity/models/update_tag_default_details.py index ce3e6b13a2..602b4c9b35 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_tag_details.py b/src/oci/identity/models/update_tag_details.py index 1efda179c1..441604e0a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_tag_namespace_details.py b/src/oci/identity/models/update_tag_namespace_details.py index 4183e9767f..963d03f057 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_user_capabilities_details.py b/src/oci/identity/models/update_user_capabilities_details.py index ffb895b509..48ceb8c26e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/update_user_details.py b/src/oci/identity/models/update_user_details.py index 59db2b0228..8fdd6c939c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/user.py b/src/oci/identity/models/user.py index 0c3d19c6cb..fa3ada4f70 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/user_capabilities.py b/src/oci/identity/models/user_capabilities.py index 08f21bb9be..ac3a759add 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/user_group_membership.py b/src/oci/identity/models/user_group_membership.py index f4c5bf89fe..abe20bc8d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/work_request.py b/src/oci/identity/models/work_request.py index f11fab3d6f..953e696325 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/work_request_error.py b/src/oci/identity/models/work_request_error.py index c864f3ccc8..6f9861b5d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/work_request_log_entry.py b/src/oci/identity/models/work_request_log_entry.py index 91f0c05cc2..aa2528a72d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/work_request_resource.py b/src/oci/identity/models/work_request_resource.py index d65ffa1f2f..16f016cf00 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity/models/work_request_summary.py b/src/oci/identity/models/work_request_summary.py index bd220fa8cc..1babcf3986 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/identity_data_plane/__init__.py b/src/oci/identity_data_plane/__init__.py index d5fda5cee8..152b29d71a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/dataplane_client.py b/src/oci/identity_data_plane/dataplane_client.py index 37b8ed0b7f..54daea4927 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 8ce89a389b..104fd18e1a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/__init__.py b/src/oci/identity_data_plane/models/__init__.py index e45ec1e27e..490ad87219 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 6ef041823d..52f8e5c5a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 6d46a71db7..f0e7d07f2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 11500cff68..21b9369e68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 25c14a5122..db205393d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 f1be4ab174..d24718542b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 818e06a788..a7745fae7f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 db7504e0ec..3da1f9dd9b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/authentication_policy.py b/src/oci/identity_data_plane/models/authentication_policy.py index db47e6e29d..e8c917d044 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/authentication_principal.py b/src/oci/identity_data_plane/models/authentication_principal.py index 4cb84e3ed8..68837db08b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/authentication_request.py b/src/oci/identity_data_plane/models/authentication_request.py index 285f7bef0f..1cafb45c02 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/authorization_request.py b/src/oci/identity_data_plane/models/authorization_request.py index 9bb881eec8..0c25125b06 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 2457615a0b..9eccad6504 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/claim.py b/src/oci/identity_data_plane/models/claim.py index fc8d45c19a..20a15203d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 0589023bd9..7651eaf380 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/common_principal.py b/src/oci/identity_data_plane/models/common_principal.py index 3424f093c4..aa03be4c86 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/compartment.py b/src/oci/identity_data_plane/models/compartment.py index 19266ec09a..0cbd7b3865 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/compartment_metadata.py b/src/oci/identity_data_plane/models/compartment_metadata.py index aaec3cdf02..40c18ad429 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/context_variable.py b/src/oci/identity_data_plane/models/context_variable.py index 529e5fb43b..d0c61761b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 c98ae0eb05..141cf3005d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 90323121aa..feb9b71999 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 468d805034..a72d6e3d06 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/entity_status.py b/src/oci/identity_data_plane/models/entity_status.py index ac55592eaf..805c73fedf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 7d0e85489a..a79c93ae74 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 9199a8c4df..545be9c355 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 83ab4aa6a6..8859556ebe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/generate_user_security_token_details.py b/src/oci/identity_data_plane/models/generate_user_security_token_details.py index 92f73eafbb..099df2bbda 100644 --- a/src/oci/identity_data_plane/models/generate_user_security_token_details.py +++ b/src/oci/identity_data_plane/models/generate_user_security_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/identity_provider.py b/src/oci/identity_data_plane/models/identity_provider.py index 5dcc7b9cd6..fca34bcdc9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/jwk.py b/src/oci/identity_data_plane/models/jwk.py index 3322645a9b..e55219a55d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 ce4209454c..db757f27a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/password_policy.py b/src/oci/identity_data_plane/models/password_policy.py index 1510a68dbd..b258449c11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 98dfa0ecd2..b26619d9ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/permission.py b/src/oci/identity_data_plane/models/permission.py index 688162a723..44779d6030 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/permission_context.py b/src/oci/identity_data_plane/models/permission_context.py index 0948ff1356..88396f8e33 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/principal.py b/src/oci/identity_data_plane/models/principal.py index 1a73e7bcf4..231171a860 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/refresh_request.py b/src/oci/identity_data_plane/models/refresh_request.py index 6e4bd5adba..6434b8a5e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 2d063595f8..10cdfd03e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/security_token.py b/src/oci/identity_data_plane/models/security_token.py index 8c6e7294f9..8c33de73f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/tenant.py b/src/oci/identity_data_plane/models/tenant.py index 86e5f1d2aa..1206cfeb1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 c11fc7d47a..b9d5f4df3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 12862d47c0..932bbde263 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 e67ebb6029..bd0032f6ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 9335f5158b..fa6099a7d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_data_plane/models/user.py b/src/oci/identity_data_plane/models/user.py index 6aecd298c0..5cc5c0a68d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 af3c3a6ffc..138a8878c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 dc4018e3c6..1f3973d0f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 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 898c060029..5d8dd03320 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/__init__.py b/src/oci/identity_domains/__init__.py index 32cf2b46e5..fcce199030 100644 --- a/src/oci/identity_domains/__init__.py +++ b/src/oci/identity_domains/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/identity_domains_client.py b/src/oci/identity_domains/identity_domains_client.py index 0a70844aa2..9cadff77db 100644 --- a/src/oci/identity_domains/identity_domains_client.py +++ b/src/oci/identity_domains/identity_domains_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/identity_domains_client_composite_operations.py b/src/oci/identity_domains/identity_domains_client_composite_operations.py index 9d587ab921..3bf3218f15 100644 --- a/src/oci/identity_domains/identity_domains_client_composite_operations.py +++ b/src/oci/identity_domains/identity_domains_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/__init__.py b/src/oci/identity_domains/models/__init__.py index a737dc17c0..72e1c29444 100644 --- a/src/oci/identity_domains/models/__init__.py +++ b/src/oci/identity_domains/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_mgmt_info.py b/src/oci/identity_domains/models/account_mgmt_info.py index 9b39093310..242504d0a1 100644 --- a/src/oci/identity_domains/models/account_mgmt_info.py +++ b/src/oci/identity_domains/models/account_mgmt_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_mgmt_info_app.py b/src/oci/identity_domains/models/account_mgmt_info_app.py index 4cee3e3dd0..d363aa7331 100644 --- a/src/oci/identity_domains/models/account_mgmt_info_app.py +++ b/src/oci/identity_domains/models/account_mgmt_info_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_mgmt_info_matching_owners.py b/src/oci/identity_domains/models/account_mgmt_info_matching_owners.py index ed7838ae8b..d80c25b970 100644 --- a/src/oci/identity_domains/models/account_mgmt_info_matching_owners.py +++ b/src/oci/identity_domains/models/account_mgmt_info_matching_owners.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_mgmt_info_object_class.py b/src/oci/identity_domains/models/account_mgmt_info_object_class.py index e2176a11ba..030a5dabb9 100644 --- a/src/oci/identity_domains/models/account_mgmt_info_object_class.py +++ b/src/oci/identity_domains/models/account_mgmt_info_object_class.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_mgmt_info_owner.py b/src/oci/identity_domains/models/account_mgmt_info_owner.py index 09163e3915..0f3a47ee09 100644 --- a/src/oci/identity_domains/models/account_mgmt_info_owner.py +++ b/src/oci/identity_domains/models/account_mgmt_info_owner.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_mgmt_info_resource_type.py b/src/oci/identity_domains/models/account_mgmt_info_resource_type.py index 2917652124..5d6e685ea3 100644 --- a/src/oci/identity_domains/models/account_mgmt_info_resource_type.py +++ b/src/oci/identity_domains/models/account_mgmt_info_resource_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_mgmt_info_search_request.py b/src/oci/identity_domains/models/account_mgmt_info_search_request.py index c131bbf353..b0956be214 100644 --- a/src/oci/identity_domains/models/account_mgmt_info_search_request.py +++ b/src/oci/identity_domains/models/account_mgmt_info_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_mgmt_info_user_wallet_artifact.py b/src/oci/identity_domains/models/account_mgmt_info_user_wallet_artifact.py index 4560e2a234..0d8905a8a8 100644 --- a/src/oci/identity_domains/models/account_mgmt_info_user_wallet_artifact.py +++ b/src/oci/identity_domains/models/account_mgmt_info_user_wallet_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_mgmt_infos.py b/src/oci/identity_domains/models/account_mgmt_infos.py index b176370e7e..34a1b0e9f8 100644 --- a/src/oci/identity_domains/models/account_mgmt_infos.py +++ b/src/oci/identity_domains/models/account_mgmt_infos.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_recovery_setting.py b/src/oci/identity_domains/models/account_recovery_setting.py index 5a39948e8f..ed6f300426 100644 --- a/src/oci/identity_domains/models/account_recovery_setting.py +++ b/src/oci/identity_domains/models/account_recovery_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/account_recovery_settings.py b/src/oci/identity_domains/models/account_recovery_settings.py index 575996d1e7..d43a093262 100644 --- a/src/oci/identity_domains/models/account_recovery_settings.py +++ b/src/oci/identity_domains/models/account_recovery_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/addresses.py b/src/oci/identity_domains/models/addresses.py index 7c56151bc9..d2966bd7da 100644 --- a/src/oci/identity_domains/models/addresses.py +++ b/src/oci/identity_domains/models/addresses.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/api_key.py b/src/oci/identity_domains/models/api_key.py index 22cf391569..3dc084bce0 100644 --- a/src/oci/identity_domains/models/api_key.py +++ b/src/oci/identity_domains/models/api_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/api_key_search_request.py b/src/oci/identity_domains/models/api_key_search_request.py index 5804621d10..1b68acc0e6 100644 --- a/src/oci/identity_domains/models/api_key_search_request.py +++ b/src/oci/identity_domains/models/api_key_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/api_key_user.py b/src/oci/identity_domains/models/api_key_user.py index 3f523e0b1d..549994ec5e 100644 --- a/src/oci/identity_domains/models/api_key_user.py +++ b/src/oci/identity_domains/models/api_key_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/api_keys.py b/src/oci/identity_domains/models/api_keys.py index 225137c041..cefe93f649 100644 --- a/src/oci/identity_domains/models/api_keys.py +++ b/src/oci/identity_domains/models/api_keys.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app.py b/src/oci/identity_domains/models/app.py index b57c694aa6..7e35f01962 100644 --- a/src/oci/identity_domains/models/app.py +++ b/src/oci/identity_domains/models/app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_accounts.py b/src/oci/identity_domains/models/app_accounts.py index 78ed3b94ff..d7f1cc3997 100644 --- a/src/oci/identity_domains/models/app_accounts.py +++ b/src/oci/identity_domains/models/app_accounts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_admin_roles.py b/src/oci/identity_domains/models/app_admin_roles.py index 86fca5a5a0..23f7d4e1a1 100644 --- a/src/oci/identity_domains/models/app_admin_roles.py +++ b/src/oci/identity_domains/models/app_admin_roles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_alias_apps.py b/src/oci/identity_domains/models/app_alias_apps.py index 64800f2dad..485a35f800 100644 --- a/src/oci/identity_domains/models/app_alias_apps.py +++ b/src/oci/identity_domains/models/app_alias_apps.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_allow_authz_policy.py b/src/oci/identity_domains/models/app_allow_authz_policy.py index 64df1250a9..3a54b32a42 100644 --- a/src/oci/identity_domains/models/app_allow_authz_policy.py +++ b/src/oci/identity_domains/models/app_allow_authz_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_allowed_scopes.py b/src/oci/identity_domains/models/app_allowed_scopes.py index cf053fe1b0..c8a8b5326b 100644 --- a/src/oci/identity_domains/models/app_allowed_scopes.py +++ b/src/oci/identity_domains/models/app_allowed_scopes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_allowed_tags.py b/src/oci/identity_domains/models/app_allowed_tags.py index 8504fadb8c..18139a7965 100644 --- a/src/oci/identity_domains/models/app_allowed_tags.py +++ b/src/oci/identity_domains/models/app_allowed_tags.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_app_resources.py b/src/oci/identity_domains/models/app_app_resources.py index 42e70c8922..0d2ea35648 100644 --- a/src/oci/identity_domains/models/app_app_resources.py +++ b/src/oci/identity_domains/models/app_app_resources.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_app_signon_policy.py b/src/oci/identity_domains/models/app_app_signon_policy.py index b6fb6d2f03..081b144512 100644 --- a/src/oci/identity_domains/models/app_app_signon_policy.py +++ b/src/oci/identity_domains/models/app_app_signon_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_apps_network_perimeters.py b/src/oci/identity_domains/models/app_apps_network_perimeters.py index d62ae06ea9..489bd1897b 100644 --- a/src/oci/identity_domains/models/app_apps_network_perimeters.py +++ b/src/oci/identity_domains/models/app_apps_network_perimeters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_as_opc_service.py b/src/oci/identity_domains/models/app_as_opc_service.py index f79213b393..109a96b7b7 100644 --- a/src/oci/identity_domains/models/app_as_opc_service.py +++ b/src/oci/identity_domains/models/app_as_opc_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_attr_rendering_metadata.py b/src/oci/identity_domains/models/app_attr_rendering_metadata.py index 84c6861a3d..f0a9634f80 100644 --- a/src/oci/identity_domains/models/app_attr_rendering_metadata.py +++ b/src/oci/identity_domains/models/app_attr_rendering_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_based_on_template.py b/src/oci/identity_domains/models/app_based_on_template.py index c931d80902..f775970921 100644 --- a/src/oci/identity_domains/models/app_based_on_template.py +++ b/src/oci/identity_domains/models/app_based_on_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_bundle_configuration_properties.py b/src/oci/identity_domains/models/app_bundle_configuration_properties.py index 26ba8ddc3f..710e4ce3cb 100644 --- a/src/oci/identity_domains/models/app_bundle_configuration_properties.py +++ b/src/oci/identity_domains/models/app_bundle_configuration_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_bundle_pool_configuration.py b/src/oci/identity_domains/models/app_bundle_pool_configuration.py index eef8d61448..2843a504c2 100644 --- a/src/oci/identity_domains/models/app_bundle_pool_configuration.py +++ b/src/oci/identity_domains/models/app_bundle_pool_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_certificates.py b/src/oci/identity_domains/models/app_certificates.py index d1e37a09e9..d2b46ec2c2 100644 --- a/src/oci/identity_domains/models/app_certificates.py +++ b/src/oci/identity_domains/models/app_certificates.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_cloud_control_properties.py b/src/oci/identity_domains/models/app_cloud_control_properties.py index a2afab693d..85d561e1a4 100644 --- a/src/oci/identity_domains/models/app_cloud_control_properties.py +++ b/src/oci/identity_domains/models/app_cloud_control_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_connector_bundle.py b/src/oci/identity_domains/models/app_connector_bundle.py index c17718542c..b45ff3728a 100644 --- a/src/oci/identity_domains/models/app_connector_bundle.py +++ b/src/oci/identity_domains/models/app_connector_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_deny_authz_policy.py b/src/oci/identity_domains/models/app_deny_authz_policy.py index 93c30faabf..e78d3a67a7 100644 --- a/src/oci/identity_domains/models/app_deny_authz_policy.py +++ b/src/oci/identity_domains/models/app_deny_authz_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_domain_app.py b/src/oci/identity_domains/models/app_domain_app.py index 45cbb11f97..13edb4b6bb 100644 --- a/src/oci/identity_domains/models/app_domain_app.py +++ b/src/oci/identity_domains/models/app_domain_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_editable_attributes.py b/src/oci/identity_domains/models/app_editable_attributes.py index 927371f00e..4efa6a2e1a 100644 --- a/src/oci/identity_domains/models/app_editable_attributes.py +++ b/src/oci/identity_domains/models/app_editable_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_dbcs_app.py b/src/oci/identity_domains/models/app_extension_dbcs_app.py index ec0bb93c12..a0455abca9 100644 --- a/src/oci/identity_domains/models/app_extension_dbcs_app.py +++ b/src/oci/identity_domains/models/app_extension_dbcs_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_enterprise_app_app.py b/src/oci/identity_domains/models/app_extension_enterprise_app_app.py index d989c7d740..8b4a6411cf 100644 --- a/src/oci/identity_domains/models/app_extension_enterprise_app_app.py +++ b/src/oci/identity_domains/models/app_extension_enterprise_app_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_form_fill_app_app.py b/src/oci/identity_domains/models/app_extension_form_fill_app_app.py index a1874be0c6..9cb69907bc 100644 --- a/src/oci/identity_domains/models/app_extension_form_fill_app_app.py +++ b/src/oci/identity_domains/models/app_extension_form_fill_app_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_form_fill_app_template_app_template.py b/src/oci/identity_domains/models/app_extension_form_fill_app_template_app_template.py index 9618ced79a..1dee27048d 100644 --- a/src/oci/identity_domains/models/app_extension_form_fill_app_template_app_template.py +++ b/src/oci/identity_domains/models/app_extension_form_fill_app_template_app_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_kerberos_realm_app.py b/src/oci/identity_domains/models/app_extension_kerberos_realm_app.py index 6d8a9f1345..49c2ba3aa2 100644 --- a/src/oci/identity_domains/models/app_extension_kerberos_realm_app.py +++ b/src/oci/identity_domains/models/app_extension_kerberos_realm_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_managedapp_app.py b/src/oci/identity_domains/models/app_extension_managedapp_app.py index 1ebc8a1c2e..bdf406118e 100644 --- a/src/oci/identity_domains/models/app_extension_managedapp_app.py +++ b/src/oci/identity_domains/models/app_extension_managedapp_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_multicloud_service_app_app.py b/src/oci/identity_domains/models/app_extension_multicloud_service_app_app.py index ba847fa7cf..9da5141d93 100644 --- a/src/oci/identity_domains/models/app_extension_multicloud_service_app_app.py +++ b/src/oci/identity_domains/models/app_extension_multicloud_service_app_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_opc_service_app.py b/src/oci/identity_domains/models/app_extension_opc_service_app.py index 042ae6b21f..cc0f222056 100644 --- a/src/oci/identity_domains/models/app_extension_opc_service_app.py +++ b/src/oci/identity_domains/models/app_extension_opc_service_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_radius_app_app.py b/src/oci/identity_domains/models/app_extension_radius_app_app.py index 0f1596bfe9..ec5128ee38 100644 --- a/src/oci/identity_domains/models/app_extension_radius_app_app.py +++ b/src/oci/identity_domains/models/app_extension_radius_app_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_requestable_app.py b/src/oci/identity_domains/models/app_extension_requestable_app.py index 99d517076d..edafa5ccc1 100644 --- a/src/oci/identity_domains/models/app_extension_requestable_app.py +++ b/src/oci/identity_domains/models/app_extension_requestable_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_saml_service_provider_app.py b/src/oci/identity_domains/models/app_extension_saml_service_provider_app.py index dd133225a3..cd8253381a 100644 --- a/src/oci/identity_domains/models/app_extension_saml_service_provider_app.py +++ b/src/oci/identity_domains/models/app_extension_saml_service_provider_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_extension_web_tier_policy_app.py b/src/oci/identity_domains/models/app_extension_web_tier_policy_app.py index 919db3ef99..0c2cfb8f75 100644 --- a/src/oci/identity_domains/models/app_extension_web_tier_policy_app.py +++ b/src/oci/identity_domains/models/app_extension_web_tier_policy_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_flat_file_bundle_configuration_properties.py b/src/oci/identity_domains/models/app_flat_file_bundle_configuration_properties.py index d7fa4074a3..b5deda171e 100644 --- a/src/oci/identity_domains/models/app_flat_file_bundle_configuration_properties.py +++ b/src/oci/identity_domains/models/app_flat_file_bundle_configuration_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_flat_file_connector_bundle.py b/src/oci/identity_domains/models/app_flat_file_connector_bundle.py index 01adde66e9..8481b969c5 100644 --- a/src/oci/identity_domains/models/app_flat_file_connector_bundle.py +++ b/src/oci/identity_domains/models/app_flat_file_connector_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_form_fill_url_match.py b/src/oci/identity_domains/models/app_form_fill_url_match.py index 92cd1d0f97..e138b1abcc 100644 --- a/src/oci/identity_domains/models/app_form_fill_url_match.py +++ b/src/oci/identity_domains/models/app_form_fill_url_match.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_granted_app_roles.py b/src/oci/identity_domains/models/app_granted_app_roles.py index 5af3b9607e..b044d6a478 100644 --- a/src/oci/identity_domains/models/app_granted_app_roles.py +++ b/src/oci/identity_domains/models/app_granted_app_roles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_grants.py b/src/oci/identity_domains/models/app_grants.py index 175f3e2e2d..c5bad10529 100644 --- a/src/oci/identity_domains/models/app_grants.py +++ b/src/oci/identity_domains/models/app_grants.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_group_assertion_attributes.py b/src/oci/identity_domains/models/app_group_assertion_attributes.py index 01432fb545..2790b9e46e 100644 --- a/src/oci/identity_domains/models/app_group_assertion_attributes.py +++ b/src/oci/identity_domains/models/app_group_assertion_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_group_membership_to_return.py b/src/oci/identity_domains/models/app_group_membership_to_return.py index 535a8f0802..9305bd9c3d 100644 --- a/src/oci/identity_domains/models/app_group_membership_to_return.py +++ b/src/oci/identity_domains/models/app_group_membership_to_return.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_identity_bridges.py b/src/oci/identity_domains/models/app_identity_bridges.py index 19fe31a43e..907577473d 100644 --- a/src/oci/identity_domains/models/app_identity_bridges.py +++ b/src/oci/identity_domains/models/app_identity_bridges.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_identity_providers.py b/src/oci/identity_domains/models/app_identity_providers.py index 5bccbd2a3e..08cf350740 100644 --- a/src/oci/identity_domains/models/app_identity_providers.py +++ b/src/oci/identity_domains/models/app_identity_providers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_idp_policy.py b/src/oci/identity_domains/models/app_idp_policy.py index 980e1e9bc8..7a2af47a0c 100644 --- a/src/oci/identity_domains/models/app_idp_policy.py +++ b/src/oci/identity_domains/models/app_idp_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_object_classes.py b/src/oci/identity_domains/models/app_object_classes.py index faea5b710e..1d10dcb203 100644 --- a/src/oci/identity_domains/models/app_object_classes.py +++ b/src/oci/identity_domains/models/app_object_classes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_outbound_assertion_attributes.py b/src/oci/identity_domains/models/app_outbound_assertion_attributes.py index 99cc90b1ed..5ca75d07ed 100644 --- a/src/oci/identity_domains/models/app_outbound_assertion_attributes.py +++ b/src/oci/identity_domains/models/app_outbound_assertion_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_protectable_secondary_audiences.py b/src/oci/identity_domains/models/app_protectable_secondary_audiences.py index 6ba7307148..3b361747c4 100644 --- a/src/oci/identity_domains/models/app_protectable_secondary_audiences.py +++ b/src/oci/identity_domains/models/app_protectable_secondary_audiences.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_radius_policy.py b/src/oci/identity_domains/models/app_radius_policy.py index 9e1cd9247f..28c66067e6 100644 --- a/src/oci/identity_domains/models/app_radius_policy.py +++ b/src/oci/identity_domains/models/app_radius_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_role.py b/src/oci/identity_domains/models/app_role.py index b58dd7dc69..1543c6e211 100644 --- a/src/oci/identity_domains/models/app_role.py +++ b/src/oci/identity_domains/models/app_role.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_role_app.py b/src/oci/identity_domains/models/app_role_app.py index b3a4962f61..82d8c72cb7 100644 --- a/src/oci/identity_domains/models/app_role_app.py +++ b/src/oci/identity_domains/models/app_role_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_role_members.py b/src/oci/identity_domains/models/app_role_members.py index 9993831539..eded937742 100644 --- a/src/oci/identity_domains/models/app_role_members.py +++ b/src/oci/identity_domains/models/app_role_members.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_role_search_request.py b/src/oci/identity_domains/models/app_role_search_request.py index b744304185..b378fcee41 100644 --- a/src/oci/identity_domains/models/app_role_search_request.py +++ b/src/oci/identity_domains/models/app_role_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_roles.py b/src/oci/identity_domains/models/app_roles.py index 973313d832..55ea961f98 100644 --- a/src/oci/identity_domains/models/app_roles.py +++ b/src/oci/identity_domains/models/app_roles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_saml_service_provider.py b/src/oci/identity_domains/models/app_saml_service_provider.py index 5d57d0e6af..669d9ca7f2 100644 --- a/src/oci/identity_domains/models/app_saml_service_provider.py +++ b/src/oci/identity_domains/models/app_saml_service_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_scopes.py b/src/oci/identity_domains/models/app_scopes.py index b74e69740a..d690fb06af 100644 --- a/src/oci/identity_domains/models/app_scopes.py +++ b/src/oci/identity_domains/models/app_scopes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_search_request.py b/src/oci/identity_domains/models/app_search_request.py index de532cf35b..a1bd112db1 100644 --- a/src/oci/identity_domains/models/app_search_request.py +++ b/src/oci/identity_domains/models/app_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_service_params.py b/src/oci/identity_domains/models/app_service_params.py index 0071863d20..f5eacabc6e 100644 --- a/src/oci/identity_domains/models/app_service_params.py +++ b/src/oci/identity_domains/models/app_service_params.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_signon_policy.py b/src/oci/identity_domains/models/app_signon_policy.py index 2834a66b4b..1e4a08394a 100644 --- a/src/oci/identity_domains/models/app_signon_policy.py +++ b/src/oci/identity_domains/models/app_signon_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_status_changer.py b/src/oci/identity_domains/models/app_status_changer.py index ceb4e1dbb9..1f935985e5 100644 --- a/src/oci/identity_domains/models/app_status_changer.py +++ b/src/oci/identity_domains/models/app_status_changer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_terms_of_use.py b/src/oci/identity_domains/models/app_terms_of_use.py index e56a982afe..3f48d3e242 100644 --- a/src/oci/identity_domains/models/app_terms_of_use.py +++ b/src/oci/identity_domains/models/app_terms_of_use.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_three_legged_o_auth_credential.py b/src/oci/identity_domains/models/app_three_legged_o_auth_credential.py index 4c2bead585..63cd669ff7 100644 --- a/src/oci/identity_domains/models/app_three_legged_o_auth_credential.py +++ b/src/oci/identity_domains/models/app_three_legged_o_auth_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_trust_policies.py b/src/oci/identity_domains/models/app_trust_policies.py index 88499c6bc2..e251f2f45e 100644 --- a/src/oci/identity_domains/models/app_trust_policies.py +++ b/src/oci/identity_domains/models/app_trust_policies.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_user_assertion_attributes.py b/src/oci/identity_domains/models/app_user_assertion_attributes.py index e80438ca3e..22678f0144 100644 --- a/src/oci/identity_domains/models/app_user_assertion_attributes.py +++ b/src/oci/identity_domains/models/app_user_assertion_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/app_user_roles.py b/src/oci/identity_domains/models/app_user_roles.py index 6a29cdcbaa..91cbaed4d9 100644 --- a/src/oci/identity_domains/models/app_user_roles.py +++ b/src/oci/identity_domains/models/app_user_roles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow.py b/src/oci/identity_domains/models/approval_workflow.py index 7f2ff59fe2..9ab43b9f1b 100644 --- a/src/oci/identity_domains/models/approval_workflow.py +++ b/src/oci/identity_domains/models/approval_workflow.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow_approval_workflow_steps.py b/src/oci/identity_domains/models/approval_workflow_approval_workflow_steps.py index 427be20074..5a95214c30 100644 --- a/src/oci/identity_domains/models/approval_workflow_approval_workflow_steps.py +++ b/src/oci/identity_domains/models/approval_workflow_approval_workflow_steps.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow_assignment.py b/src/oci/identity_domains/models/approval_workflow_assignment.py index 4aab611130..60f03e86e8 100644 --- a/src/oci/identity_domains/models/approval_workflow_assignment.py +++ b/src/oci/identity_domains/models/approval_workflow_assignment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow_assignment_approval_workflow.py b/src/oci/identity_domains/models/approval_workflow_assignment_approval_workflow.py index a7e76537c6..7a3dc6fbaf 100644 --- a/src/oci/identity_domains/models/approval_workflow_assignment_approval_workflow.py +++ b/src/oci/identity_domains/models/approval_workflow_assignment_approval_workflow.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow_assignment_assigned_to.py b/src/oci/identity_domains/models/approval_workflow_assignment_assigned_to.py index d8b56580d6..f798ad2f20 100644 --- a/src/oci/identity_domains/models/approval_workflow_assignment_assigned_to.py +++ b/src/oci/identity_domains/models/approval_workflow_assignment_assigned_to.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow_assignments.py b/src/oci/identity_domains/models/approval_workflow_assignments.py index e985613c17..c5d355ea94 100644 --- a/src/oci/identity_domains/models/approval_workflow_assignments.py +++ b/src/oci/identity_domains/models/approval_workflow_assignments.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow_max_duration.py b/src/oci/identity_domains/models/approval_workflow_max_duration.py index 37ef6b36da..2650fb7f9e 100644 --- a/src/oci/identity_domains/models/approval_workflow_max_duration.py +++ b/src/oci/identity_domains/models/approval_workflow_max_duration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow_step.py b/src/oci/identity_domains/models/approval_workflow_step.py index b1839630a8..6ac87e95a9 100644 --- a/src/oci/identity_domains/models/approval_workflow_step.py +++ b/src/oci/identity_domains/models/approval_workflow_step.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow_step_approvers.py b/src/oci/identity_domains/models/approval_workflow_step_approvers.py index 95540a450c..10390261a6 100644 --- a/src/oci/identity_domains/models/approval_workflow_step_approvers.py +++ b/src/oci/identity_domains/models/approval_workflow_step_approvers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflow_steps.py b/src/oci/identity_domains/models/approval_workflow_steps.py index 966d269a16..43c67beba2 100644 --- a/src/oci/identity_domains/models/approval_workflow_steps.py +++ b/src/oci/identity_domains/models/approval_workflow_steps.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/approval_workflows.py b/src/oci/identity_domains/models/approval_workflows.py index 3de42fd239..c14c55af86 100644 --- a/src/oci/identity_domains/models/approval_workflows.py +++ b/src/oci/identity_domains/models/approval_workflows.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/apps.py b/src/oci/identity_domains/models/apps.py index 3fe9e70ba4..442d957fd1 100644 --- a/src/oci/identity_domains/models/apps.py +++ b/src/oci/identity_domains/models/apps.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/auth_token.py b/src/oci/identity_domains/models/auth_token.py index b847642090..5307f5741b 100644 --- a/src/oci/identity_domains/models/auth_token.py +++ b/src/oci/identity_domains/models/auth_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/auth_token_search_request.py b/src/oci/identity_domains/models/auth_token_search_request.py index f09dabc4fa..f292c768df 100644 --- a/src/oci/identity_domains/models/auth_token_search_request.py +++ b/src/oci/identity_domains/models/auth_token_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/auth_token_user.py b/src/oci/identity_domains/models/auth_token_user.py index 247d9d25d7..49d6b76ef6 100644 --- a/src/oci/identity_domains/models/auth_token_user.py +++ b/src/oci/identity_domains/models/auth_token_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/auth_tokens.py b/src/oci/identity_domains/models/auth_tokens.py index 9eb0093ebd..66f2b45888 100644 --- a/src/oci/identity_domains/models/auth_tokens.py +++ b/src/oci/identity_domains/models/auth_tokens.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_setting.py b/src/oci/identity_domains/models/authentication_factor_setting.py index 1cab518ef5..ef840a638e 100644 --- a/src/oci/identity_domains/models/authentication_factor_setting.py +++ b/src/oci/identity_domains/models/authentication_factor_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings.py b/src/oci/identity_domains/models/authentication_factor_settings.py index 5943b22b1a..dc68bc8628 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings.py +++ b/src/oci/identity_domains/models/authentication_factor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_bypass_code_settings.py b/src/oci/identity_domains/models/authentication_factor_settings_bypass_code_settings.py index dd28f03e9b..03591aee7a 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_bypass_code_settings.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_bypass_code_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_client_app_settings.py b/src/oci/identity_domains/models/authentication_factor_settings_client_app_settings.py index bfcf0c0534..926249ae6f 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_client_app_settings.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_client_app_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_compliance_policy.py b/src/oci/identity_domains/models/authentication_factor_settings_compliance_policy.py index a3934de4ac..764d15a2f5 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_compliance_policy.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_compliance_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_duo_security_settings.py b/src/oci/identity_domains/models/authentication_factor_settings_duo_security_settings.py index 4db0be7bef..d88c7da499 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_duo_security_settings.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_duo_security_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_email_settings.py b/src/oci/identity_domains/models/authentication_factor_settings_email_settings.py index 8ba89a8f16..67d7d3ddc5 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_email_settings.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_email_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_endpoint_restrictions.py b/src/oci/identity_domains/models/authentication_factor_settings_endpoint_restrictions.py index 81c4502a19..fca06f83e7 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_endpoint_restrictions.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_endpoint_restrictions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_identity_store_settings.py b/src/oci/identity_domains/models/authentication_factor_settings_identity_store_settings.py index af3a145a44..6dce34d375 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_identity_store_settings.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_identity_store_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_notification_settings.py b/src/oci/identity_domains/models/authentication_factor_settings_notification_settings.py index 62ad4ac865..217273c473 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_notification_settings.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_notification_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_search_request.py b/src/oci/identity_domains/models/authentication_factor_settings_search_request.py index 7a9faa2c27..63ac7df471 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_search_request.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_third_party_factor.py b/src/oci/identity_domains/models/authentication_factor_settings_third_party_factor.py index 81b517410c..44abab9d68 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_third_party_factor.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_third_party_factor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factor_settings_totp_settings.py b/src/oci/identity_domains/models/authentication_factor_settings_totp_settings.py index 824f15bbe0..7447861bbb 100644 --- a/src/oci/identity_domains/models/authentication_factor_settings_totp_settings.py +++ b/src/oci/identity_domains/models/authentication_factor_settings_totp_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factors_remover.py b/src/oci/identity_domains/models/authentication_factors_remover.py index a2660b0926..216e1e66a6 100644 --- a/src/oci/identity_domains/models/authentication_factors_remover.py +++ b/src/oci/identity_domains/models/authentication_factors_remover.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/authentication_factors_remover_user.py b/src/oci/identity_domains/models/authentication_factors_remover_user.py index 81025b8bf4..281844f913 100644 --- a/src/oci/identity_domains/models/authentication_factors_remover_user.py +++ b/src/oci/identity_domains/models/authentication_factors_remover_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/branding_setting.py b/src/oci/identity_domains/models/branding_setting.py index 3f8457a7b4..dfaf46ac07 100644 --- a/src/oci/identity_domains/models/branding_setting.py +++ b/src/oci/identity_domains/models/branding_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/branding_settings.py b/src/oci/identity_domains/models/branding_settings.py index 22826a6846..7bd59e2142 100644 --- a/src/oci/identity_domains/models/branding_settings.py +++ b/src/oci/identity_domains/models/branding_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/branding_settings_company_names.py b/src/oci/identity_domains/models/branding_settings_company_names.py index 69d12ddb14..cfc107a654 100644 --- a/src/oci/identity_domains/models/branding_settings_company_names.py +++ b/src/oci/identity_domains/models/branding_settings_company_names.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/branding_settings_default_company_names.py b/src/oci/identity_domains/models/branding_settings_default_company_names.py index df10a4b8aa..737090019b 100644 --- a/src/oci/identity_domains/models/branding_settings_default_company_names.py +++ b/src/oci/identity_domains/models/branding_settings_default_company_names.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/branding_settings_default_images.py b/src/oci/identity_domains/models/branding_settings_default_images.py index 5d11df68af..53ffb01a5c 100644 --- a/src/oci/identity_domains/models/branding_settings_default_images.py +++ b/src/oci/identity_domains/models/branding_settings_default_images.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/branding_settings_default_login_texts.py b/src/oci/identity_domains/models/branding_settings_default_login_texts.py index e528c62bd0..017d745b9c 100644 --- a/src/oci/identity_domains/models/branding_settings_default_login_texts.py +++ b/src/oci/identity_domains/models/branding_settings_default_login_texts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/branding_settings_images.py b/src/oci/identity_domains/models/branding_settings_images.py index ac29f7228d..08b0ceacb5 100644 --- a/src/oci/identity_domains/models/branding_settings_images.py +++ b/src/oci/identity_domains/models/branding_settings_images.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/branding_settings_login_texts.py b/src/oci/identity_domains/models/branding_settings_login_texts.py index 17e8fd7fd9..42db52fa3e 100644 --- a/src/oci/identity_domains/models/branding_settings_login_texts.py +++ b/src/oci/identity_domains/models/branding_settings_login_texts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate.py b/src/oci/identity_domains/models/cloud_gate.py index 027486f6aa..c03da6f12a 100644 --- a/src/oci/identity_domains/models/cloud_gate.py +++ b/src/oci/identity_domains/models/cloud_gate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_ext_mappings.py b/src/oci/identity_domains/models/cloud_gate_ext_mappings.py index 6e240eb89e..c95e87a1e8 100644 --- a/src/oci/identity_domains/models/cloud_gate_ext_mappings.py +++ b/src/oci/identity_domains/models/cloud_gate_ext_mappings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_ext_servers.py b/src/oci/identity_domains/models/cloud_gate_ext_servers.py index 9b16ff7cc5..29d4c9184a 100644 --- a/src/oci/identity_domains/models/cloud_gate_ext_servers.py +++ b/src/oci/identity_domains/models/cloud_gate_ext_servers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_ext_upstream_server_groups.py b/src/oci/identity_domains/models/cloud_gate_ext_upstream_server_groups.py index 7682cb2920..56e4777bf2 100644 --- a/src/oci/identity_domains/models/cloud_gate_ext_upstream_server_groups.py +++ b/src/oci/identity_domains/models/cloud_gate_ext_upstream_server_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_ext_upstream_servers.py b/src/oci/identity_domains/models/cloud_gate_ext_upstream_servers.py index 0897d64fe3..e664552ae9 100644 --- a/src/oci/identity_domains/models/cloud_gate_ext_upstream_servers.py +++ b/src/oci/identity_domains/models/cloud_gate_ext_upstream_servers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_mapping.py b/src/oci/identity_domains/models/cloud_gate_mapping.py index c88abc530b..cc6f7f9fec 100644 --- a/src/oci/identity_domains/models/cloud_gate_mapping.py +++ b/src/oci/identity_domains/models/cloud_gate_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_mapping_cloud_gate.py b/src/oci/identity_domains/models/cloud_gate_mapping_cloud_gate.py index bf8745cb8a..c97d9d3358 100644 --- a/src/oci/identity_domains/models/cloud_gate_mapping_cloud_gate.py +++ b/src/oci/identity_domains/models/cloud_gate_mapping_cloud_gate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_mapping_gateway_app.py b/src/oci/identity_domains/models/cloud_gate_mapping_gateway_app.py index f0659b49e5..5caf512cf6 100644 --- a/src/oci/identity_domains/models/cloud_gate_mapping_gateway_app.py +++ b/src/oci/identity_domains/models/cloud_gate_mapping_gateway_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_mapping_search_request.py b/src/oci/identity_domains/models/cloud_gate_mapping_search_request.py index 2c8f890cba..512dc508cb 100644 --- a/src/oci/identity_domains/models/cloud_gate_mapping_search_request.py +++ b/src/oci/identity_domains/models/cloud_gate_mapping_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_mapping_server.py b/src/oci/identity_domains/models/cloud_gate_mapping_server.py index 2de615f425..cea3bc3705 100644 --- a/src/oci/identity_domains/models/cloud_gate_mapping_server.py +++ b/src/oci/identity_domains/models/cloud_gate_mapping_server.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_mapping_upstream_server_group.py b/src/oci/identity_domains/models/cloud_gate_mapping_upstream_server_group.py index 2c8b74d2c5..1392a904aa 100644 --- a/src/oci/identity_domains/models/cloud_gate_mapping_upstream_server_group.py +++ b/src/oci/identity_domains/models/cloud_gate_mapping_upstream_server_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_mappings.py b/src/oci/identity_domains/models/cloud_gate_mappings.py index 8569a6c3c7..098761561e 100644 --- a/src/oci/identity_domains/models/cloud_gate_mappings.py +++ b/src/oci/identity_domains/models/cloud_gate_mappings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_oauth_client.py b/src/oci/identity_domains/models/cloud_gate_oauth_client.py index 2456ccfe97..5622ade426 100644 --- a/src/oci/identity_domains/models/cloud_gate_oauth_client.py +++ b/src/oci/identity_domains/models/cloud_gate_oauth_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_search_request.py b/src/oci/identity_domains/models/cloud_gate_search_request.py index 9a7ea84665..41a85513df 100644 --- a/src/oci/identity_domains/models/cloud_gate_search_request.py +++ b/src/oci/identity_domains/models/cloud_gate_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_server.py b/src/oci/identity_domains/models/cloud_gate_server.py index dc2073ae00..ba85795508 100644 --- a/src/oci/identity_domains/models/cloud_gate_server.py +++ b/src/oci/identity_domains/models/cloud_gate_server.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_server_cloud_gate.py b/src/oci/identity_domains/models/cloud_gate_server_cloud_gate.py index 95c081f7f9..9a8d06183f 100644 --- a/src/oci/identity_domains/models/cloud_gate_server_cloud_gate.py +++ b/src/oci/identity_domains/models/cloud_gate_server_cloud_gate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_server_search_request.py b/src/oci/identity_domains/models/cloud_gate_server_search_request.py index 2d6e24578c..fa8b302432 100644 --- a/src/oci/identity_domains/models/cloud_gate_server_search_request.py +++ b/src/oci/identity_domains/models/cloud_gate_server_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gate_servers.py b/src/oci/identity_domains/models/cloud_gate_servers.py index afadf74f9c..fe30dcb954 100644 --- a/src/oci/identity_domains/models/cloud_gate_servers.py +++ b/src/oci/identity_domains/models/cloud_gate_servers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/cloud_gates.py b/src/oci/identity_domains/models/cloud_gates.py index 8f4e0e5f9e..8b977e8158 100644 --- a/src/oci/identity_domains/models/cloud_gates.py +++ b/src/oci/identity_domains/models/cloud_gates.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/condition.py b/src/oci/identity_domains/models/condition.py index 65ff24fa8b..31ae069072 100644 --- a/src/oci/identity_domains/models/condition.py +++ b/src/oci/identity_domains/models/condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.py b/src/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.py index 2509753991..a93c62856e 100644 --- a/src/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.py +++ b/src/oci/identity_domains/models/condition_extension_ociconsolesignonpolicyconsent_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/condition_search_request.py b/src/oci/identity_domains/models/condition_search_request.py index b37b654c38..3c54ddf7d1 100644 --- a/src/oci/identity_domains/models/condition_search_request.py +++ b/src/oci/identity_domains/models/condition_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/conditions.py b/src/oci/identity_domains/models/conditions.py index 1c1b6c13e0..b48143a08e 100644 --- a/src/oci/identity_domains/models/conditions.py +++ b/src/oci/identity_domains/models/conditions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/customer_secret_key.py b/src/oci/identity_domains/models/customer_secret_key.py index 9c78b2a4b9..85c4ac5652 100644 --- a/src/oci/identity_domains/models/customer_secret_key.py +++ b/src/oci/identity_domains/models/customer_secret_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/customer_secret_key_search_request.py b/src/oci/identity_domains/models/customer_secret_key_search_request.py index f56e54f1c4..d50c2ff704 100644 --- a/src/oci/identity_domains/models/customer_secret_key_search_request.py +++ b/src/oci/identity_domains/models/customer_secret_key_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/customer_secret_key_user.py b/src/oci/identity_domains/models/customer_secret_key_user.py index 1187ae2d90..c4ba2a8992 100644 --- a/src/oci/identity_domains/models/customer_secret_key_user.py +++ b/src/oci/identity_domains/models/customer_secret_key_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/customer_secret_keys.py b/src/oci/identity_domains/models/customer_secret_keys.py index 94baf2c78a..29e54f9d39 100644 --- a/src/oci/identity_domains/models/customer_secret_keys.py +++ b/src/oci/identity_domains/models/customer_secret_keys.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/defined_tags.py b/src/oci/identity_domains/models/defined_tags.py index 445fa3e907..890183af68 100644 --- a/src/oci/identity_domains/models/defined_tags.py +++ b/src/oci/identity_domains/models/defined_tags.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/dynamic_resource_group.py b/src/oci/identity_domains/models/dynamic_resource_group.py index d7483657cf..3b97b6d67c 100644 --- a/src/oci/identity_domains/models/dynamic_resource_group.py +++ b/src/oci/identity_domains/models/dynamic_resource_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/dynamic_resource_group_dynamic_group_app_roles.py b/src/oci/identity_domains/models/dynamic_resource_group_dynamic_group_app_roles.py index 2fc6c03926..ba2f0ab08a 100644 --- a/src/oci/identity_domains/models/dynamic_resource_group_dynamic_group_app_roles.py +++ b/src/oci/identity_domains/models/dynamic_resource_group_dynamic_group_app_roles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/dynamic_resource_group_grants.py b/src/oci/identity_domains/models/dynamic_resource_group_grants.py index 0066605463..dc1fe49f66 100644 --- a/src/oci/identity_domains/models/dynamic_resource_group_grants.py +++ b/src/oci/identity_domains/models/dynamic_resource_group_grants.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/dynamic_resource_group_search_request.py b/src/oci/identity_domains/models/dynamic_resource_group_search_request.py index 5a428e0c5e..10df2574e1 100644 --- a/src/oci/identity_domains/models/dynamic_resource_group_search_request.py +++ b/src/oci/identity_domains/models/dynamic_resource_group_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/dynamic_resource_groups.py b/src/oci/identity_domains/models/dynamic_resource_groups.py index 1c11eac264..4178eaf570 100644 --- a/src/oci/identity_domains/models/dynamic_resource_groups.py +++ b/src/oci/identity_domains/models/dynamic_resource_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_adaptive_user.py b/src/oci/identity_domains/models/extension_adaptive_user.py index 31bc32c086..9247fcec8c 100644 --- a/src/oci/identity_domains/models/extension_adaptive_user.py +++ b/src/oci/identity_domains/models/extension_adaptive_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_capabilities_user.py b/src/oci/identity_domains/models/extension_capabilities_user.py index 47656955a5..fc32f540e2 100644 --- a/src/oci/identity_domains/models/extension_capabilities_user.py +++ b/src/oci/identity_domains/models/extension_capabilities_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_db_credentials_user.py b/src/oci/identity_domains/models/extension_db_credentials_user.py index b4f44c4a85..64423b279f 100644 --- a/src/oci/identity_domains/models/extension_db_credentials_user.py +++ b/src/oci/identity_domains/models/extension_db_credentials_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_db_user_user.py b/src/oci/identity_domains/models/extension_db_user_user.py index eb09c35d5c..343fbb49d0 100644 --- a/src/oci/identity_domains/models/extension_db_user_user.py +++ b/src/oci/identity_domains/models/extension_db_user_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_dbcs_group.py b/src/oci/identity_domains/models/extension_dbcs_group.py index ef5d143dbf..89e1e0a515 100644 --- a/src/oci/identity_domains/models/extension_dbcs_group.py +++ b/src/oci/identity_domains/models/extension_dbcs_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_dynamic_group.py b/src/oci/identity_domains/models/extension_dynamic_group.py index 8386617342..4b7f0d15ad 100644 --- a/src/oci/identity_domains/models/extension_dynamic_group.py +++ b/src/oci/identity_domains/models/extension_dynamic_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_enterprise20_user.py b/src/oci/identity_domains/models/extension_enterprise20_user.py index fb0ccba551..5ed4c9189d 100644 --- a/src/oci/identity_domains/models/extension_enterprise20_user.py +++ b/src/oci/identity_domains/models/extension_enterprise20_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_fido_authentication_factor_settings.py b/src/oci/identity_domains/models/extension_fido_authentication_factor_settings.py index 95c9f595d3..46d63bbe4d 100644 --- a/src/oci/identity_domains/models/extension_fido_authentication_factor_settings.py +++ b/src/oci/identity_domains/models/extension_fido_authentication_factor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_group_group.py b/src/oci/identity_domains/models/extension_group_group.py index f257700c0d..6a950828b8 100644 --- a/src/oci/identity_domains/models/extension_group_group.py +++ b/src/oci/identity_domains/models/extension_group_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_kerberos_user_user.py b/src/oci/identity_domains/models/extension_kerberos_user_user.py index a5331a3828..83f09783a3 100644 --- a/src/oci/identity_domains/models/extension_kerberos_user_user.py +++ b/src/oci/identity_domains/models/extension_kerberos_user_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_me_user.py b/src/oci/identity_domains/models/extension_me_user.py index d9b1e1285b..3f6928099a 100644 --- a/src/oci/identity_domains/models/extension_me_user.py +++ b/src/oci/identity_domains/models/extension_me_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_messages_error.py b/src/oci/identity_domains/models/extension_messages_error.py index 916b32ce6b..966bc9b746 100644 --- a/src/oci/identity_domains/models/extension_messages_error.py +++ b/src/oci/identity_domains/models/extension_messages_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_mfa_user.py b/src/oci/identity_domains/models/extension_mfa_user.py index 2b94ff28c7..7dac676dd3 100644 --- a/src/oci/identity_domains/models/extension_mfa_user.py +++ b/src/oci/identity_domains/models/extension_mfa_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_oci_tags.py b/src/oci/identity_domains/models/extension_oci_tags.py index 8d643081c7..07e03cb19a 100644 --- a/src/oci/identity_domains/models/extension_oci_tags.py +++ b/src/oci/identity_domains/models/extension_oci_tags.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_password_state_user.py b/src/oci/identity_domains/models/extension_password_state_user.py index e6fb5d6e5a..00b0a28af7 100644 --- a/src/oci/identity_domains/models/extension_password_state_user.py +++ b/src/oci/identity_domains/models/extension_password_state_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_passwordless_user.py b/src/oci/identity_domains/models/extension_passwordless_user.py index 20edc681fe..8055b4e3f7 100644 --- a/src/oci/identity_domains/models/extension_passwordless_user.py +++ b/src/oci/identity_domains/models/extension_passwordless_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_posix_group.py b/src/oci/identity_domains/models/extension_posix_group.py index f424dc4c2b..1e2c2a4c95 100644 --- a/src/oci/identity_domains/models/extension_posix_group.py +++ b/src/oci/identity_domains/models/extension_posix_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_posix_user.py b/src/oci/identity_domains/models/extension_posix_user.py index 38c400e2c7..dbcf3cfba2 100644 --- a/src/oci/identity_domains/models/extension_posix_user.py +++ b/src/oci/identity_domains/models/extension_posix_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_requestable_group.py b/src/oci/identity_domains/models/extension_requestable_group.py index 8c6533f4a7..980a7865df 100644 --- a/src/oci/identity_domains/models/extension_requestable_group.py +++ b/src/oci/identity_domains/models/extension_requestable_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_security_questions_user.py b/src/oci/identity_domains/models/extension_security_questions_user.py index ff25fb0564..b5f1dd5a89 100644 --- a/src/oci/identity_domains/models/extension_security_questions_user.py +++ b/src/oci/identity_domains/models/extension_security_questions_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_self_change_user.py b/src/oci/identity_domains/models/extension_self_change_user.py index 39aff95667..5aa42b0ac8 100644 --- a/src/oci/identity_domains/models/extension_self_change_user.py +++ b/src/oci/identity_domains/models/extension_self_change_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_self_registration_user.py b/src/oci/identity_domains/models/extension_self_registration_user.py index c0eec1f390..c23d4aa47c 100644 --- a/src/oci/identity_domains/models/extension_self_registration_user.py +++ b/src/oci/identity_domains/models/extension_self_registration_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_sff_user.py b/src/oci/identity_domains/models/extension_sff_user.py index 6e200ef6a1..8f4130c960 100644 --- a/src/oci/identity_domains/models/extension_sff_user.py +++ b/src/oci/identity_domains/models/extension_sff_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_social_account_user.py b/src/oci/identity_domains/models/extension_social_account_user.py index be6ef20197..d09141faeb 100644 --- a/src/oci/identity_domains/models/extension_social_account_user.py +++ b/src/oci/identity_domains/models/extension_social_account_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_social_identity_provider.py b/src/oci/identity_domains/models/extension_social_identity_provider.py index 070ed35adc..c03a676d8b 100644 --- a/src/oci/identity_domains/models/extension_social_identity_provider.py +++ b/src/oci/identity_domains/models/extension_social_identity_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_terms_of_use_user.py b/src/oci/identity_domains/models/extension_terms_of_use_user.py index a77f4db83e..10ef68592b 100644 --- a/src/oci/identity_domains/models/extension_terms_of_use_user.py +++ b/src/oci/identity_domains/models/extension_terms_of_use_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_third_party_authentication_factor_settings.py b/src/oci/identity_domains/models/extension_third_party_authentication_factor_settings.py index 25eec36fa2..43cef720b1 100644 --- a/src/oci/identity_domains/models/extension_third_party_authentication_factor_settings.py +++ b/src/oci/identity_domains/models/extension_third_party_authentication_factor_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_user_credentials_user.py b/src/oci/identity_domains/models/extension_user_credentials_user.py index e757fe1a97..3591d82b51 100644 --- a/src/oci/identity_domains/models/extension_user_credentials_user.py +++ b/src/oci/identity_domains/models/extension_user_credentials_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_user_state_user.py b/src/oci/identity_domains/models/extension_user_state_user.py index a652e95c85..6f0565f5c1 100644 --- a/src/oci/identity_domains/models/extension_user_state_user.py +++ b/src/oci/identity_domains/models/extension_user_state_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_user_user.py b/src/oci/identity_domains/models/extension_user_user.py index b199967f2b..88ac05bcd6 100644 --- a/src/oci/identity_domains/models/extension_user_user.py +++ b/src/oci/identity_domains/models/extension_user_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/extension_x509_identity_provider.py b/src/oci/identity_domains/models/extension_x509_identity_provider.py index f7e0f05270..89b75e6037 100644 --- a/src/oci/identity_domains/models/extension_x509_identity_provider.py +++ b/src/oci/identity_domains/models/extension_x509_identity_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/freeform_tags.py b/src/oci/identity_domains/models/freeform_tags.py index 0a38723813..d8fb606261 100644 --- a/src/oci/identity_domains/models/freeform_tags.py +++ b/src/oci/identity_domains/models/freeform_tags.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/grant.py b/src/oci/identity_domains/models/grant.py index 487f432040..7e119b6288 100644 --- a/src/oci/identity_domains/models/grant.py +++ b/src/oci/identity_domains/models/grant.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/grant_app.py b/src/oci/identity_domains/models/grant_app.py index a3acfe88df..46aa278ea4 100644 --- a/src/oci/identity_domains/models/grant_app.py +++ b/src/oci/identity_domains/models/grant_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/grant_app_entitlement_collection.py b/src/oci/identity_domains/models/grant_app_entitlement_collection.py index 7c76befb9a..35e5e75646 100644 --- a/src/oci/identity_domains/models/grant_app_entitlement_collection.py +++ b/src/oci/identity_domains/models/grant_app_entitlement_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/grant_entitlement.py b/src/oci/identity_domains/models/grant_entitlement.py index 36f50e4504..57e23986ed 100644 --- a/src/oci/identity_domains/models/grant_entitlement.py +++ b/src/oci/identity_domains/models/grant_entitlement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/grant_grantee.py b/src/oci/identity_domains/models/grant_grantee.py index fdcf67b2b5..efaae7a879 100644 --- a/src/oci/identity_domains/models/grant_grantee.py +++ b/src/oci/identity_domains/models/grant_grantee.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/grant_grantor.py b/src/oci/identity_domains/models/grant_grantor.py index 0f64898602..c2b74d3e47 100644 --- a/src/oci/identity_domains/models/grant_grantor.py +++ b/src/oci/identity_domains/models/grant_grantor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/grant_search_request.py b/src/oci/identity_domains/models/grant_search_request.py index e99ceae38d..bb82822ac2 100644 --- a/src/oci/identity_domains/models/grant_search_request.py +++ b/src/oci/identity_domains/models/grant_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/grants.py b/src/oci/identity_domains/models/grants.py index 30d0f5ecf5..8a5edaba14 100644 --- a/src/oci/identity_domains/models/grants.py +++ b/src/oci/identity_domains/models/grants.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group.py b/src/oci/identity_domains/models/group.py index a4fc6e4e6c..e8ea3c25f5 100644 --- a/src/oci/identity_domains/models/group.py +++ b/src/oci/identity_domains/models/group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group_ext_app_roles.py b/src/oci/identity_domains/models/group_ext_app_roles.py index 1a2122d301..1a27419b1b 100644 --- a/src/oci/identity_domains/models/group_ext_app_roles.py +++ b/src/oci/identity_domains/models/group_ext_app_roles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group_ext_domain_level_schema_names.py b/src/oci/identity_domains/models/group_ext_domain_level_schema_names.py index a5056e7329..b95cc555e4 100644 --- a/src/oci/identity_domains/models/group_ext_domain_level_schema_names.py +++ b/src/oci/identity_domains/models/group_ext_domain_level_schema_names.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group_ext_grants.py b/src/oci/identity_domains/models/group_ext_grants.py index 3860bf9e89..139b48655a 100644 --- a/src/oci/identity_domains/models/group_ext_grants.py +++ b/src/oci/identity_domains/models/group_ext_grants.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group_ext_instance_level_schema_names.py b/src/oci/identity_domains/models/group_ext_instance_level_schema_names.py index cf694bc4a2..20879e303d 100644 --- a/src/oci/identity_domains/models/group_ext_instance_level_schema_names.py +++ b/src/oci/identity_domains/models/group_ext_instance_level_schema_names.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group_ext_owners.py b/src/oci/identity_domains/models/group_ext_owners.py index 7ceb31292b..2b9b9b5b5a 100644 --- a/src/oci/identity_domains/models/group_ext_owners.py +++ b/src/oci/identity_domains/models/group_ext_owners.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group_ext_password_policy.py b/src/oci/identity_domains/models/group_ext_password_policy.py index 5dc66bca4b..0e570999eb 100644 --- a/src/oci/identity_domains/models/group_ext_password_policy.py +++ b/src/oci/identity_domains/models/group_ext_password_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group_ext_synced_from_app.py b/src/oci/identity_domains/models/group_ext_synced_from_app.py index ade014ae2e..9da423f097 100644 --- a/src/oci/identity_domains/models/group_ext_synced_from_app.py +++ b/src/oci/identity_domains/models/group_ext_synced_from_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group_members.py b/src/oci/identity_domains/models/group_members.py index ebe2a25dfa..bc3ac15636 100644 --- a/src/oci/identity_domains/models/group_members.py +++ b/src/oci/identity_domains/models/group_members.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/group_search_request.py b/src/oci/identity_domains/models/group_search_request.py index 98c8f4514e..842e93f131 100644 --- a/src/oci/identity_domains/models/group_search_request.py +++ b/src/oci/identity_domains/models/group_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/groups.py b/src/oci/identity_domains/models/groups.py index f777f13793..4f66ea0d0f 100644 --- a/src/oci/identity_domains/models/groups.py +++ b/src/oci/identity_domains/models/groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/idcs_created_by.py b/src/oci/identity_domains/models/idcs_created_by.py index 4526ba650a..fdce376491 100644 --- a/src/oci/identity_domains/models/idcs_created_by.py +++ b/src/oci/identity_domains/models/idcs_created_by.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/idcs_last_modified_by.py b/src/oci/identity_domains/models/idcs_last_modified_by.py index 7135dd9ba4..ee03da0015 100644 --- a/src/oci/identity_domains/models/idcs_last_modified_by.py +++ b/src/oci/identity_domains/models/idcs_last_modified_by.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_propagation_trust.py b/src/oci/identity_domains/models/identity_propagation_trust.py index 552a136845..03d4899328 100644 --- a/src/oci/identity_domains/models/identity_propagation_trust.py +++ b/src/oci/identity_domains/models/identity_propagation_trust.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_propagation_trust_impersonation_service_users.py b/src/oci/identity_domains/models/identity_propagation_trust_impersonation_service_users.py index 31557028d9..91b23d9894 100644 --- a/src/oci/identity_domains/models/identity_propagation_trust_impersonation_service_users.py +++ b/src/oci/identity_domains/models/identity_propagation_trust_impersonation_service_users.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_propagation_trust_keytab.py b/src/oci/identity_domains/models/identity_propagation_trust_keytab.py index 3eedf9fde9..7faf1f6bbe 100644 --- a/src/oci/identity_domains/models/identity_propagation_trust_keytab.py +++ b/src/oci/identity_domains/models/identity_propagation_trust_keytab.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_propagation_trusts.py b/src/oci/identity_domains/models/identity_propagation_trusts.py index fc2fe37bda..d71740dc60 100644 --- a/src/oci/identity_domains/models/identity_propagation_trusts.py +++ b/src/oci/identity_domains/models/identity_propagation_trusts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_provider.py b/src/oci/identity_domains/models/identity_provider.py index 6ff2859187..e5aa23c3ec 100644 --- a/src/oci/identity_domains/models/identity_provider.py +++ b/src/oci/identity_domains/models/identity_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_provider_correlation_policy.py b/src/oci/identity_domains/models/identity_provider_correlation_policy.py index dd099ee49c..1c75000e3a 100644 --- a/src/oci/identity_domains/models/identity_provider_correlation_policy.py +++ b/src/oci/identity_domains/models/identity_provider_correlation_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_provider_jit_prov_assigned_groups.py b/src/oci/identity_domains/models/identity_provider_jit_prov_assigned_groups.py index 2398ba531c..ec091b4a56 100644 --- a/src/oci/identity_domains/models/identity_provider_jit_prov_assigned_groups.py +++ b/src/oci/identity_domains/models/identity_provider_jit_prov_assigned_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_provider_jit_user_prov_assigned_groups.py b/src/oci/identity_domains/models/identity_provider_jit_user_prov_assigned_groups.py index 4099eb31fd..3e29868089 100644 --- a/src/oci/identity_domains/models/identity_provider_jit_user_prov_assigned_groups.py +++ b/src/oci/identity_domains/models/identity_provider_jit_user_prov_assigned_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_provider_jit_user_prov_attributes.py b/src/oci/identity_domains/models/identity_provider_jit_user_prov_attributes.py index df8bda5890..23fc288f34 100644 --- a/src/oci/identity_domains/models/identity_provider_jit_user_prov_attributes.py +++ b/src/oci/identity_domains/models/identity_provider_jit_user_prov_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_provider_jit_user_prov_group_mappings.py b/src/oci/identity_domains/models/identity_provider_jit_user_prov_group_mappings.py index 2f7ac2d089..a13922645a 100644 --- a/src/oci/identity_domains/models/identity_provider_jit_user_prov_group_mappings.py +++ b/src/oci/identity_domains/models/identity_provider_jit_user_prov_group_mappings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_provider_relay_idp_param_mappings.py b/src/oci/identity_domains/models/identity_provider_relay_idp_param_mappings.py index cb17ec25d3..021653c4bc 100644 --- a/src/oci/identity_domains/models/identity_provider_relay_idp_param_mappings.py +++ b/src/oci/identity_domains/models/identity_provider_relay_idp_param_mappings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_provider_search_request.py b/src/oci/identity_domains/models/identity_provider_search_request.py index 5881e2025f..6dda25faec 100644 --- a/src/oci/identity_domains/models/identity_provider_search_request.py +++ b/src/oci/identity_domains/models/identity_provider_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_providers.py b/src/oci/identity_domains/models/identity_providers.py index 9a377fd3b1..122e80dab6 100644 --- a/src/oci/identity_domains/models/identity_providers.py +++ b/src/oci/identity_domains/models/identity_providers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_setting.py b/src/oci/identity_domains/models/identity_setting.py index 8496385669..ffa018b870 100644 --- a/src/oci/identity_domains/models/identity_setting.py +++ b/src/oci/identity_domains/models/identity_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_settings.py b/src/oci/identity_domains/models/identity_settings.py index 66c620eeaf..bf7d05c139 100644 --- a/src/oci/identity_domains/models/identity_settings.py +++ b/src/oci/identity_domains/models/identity_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_settings_my_profile.py b/src/oci/identity_domains/models/identity_settings_my_profile.py index a1a08c0fd6..ab89ff523e 100644 --- a/src/oci/identity_domains/models/identity_settings_my_profile.py +++ b/src/oci/identity_domains/models/identity_settings_my_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_settings_posix_gid.py b/src/oci/identity_domains/models/identity_settings_posix_gid.py index 269527911d..9386163cc5 100644 --- a/src/oci/identity_domains/models/identity_settings_posix_gid.py +++ b/src/oci/identity_domains/models/identity_settings_posix_gid.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_settings_posix_uid.py b/src/oci/identity_domains/models/identity_settings_posix_uid.py index 718d3a2d30..18eee34cef 100644 --- a/src/oci/identity_domains/models/identity_settings_posix_uid.py +++ b/src/oci/identity_domains/models/identity_settings_posix_uid.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_settings_search_request.py b/src/oci/identity_domains/models/identity_settings_search_request.py index b7b28934ff..74c0ecc401 100644 --- a/src/oci/identity_domains/models/identity_settings_search_request.py +++ b/src/oci/identity_domains/models/identity_settings_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/identity_settings_tokens.py b/src/oci/identity_domains/models/identity_settings_tokens.py index d47c4ec66d..5ee14ae631 100644 --- a/src/oci/identity_domains/models/identity_settings_tokens.py +++ b/src/oci/identity_domains/models/identity_settings_tokens.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/kmsi_setting.py b/src/oci/identity_domains/models/kmsi_setting.py index a9bee5f1b5..a5ea4ab150 100644 --- a/src/oci/identity_domains/models/kmsi_setting.py +++ b/src/oci/identity_domains/models/kmsi_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/kmsi_settings.py b/src/oci/identity_domains/models/kmsi_settings.py index db0050a0b9..a929f7d0fa 100644 --- a/src/oci/identity_domains/models/kmsi_settings.py +++ b/src/oci/identity_domains/models/kmsi_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/kmsi_settings_search_request.py b/src/oci/identity_domains/models/kmsi_settings_search_request.py index f40c753593..afec5ee85e 100644 --- a/src/oci/identity_domains/models/kmsi_settings_search_request.py +++ b/src/oci/identity_domains/models/kmsi_settings_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me.py b/src/oci/identity_domains/models/me.py index b7fdb47f79..8eb2fc1338 100644 --- a/src/oci/identity_domains/models/me.py +++ b/src/oci/identity_domains/models/me.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_emails.py b/src/oci/identity_domains/models/me_emails.py index 6805fe13b1..11cd0ec9c5 100644 --- a/src/oci/identity_domains/models/me_emails.py +++ b/src/oci/identity_domains/models/me_emails.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_entitlements.py b/src/oci/identity_domains/models/me_entitlements.py index aad668a08d..0cf38dab93 100644 --- a/src/oci/identity_domains/models/me_entitlements.py +++ b/src/oci/identity_domains/models/me_entitlements.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_groups.py b/src/oci/identity_domains/models/me_groups.py index 9f0190e456..d67645ec09 100644 --- a/src/oci/identity_domains/models/me_groups.py +++ b/src/oci/identity_domains/models/me_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_ims.py b/src/oci/identity_domains/models/me_ims.py index 958324bb26..f7c2fa09e1 100644 --- a/src/oci/identity_domains/models/me_ims.py +++ b/src/oci/identity_domains/models/me_ims.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_name.py b/src/oci/identity_domains/models/me_name.py index ea6a006029..f8fd6110d0 100644 --- a/src/oci/identity_domains/models/me_name.py +++ b/src/oci/identity_domains/models/me_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_password_changer.py b/src/oci/identity_domains/models/me_password_changer.py index ab57f89495..8d3eed8a42 100644 --- a/src/oci/identity_domains/models/me_password_changer.py +++ b/src/oci/identity_domains/models/me_password_changer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_phone_numbers.py b/src/oci/identity_domains/models/me_phone_numbers.py index 6a81d68f60..d4d134159a 100644 --- a/src/oci/identity_domains/models/me_phone_numbers.py +++ b/src/oci/identity_domains/models/me_phone_numbers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_photos.py b/src/oci/identity_domains/models/me_photos.py index df31ac594a..a26b36e047 100644 --- a/src/oci/identity_domains/models/me_photos.py +++ b/src/oci/identity_domains/models/me_photos.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_roles.py b/src/oci/identity_domains/models/me_roles.py index 5d1cb7607a..868279922f 100644 --- a/src/oci/identity_domains/models/me_roles.py +++ b/src/oci/identity_domains/models/me_roles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/me_x509_certificates.py b/src/oci/identity_domains/models/me_x509_certificates.py index 08c1019d4e..b912c62a4d 100644 --- a/src/oci/identity_domains/models/me_x509_certificates.py +++ b/src/oci/identity_domains/models/me_x509_certificates.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/meta.py b/src/oci/identity_domains/models/meta.py index 09c0b569bc..ae92de38b0 100644 --- a/src/oci/identity_domains/models/meta.py +++ b/src/oci/identity_domains/models/meta.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_api_key.py b/src/oci/identity_domains/models/my_api_key.py index c3de1f8611..489c146fbf 100644 --- a/src/oci/identity_domains/models/my_api_key.py +++ b/src/oci/identity_domains/models/my_api_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_api_key_user.py b/src/oci/identity_domains/models/my_api_key_user.py index 1b8228aeaa..4a8921cdee 100644 --- a/src/oci/identity_domains/models/my_api_key_user.py +++ b/src/oci/identity_domains/models/my_api_key_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_api_keys.py b/src/oci/identity_domains/models/my_api_keys.py index 5b3a546425..3d335bda0a 100644 --- a/src/oci/identity_domains/models/my_api_keys.py +++ b/src/oci/identity_domains/models/my_api_keys.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_app.py b/src/oci/identity_domains/models/my_app.py index 6e5bd6b098..ac86099ac7 100644 --- a/src/oci/identity_domains/models/my_app.py +++ b/src/oci/identity_domains/models/my_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_app_app.py b/src/oci/identity_domains/models/my_app_app.py index 2cdda0769c..1d8dd5ee94 100644 --- a/src/oci/identity_domains/models/my_app_app.py +++ b/src/oci/identity_domains/models/my_app_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_app_owner.py b/src/oci/identity_domains/models/my_app_owner.py index f9bd9b03d0..65930e26fe 100644 --- a/src/oci/identity_domains/models/my_app_owner.py +++ b/src/oci/identity_domains/models/my_app_owner.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_app_search_request.py b/src/oci/identity_domains/models/my_app_search_request.py index 96ee0ad4df..5bfb2fe0d1 100644 --- a/src/oci/identity_domains/models/my_app_search_request.py +++ b/src/oci/identity_domains/models/my_app_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_app_user_wallet_artifact.py b/src/oci/identity_domains/models/my_app_user_wallet_artifact.py index 747e068f68..f39aa716eb 100644 --- a/src/oci/identity_domains/models/my_app_user_wallet_artifact.py +++ b/src/oci/identity_domains/models/my_app_user_wallet_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_apps.py b/src/oci/identity_domains/models/my_apps.py index 28850b6790..4612225f1e 100644 --- a/src/oci/identity_domains/models/my_apps.py +++ b/src/oci/identity_domains/models/my_apps.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_auth_token.py b/src/oci/identity_domains/models/my_auth_token.py index 9285dcaf56..8f67d7f8fd 100644 --- a/src/oci/identity_domains/models/my_auth_token.py +++ b/src/oci/identity_domains/models/my_auth_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_auth_token_user.py b/src/oci/identity_domains/models/my_auth_token_user.py index 61b77c5450..67875e6a8c 100644 --- a/src/oci/identity_domains/models/my_auth_token_user.py +++ b/src/oci/identity_domains/models/my_auth_token_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_auth_tokens.py b/src/oci/identity_domains/models/my_auth_tokens.py index e26e293bca..e32f734189 100644 --- a/src/oci/identity_domains/models/my_auth_tokens.py +++ b/src/oci/identity_domains/models/my_auth_tokens.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_authentication_factor_initiator.py b/src/oci/identity_domains/models/my_authentication_factor_initiator.py index d2e6924bc1..4a3a53e0df 100644 --- a/src/oci/identity_domains/models/my_authentication_factor_initiator.py +++ b/src/oci/identity_domains/models/my_authentication_factor_initiator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_authentication_factor_initiator_additional_attributes.py b/src/oci/identity_domains/models/my_authentication_factor_initiator_additional_attributes.py index fff62efb46..4173cae04e 100644 --- a/src/oci/identity_domains/models/my_authentication_factor_initiator_additional_attributes.py +++ b/src/oci/identity_domains/models/my_authentication_factor_initiator_additional_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_authentication_factor_initiator_third_party_factor.py b/src/oci/identity_domains/models/my_authentication_factor_initiator_third_party_factor.py index df971e193e..70802e3ff3 100644 --- a/src/oci/identity_domains/models/my_authentication_factor_initiator_third_party_factor.py +++ b/src/oci/identity_domains/models/my_authentication_factor_initiator_third_party_factor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_authentication_factor_validator.py b/src/oci/identity_domains/models/my_authentication_factor_validator.py index c9db7c2d1e..6ef1e06388 100644 --- a/src/oci/identity_domains/models/my_authentication_factor_validator.py +++ b/src/oci/identity_domains/models/my_authentication_factor_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_authentication_factor_validator_additional_attributes.py b/src/oci/identity_domains/models/my_authentication_factor_validator_additional_attributes.py index 277af3f28f..34b83749b9 100644 --- a/src/oci/identity_domains/models/my_authentication_factor_validator_additional_attributes.py +++ b/src/oci/identity_domains/models/my_authentication_factor_validator_additional_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_authentication_factor_validator_security_questions.py b/src/oci/identity_domains/models/my_authentication_factor_validator_security_questions.py index dc408f3d81..947748175d 100644 --- a/src/oci/identity_domains/models/my_authentication_factor_validator_security_questions.py +++ b/src/oci/identity_domains/models/my_authentication_factor_validator_security_questions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_authentication_factor_validator_third_party_factor.py b/src/oci/identity_domains/models/my_authentication_factor_validator_third_party_factor.py index dea42e10b2..29a75d64ff 100644 --- a/src/oci/identity_domains/models/my_authentication_factor_validator_third_party_factor.py +++ b/src/oci/identity_domains/models/my_authentication_factor_validator_third_party_factor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_authentication_factors_remover.py b/src/oci/identity_domains/models/my_authentication_factors_remover.py index 5ad6f1e622..ea29b2f30b 100644 --- a/src/oci/identity_domains/models/my_authentication_factors_remover.py +++ b/src/oci/identity_domains/models/my_authentication_factors_remover.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_authentication_factors_remover_user.py b/src/oci/identity_domains/models/my_authentication_factors_remover_user.py index 8cd24e4b2c..4df0fdcaf6 100644 --- a/src/oci/identity_domains/models/my_authentication_factors_remover_user.py +++ b/src/oci/identity_domains/models/my_authentication_factors_remover_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_completed_approval.py b/src/oci/identity_domains/models/my_completed_approval.py index 272811322b..098ccf55df 100644 --- a/src/oci/identity_domains/models/my_completed_approval.py +++ b/src/oci/identity_domains/models/my_completed_approval.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_completed_approvals.py b/src/oci/identity_domains/models/my_completed_approvals.py index a6224adde7..f977d5177a 100644 --- a/src/oci/identity_domains/models/my_completed_approvals.py +++ b/src/oci/identity_domains/models/my_completed_approvals.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_customer_secret_key.py b/src/oci/identity_domains/models/my_customer_secret_key.py index 7c6a50eb70..1ff42bb3f4 100644 --- a/src/oci/identity_domains/models/my_customer_secret_key.py +++ b/src/oci/identity_domains/models/my_customer_secret_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_customer_secret_key_user.py b/src/oci/identity_domains/models/my_customer_secret_key_user.py index fe3dbbcbb6..59eb89777c 100644 --- a/src/oci/identity_domains/models/my_customer_secret_key_user.py +++ b/src/oci/identity_domains/models/my_customer_secret_key_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_customer_secret_keys.py b/src/oci/identity_domains/models/my_customer_secret_keys.py index 59d5de0fad..3eb4c9097a 100644 --- a/src/oci/identity_domains/models/my_customer_secret_keys.py +++ b/src/oci/identity_domains/models/my_customer_secret_keys.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_device.py b/src/oci/identity_domains/models/my_device.py index 111f0b96a5..a7745f8496 100644 --- a/src/oci/identity_domains/models/my_device.py +++ b/src/oci/identity_domains/models/my_device.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_device_additional_attributes.py b/src/oci/identity_domains/models/my_device_additional_attributes.py index d8ba54b595..f02e492eec 100644 --- a/src/oci/identity_domains/models/my_device_additional_attributes.py +++ b/src/oci/identity_domains/models/my_device_additional_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_device_authentication_factors.py b/src/oci/identity_domains/models/my_device_authentication_factors.py index fb6799f384..ecae43e6f7 100644 --- a/src/oci/identity_domains/models/my_device_authentication_factors.py +++ b/src/oci/identity_domains/models/my_device_authentication_factors.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_device_non_compliances.py b/src/oci/identity_domains/models/my_device_non_compliances.py index cb0b63922e..2e7bd64d73 100644 --- a/src/oci/identity_domains/models/my_device_non_compliances.py +++ b/src/oci/identity_domains/models/my_device_non_compliances.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_device_push_notification_target.py b/src/oci/identity_domains/models/my_device_push_notification_target.py index 45e743ca7d..1cc43d23af 100644 --- a/src/oci/identity_domains/models/my_device_push_notification_target.py +++ b/src/oci/identity_domains/models/my_device_push_notification_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_device_third_party_factor.py b/src/oci/identity_domains/models/my_device_third_party_factor.py index 448e000825..7668311ad9 100644 --- a/src/oci/identity_domains/models/my_device_third_party_factor.py +++ b/src/oci/identity_domains/models/my_device_third_party_factor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_device_user.py b/src/oci/identity_domains/models/my_device_user.py index 2d63c87db3..5060278c7a 100644 --- a/src/oci/identity_domains/models/my_device_user.py +++ b/src/oci/identity_domains/models/my_device_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_devices.py b/src/oci/identity_domains/models/my_devices.py index a4b66e8946..dc6e8e706e 100644 --- a/src/oci/identity_domains/models/my_devices.py +++ b/src/oci/identity_domains/models/my_devices.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_group.py b/src/oci/identity_domains/models/my_group.py index 91e261be92..0abef6ad6e 100644 --- a/src/oci/identity_domains/models/my_group.py +++ b/src/oci/identity_domains/models/my_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_group_members.py b/src/oci/identity_domains/models/my_group_members.py index c487d499c2..90fe097b5e 100644 --- a/src/oci/identity_domains/models/my_group_members.py +++ b/src/oci/identity_domains/models/my_group_members.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_group_search_request.py b/src/oci/identity_domains/models/my_group_search_request.py index 0d9cef59a0..847de62dcb 100644 --- a/src/oci/identity_domains/models/my_group_search_request.py +++ b/src/oci/identity_domains/models/my_group_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_groups.py b/src/oci/identity_domains/models/my_groups.py index 08682b3b36..ac9e9a5a36 100644 --- a/src/oci/identity_domains/models/my_groups.py +++ b/src/oci/identity_domains/models/my_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_o_auth2_client_credential.py b/src/oci/identity_domains/models/my_o_auth2_client_credential.py index ed1824e23e..a6d6862ab4 100644 --- a/src/oci/identity_domains/models/my_o_auth2_client_credential.py +++ b/src/oci/identity_domains/models/my_o_auth2_client_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_o_auth2_client_credential_scopes.py b/src/oci/identity_domains/models/my_o_auth2_client_credential_scopes.py index c1415b7d7b..8859f95deb 100644 --- a/src/oci/identity_domains/models/my_o_auth2_client_credential_scopes.py +++ b/src/oci/identity_domains/models/my_o_auth2_client_credential_scopes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_o_auth2_client_credential_user.py b/src/oci/identity_domains/models/my_o_auth2_client_credential_user.py index 2d39d849c1..71277468c4 100644 --- a/src/oci/identity_domains/models/my_o_auth2_client_credential_user.py +++ b/src/oci/identity_domains/models/my_o_auth2_client_credential_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_o_auth2_client_credentials.py b/src/oci/identity_domains/models/my_o_auth2_client_credentials.py index 1e2c2fb03b..ae1768027a 100644 --- a/src/oci/identity_domains/models/my_o_auth2_client_credentials.py +++ b/src/oci/identity_domains/models/my_o_auth2_client_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_pending_approval.py b/src/oci/identity_domains/models/my_pending_approval.py index 61536a216b..8753b1950c 100644 --- a/src/oci/identity_domains/models/my_pending_approval.py +++ b/src/oci/identity_domains/models/my_pending_approval.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_pending_approvals.py b/src/oci/identity_domains/models/my_pending_approvals.py index b184da82cb..c071069583 100644 --- a/src/oci/identity_domains/models/my_pending_approvals.py +++ b/src/oci/identity_domains/models/my_pending_approvals.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_request.py b/src/oci/identity_domains/models/my_request.py index 8fcf656eda..0583a6c759 100644 --- a/src/oci/identity_domains/models/my_request.py +++ b/src/oci/identity_domains/models/my_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_request_approval_details.py b/src/oci/identity_domains/models/my_request_approval_details.py index 19cfb7c81d..d1f78c69cc 100644 --- a/src/oci/identity_domains/models/my_request_approval_details.py +++ b/src/oci/identity_domains/models/my_request_approval_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_request_requesting.py b/src/oci/identity_domains/models/my_request_requesting.py index 29270b8ff4..7626276e8a 100644 --- a/src/oci/identity_domains/models/my_request_requesting.py +++ b/src/oci/identity_domains/models/my_request_requesting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_request_requestor.py b/src/oci/identity_domains/models/my_request_requestor.py index 725526cdf6..1be2952723 100644 --- a/src/oci/identity_domains/models/my_request_requestor.py +++ b/src/oci/identity_domains/models/my_request_requestor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_request_search_request.py b/src/oci/identity_domains/models/my_request_search_request.py index 2c899dd8a0..d8a59c03c5 100644 --- a/src/oci/identity_domains/models/my_request_search_request.py +++ b/src/oci/identity_domains/models/my_request_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_requestable_group.py b/src/oci/identity_domains/models/my_requestable_group.py index b0409083ea..bec88608bf 100644 --- a/src/oci/identity_domains/models/my_requestable_group.py +++ b/src/oci/identity_domains/models/my_requestable_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_requestable_group_members.py b/src/oci/identity_domains/models/my_requestable_group_members.py index 341eb5df84..84ed3c9ddd 100644 --- a/src/oci/identity_domains/models/my_requestable_group_members.py +++ b/src/oci/identity_domains/models/my_requestable_group_members.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_requestable_group_search_request.py b/src/oci/identity_domains/models/my_requestable_group_search_request.py index 641dcc13eb..4f5e833e82 100644 --- a/src/oci/identity_domains/models/my_requestable_group_search_request.py +++ b/src/oci/identity_domains/models/my_requestable_group_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_requestable_groups.py b/src/oci/identity_domains/models/my_requestable_groups.py index 676b83a83d..fbb0e9c563 100644 --- a/src/oci/identity_domains/models/my_requestable_groups.py +++ b/src/oci/identity_domains/models/my_requestable_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_requests.py b/src/oci/identity_domains/models/my_requests.py index 12635988b1..ade2113ba5 100644 --- a/src/oci/identity_domains/models/my_requests.py +++ b/src/oci/identity_domains/models/my_requests.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_smtp_credential.py b/src/oci/identity_domains/models/my_smtp_credential.py index dbfce27e01..b6f6ebffa1 100644 --- a/src/oci/identity_domains/models/my_smtp_credential.py +++ b/src/oci/identity_domains/models/my_smtp_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_smtp_credential_user.py b/src/oci/identity_domains/models/my_smtp_credential_user.py index c27faad000..be3e2bba41 100644 --- a/src/oci/identity_domains/models/my_smtp_credential_user.py +++ b/src/oci/identity_domains/models/my_smtp_credential_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_smtp_credentials.py b/src/oci/identity_domains/models/my_smtp_credentials.py index 0820c89f68..0bcb033df8 100644 --- a/src/oci/identity_domains/models/my_smtp_credentials.py +++ b/src/oci/identity_domains/models/my_smtp_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_support_account.py b/src/oci/identity_domains/models/my_support_account.py index 147d87289b..a6e9dac964 100644 --- a/src/oci/identity_domains/models/my_support_account.py +++ b/src/oci/identity_domains/models/my_support_account.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_support_account_user.py b/src/oci/identity_domains/models/my_support_account_user.py index d39b0ebbe9..daff4b5572 100644 --- a/src/oci/identity_domains/models/my_support_account_user.py +++ b/src/oci/identity_domains/models/my_support_account_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_support_accounts.py b/src/oci/identity_domains/models/my_support_accounts.py index 492aba97af..5ab72ffbdc 100644 --- a/src/oci/identity_domains/models/my_support_accounts.py +++ b/src/oci/identity_domains/models/my_support_accounts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_trusted_user_agent.py b/src/oci/identity_domains/models/my_trusted_user_agent.py index 369d99684f..b8f1d75b6e 100644 --- a/src/oci/identity_domains/models/my_trusted_user_agent.py +++ b/src/oci/identity_domains/models/my_trusted_user_agent.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_trusted_user_agent_trusted_factors.py b/src/oci/identity_domains/models/my_trusted_user_agent_trusted_factors.py index 6c7b941bb5..dd644fb391 100644 --- a/src/oci/identity_domains/models/my_trusted_user_agent_trusted_factors.py +++ b/src/oci/identity_domains/models/my_trusted_user_agent_trusted_factors.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_trusted_user_agent_user.py b/src/oci/identity_domains/models/my_trusted_user_agent_user.py index 5872b6ac8c..83409d720c 100644 --- a/src/oci/identity_domains/models/my_trusted_user_agent_user.py +++ b/src/oci/identity_domains/models/my_trusted_user_agent_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_trusted_user_agents.py b/src/oci/identity_domains/models/my_trusted_user_agents.py index 4733c6b453..e14ecfe5af 100644 --- a/src/oci/identity_domains/models/my_trusted_user_agents.py +++ b/src/oci/identity_domains/models/my_trusted_user_agents.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_user_db_credential.py b/src/oci/identity_domains/models/my_user_db_credential.py index f1a556f00a..9489870a6e 100644 --- a/src/oci/identity_domains/models/my_user_db_credential.py +++ b/src/oci/identity_domains/models/my_user_db_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_user_db_credentials.py b/src/oci/identity_domains/models/my_user_db_credentials.py index 6cb683651d..5d4421f6a0 100644 --- a/src/oci/identity_domains/models/my_user_db_credentials.py +++ b/src/oci/identity_domains/models/my_user_db_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/my_user_db_credentials_user.py b/src/oci/identity_domains/models/my_user_db_credentials_user.py index 1845462472..335a3e5080 100644 --- a/src/oci/identity_domains/models/my_user_db_credentials_user.py +++ b/src/oci/identity_domains/models/my_user_db_credentials_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/network_perimeter.py b/src/oci/identity_domains/models/network_perimeter.py index 595e843940..ceb7983b0b 100644 --- a/src/oci/identity_domains/models/network_perimeter.py +++ b/src/oci/identity_domains/models/network_perimeter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/network_perimeter_ip_addresses.py b/src/oci/identity_domains/models/network_perimeter_ip_addresses.py index 2fff982c0c..638d70a241 100644 --- a/src/oci/identity_domains/models/network_perimeter_ip_addresses.py +++ b/src/oci/identity_domains/models/network_perimeter_ip_addresses.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/network_perimeter_search_request.py b/src/oci/identity_domains/models/network_perimeter_search_request.py index 19b3de4cbc..60e21a4939 100644 --- a/src/oci/identity_domains/models/network_perimeter_search_request.py +++ b/src/oci/identity_domains/models/network_perimeter_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/network_perimeters.py b/src/oci/identity_domains/models/network_perimeters.py index 3597e302ff..41369fac4b 100644 --- a/src/oci/identity_domains/models/network_perimeters.py +++ b/src/oci/identity_domains/models/network_perimeters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/notification_setting.py b/src/oci/identity_domains/models/notification_setting.py index c1453c0d58..989ebae390 100644 --- a/src/oci/identity_domains/models/notification_setting.py +++ b/src/oci/identity_domains/models/notification_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/notification_settings.py b/src/oci/identity_domains/models/notification_settings.py index e1001fe232..f67c53596c 100644 --- a/src/oci/identity_domains/models/notification_settings.py +++ b/src/oci/identity_domains/models/notification_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/notification_settings_event_settings.py b/src/oci/identity_domains/models/notification_settings_event_settings.py index b252dff38b..506246d28e 100644 --- a/src/oci/identity_domains/models/notification_settings_event_settings.py +++ b/src/oci/identity_domains/models/notification_settings_event_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/notification_settings_from_email_address.py b/src/oci/identity_domains/models/notification_settings_from_email_address.py index f2904de2c7..7ff0091de1 100644 --- a/src/oci/identity_domains/models/notification_settings_from_email_address.py +++ b/src/oci/identity_domains/models/notification_settings_from_email_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/notification_settings_search_request.py b/src/oci/identity_domains/models/notification_settings_search_request.py index 843df97916..90f0c47160 100644 --- a/src/oci/identity_domains/models/notification_settings_search_request.py +++ b/src/oci/identity_domains/models/notification_settings_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth2_client_credential.py b/src/oci/identity_domains/models/o_auth2_client_credential.py index 741e7f04fc..92ad2d2bef 100644 --- a/src/oci/identity_domains/models/o_auth2_client_credential.py +++ b/src/oci/identity_domains/models/o_auth2_client_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth2_client_credential_scopes.py b/src/oci/identity_domains/models/o_auth2_client_credential_scopes.py index b34410029c..9138831104 100644 --- a/src/oci/identity_domains/models/o_auth2_client_credential_scopes.py +++ b/src/oci/identity_domains/models/o_auth2_client_credential_scopes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth2_client_credential_search_request.py b/src/oci/identity_domains/models/o_auth2_client_credential_search_request.py index 1720c6fbb3..45f340799d 100644 --- a/src/oci/identity_domains/models/o_auth2_client_credential_search_request.py +++ b/src/oci/identity_domains/models/o_auth2_client_credential_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth2_client_credential_user.py b/src/oci/identity_domains/models/o_auth2_client_credential_user.py index f34412fe53..47ce222916 100644 --- a/src/oci/identity_domains/models/o_auth2_client_credential_user.py +++ b/src/oci/identity_domains/models/o_auth2_client_credential_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth2_client_credentials.py b/src/oci/identity_domains/models/o_auth2_client_credentials.py index 6aa3135771..b556973434 100644 --- a/src/oci/identity_domains/models/o_auth2_client_credentials.py +++ b/src/oci/identity_domains/models/o_auth2_client_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth_client_certificate.py b/src/oci/identity_domains/models/o_auth_client_certificate.py index 7a68c2c377..861f979657 100644 --- a/src/oci/identity_domains/models/o_auth_client_certificate.py +++ b/src/oci/identity_domains/models/o_auth_client_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth_client_certificate_search_request.py b/src/oci/identity_domains/models/o_auth_client_certificate_search_request.py index 8e28b80850..842495a9a5 100644 --- a/src/oci/identity_domains/models/o_auth_client_certificate_search_request.py +++ b/src/oci/identity_domains/models/o_auth_client_certificate_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth_client_certificates.py b/src/oci/identity_domains/models/o_auth_client_certificates.py index 23a6ebef88..ccfea6592e 100644 --- a/src/oci/identity_domains/models/o_auth_client_certificates.py +++ b/src/oci/identity_domains/models/o_auth_client_certificates.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth_partner_certificate.py b/src/oci/identity_domains/models/o_auth_partner_certificate.py index fcecf4bfc1..a78fe066f6 100644 --- a/src/oci/identity_domains/models/o_auth_partner_certificate.py +++ b/src/oci/identity_domains/models/o_auth_partner_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth_partner_certificate_search_request.py b/src/oci/identity_domains/models/o_auth_partner_certificate_search_request.py index 052f9a6dc9..93f0b7c135 100644 --- a/src/oci/identity_domains/models/o_auth_partner_certificate_search_request.py +++ b/src/oci/identity_domains/models/o_auth_partner_certificate_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/o_auth_partner_certificates.py b/src/oci/identity_domains/models/o_auth_partner_certificates.py index beb8f0070a..627a090068 100644 --- a/src/oci/identity_domains/models/o_auth_partner_certificates.py +++ b/src/oci/identity_domains/models/o_auth_partner_certificates.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent.py b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent.py index ff41816451..cfc324ce63 100644 --- a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent.py +++ b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_consent_signed_by.py b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_consent_signed_by.py index 6ec062c54f..aa61cdd3d5 100644 --- a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_consent_signed_by.py +++ b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_consent_signed_by.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_modified_resource.py b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_modified_resource.py index 947a89692c..94dae78133 100644 --- a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_modified_resource.py +++ b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_modified_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_policy_resource.py b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_policy_resource.py index 1111d1446b..7c3bad1ca4 100644 --- a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_policy_resource.py +++ b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_policy_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_search_request.py b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_search_request.py index 0a77d2af1b..5755e2cf65 100644 --- a/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_search_request.py +++ b/src/oci/identity_domains/models/oci_console_sign_on_policy_consent_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/oci_console_sign_on_policy_consents.py b/src/oci/identity_domains/models/oci_console_sign_on_policy_consents.py index 6eee77835d..f1534d91d8 100644 --- a/src/oci/identity_domains/models/oci_console_sign_on_policy_consents.py +++ b/src/oci/identity_domains/models/oci_console_sign_on_policy_consents.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/operations.py b/src/oci/identity_domains/models/operations.py index 08947590d7..c0c5b096c0 100644 --- a/src/oci/identity_domains/models/operations.py +++ b/src/oci/identity_domains/models/operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/password_policies.py b/src/oci/identity_domains/models/password_policies.py index ded3575488..839792a897 100644 --- a/src/oci/identity_domains/models/password_policies.py +++ b/src/oci/identity_domains/models/password_policies.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/password_policy.py b/src/oci/identity_domains/models/password_policy.py index 091d25fa8c..39e284565a 100644 --- a/src/oci/identity_domains/models/password_policy.py +++ b/src/oci/identity_domains/models/password_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/password_policy_configured_password_policy_rules.py b/src/oci/identity_domains/models/password_policy_configured_password_policy_rules.py index ce2dc9fb83..f7b7df12aa 100644 --- a/src/oci/identity_domains/models/password_policy_configured_password_policy_rules.py +++ b/src/oci/identity_domains/models/password_policy_configured_password_policy_rules.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/password_policy_groups.py b/src/oci/identity_domains/models/password_policy_groups.py index b88496eb01..5067d5cb69 100644 --- a/src/oci/identity_domains/models/password_policy_groups.py +++ b/src/oci/identity_domains/models/password_policy_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/password_policy_search_request.py b/src/oci/identity_domains/models/password_policy_search_request.py index f1ddd374a2..20139221b8 100644 --- a/src/oci/identity_domains/models/password_policy_search_request.py +++ b/src/oci/identity_domains/models/password_policy_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/patch_op.py b/src/oci/identity_domains/models/patch_op.py index 7e1bcc50e8..452fc0ebd7 100644 --- a/src/oci/identity_domains/models/patch_op.py +++ b/src/oci/identity_domains/models/patch_op.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/policies.py b/src/oci/identity_domains/models/policies.py index d2c944d8d4..a9407e3ed4 100644 --- a/src/oci/identity_domains/models/policies.py +++ b/src/oci/identity_domains/models/policies.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/policy.py b/src/oci/identity_domains/models/policy.py index dbf119f3d3..a9cfa37fbc 100644 --- a/src/oci/identity_domains/models/policy.py +++ b/src/oci/identity_domains/models/policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/policy_extension_ociconsolesignonpolicyconsent_policy.py b/src/oci/identity_domains/models/policy_extension_ociconsolesignonpolicyconsent_policy.py index 73ba55b02c..9121aeddd4 100644 --- a/src/oci/identity_domains/models/policy_extension_ociconsolesignonpolicyconsent_policy.py +++ b/src/oci/identity_domains/models/policy_extension_ociconsolesignonpolicyconsent_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/policy_policy_type.py b/src/oci/identity_domains/models/policy_policy_type.py index 1ce836341f..fbea602a6c 100644 --- a/src/oci/identity_domains/models/policy_policy_type.py +++ b/src/oci/identity_domains/models/policy_policy_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/policy_rules.py b/src/oci/identity_domains/models/policy_rules.py index 00dcdf6106..0fed4620ae 100644 --- a/src/oci/identity_domains/models/policy_rules.py +++ b/src/oci/identity_domains/models/policy_rules.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/policy_search_request.py b/src/oci/identity_domains/models/policy_search_request.py index 0dcbecbe95..864d5f09ad 100644 --- a/src/oci/identity_domains/models/policy_search_request.py +++ b/src/oci/identity_domains/models/policy_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/resource_type_schema_attribute.py b/src/oci/identity_domains/models/resource_type_schema_attribute.py index 63a84c79bc..512df010f0 100644 --- a/src/oci/identity_domains/models/resource_type_schema_attribute.py +++ b/src/oci/identity_domains/models/resource_type_schema_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/resource_type_schema_attribute_search_request.py b/src/oci/identity_domains/models/resource_type_schema_attribute_search_request.py index a5d5372d78..168345d081 100644 --- a/src/oci/identity_domains/models/resource_type_schema_attribute_search_request.py +++ b/src/oci/identity_domains/models/resource_type_schema_attribute_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/resource_type_schema_attributes.py b/src/oci/identity_domains/models/resource_type_schema_attributes.py index 1c604e1c70..3fd4d1bf3a 100644 --- a/src/oci/identity_domains/models/resource_type_schema_attributes.py +++ b/src/oci/identity_domains/models/resource_type_schema_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/restore_oci_console_policy.py b/src/oci/identity_domains/models/restore_oci_console_policy.py index 23a918b696..9bdcca0c03 100644 --- a/src/oci/identity_domains/models/restore_oci_console_policy.py +++ b/src/oci/identity_domains/models/restore_oci_console_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/rule.py b/src/oci/identity_domains/models/rule.py index c51e85ac1b..cf8a9d6148 100644 --- a/src/oci/identity_domains/models/rule.py +++ b/src/oci/identity_domains/models/rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/rule_condition_group.py b/src/oci/identity_domains/models/rule_condition_group.py index 2b71a4e0b8..e9a0c8649e 100644 --- a/src/oci/identity_domains/models/rule_condition_group.py +++ b/src/oci/identity_domains/models/rule_condition_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/rule_extension_ociconsolesignonpolicyconsent_policy.py b/src/oci/identity_domains/models/rule_extension_ociconsolesignonpolicyconsent_policy.py index 4c7266f2e4..45732da64c 100644 --- a/src/oci/identity_domains/models/rule_extension_ociconsolesignonpolicyconsent_policy.py +++ b/src/oci/identity_domains/models/rule_extension_ociconsolesignonpolicyconsent_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/rule_policy_type.py b/src/oci/identity_domains/models/rule_policy_type.py index 3a06b80c44..0236dcbc35 100644 --- a/src/oci/identity_domains/models/rule_policy_type.py +++ b/src/oci/identity_domains/models/rule_policy_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/rule_return.py b/src/oci/identity_domains/models/rule_return.py index f099f6e511..a9f17898e9 100644 --- a/src/oci/identity_domains/models/rule_return.py +++ b/src/oci/identity_domains/models/rule_return.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/rule_search_request.py b/src/oci/identity_domains/models/rule_search_request.py index 8430d694ba..30bbf752c2 100644 --- a/src/oci/identity_domains/models/rule_search_request.py +++ b/src/oci/identity_domains/models/rule_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/rules.py b/src/oci/identity_domains/models/rules.py index f6bc0d98f6..8a66f218bc 100644 --- a/src/oci/identity_domains/models/rules.py +++ b/src/oci/identity_domains/models/rules.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema.py b/src/oci/identity_domains/models/schema.py index 5a14eddc8a..40b20bf0d8 100644 --- a/src/oci/identity_domains/models/schema.py +++ b/src/oci/identity_domains/models/schema.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema_attributes.py b/src/oci/identity_domains/models/schema_attributes.py index 7bf274be18..0ad4d61c0a 100644 --- a/src/oci/identity_domains/models/schema_attributes.py +++ b/src/oci/identity_domains/models/schema_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema_idcs_complex_attribute_name_mappings.py b/src/oci/identity_domains/models/schema_idcs_complex_attribute_name_mappings.py index ebc794cff0..bd5a85c554 100644 --- a/src/oci/identity_domains/models/schema_idcs_complex_attribute_name_mappings.py +++ b/src/oci/identity_domains/models/schema_idcs_complex_attribute_name_mappings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema_idcs_csv_attribute_name_mappings.py b/src/oci/identity_domains/models/schema_idcs_csv_attribute_name_mappings.py index 4bbdf98d66..f61a3052c2 100644 --- a/src/oci/identity_domains/models/schema_idcs_csv_attribute_name_mappings.py +++ b/src/oci/identity_domains/models/schema_idcs_csv_attribute_name_mappings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema_localized_canonical_values.py b/src/oci/identity_domains/models/schema_localized_canonical_values.py index 2b72a0f368..079da470da 100644 --- a/src/oci/identity_domains/models/schema_localized_canonical_values.py +++ b/src/oci/identity_domains/models/schema_localized_canonical_values.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema_localized_display_name.py b/src/oci/identity_domains/models/schema_localized_display_name.py index a8ca1b13e5..90899f0633 100644 --- a/src/oci/identity_domains/models/schema_localized_display_name.py +++ b/src/oci/identity_domains/models/schema_localized_display_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema_referenced_resource_type_unique_attribute_name_mappings.py b/src/oci/identity_domains/models/schema_referenced_resource_type_unique_attribute_name_mappings.py index 614e2a2a8c..90841e3120 100644 --- a/src/oci/identity_domains/models/schema_referenced_resource_type_unique_attribute_name_mappings.py +++ b/src/oci/identity_domains/models/schema_referenced_resource_type_unique_attribute_name_mappings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema_resolve_value_using_resource_type.py b/src/oci/identity_domains/models/schema_resolve_value_using_resource_type.py index 4513e5da99..d02a814b54 100644 --- a/src/oci/identity_domains/models/schema_resolve_value_using_resource_type.py +++ b/src/oci/identity_domains/models/schema_resolve_value_using_resource_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema_search_request.py b/src/oci/identity_domains/models/schema_search_request.py index 43facbedaa..83f02f8c4a 100644 --- a/src/oci/identity_domains/models/schema_search_request.py +++ b/src/oci/identity_domains/models/schema_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schema_sub_attributes.py b/src/oci/identity_domains/models/schema_sub_attributes.py index d4f9371e82..1fd410d205 100644 --- a/src/oci/identity_domains/models/schema_sub_attributes.py +++ b/src/oci/identity_domains/models/schema_sub_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/schemas.py b/src/oci/identity_domains/models/schemas.py index f20daeb18c..4be4b251ab 100644 --- a/src/oci/identity_domains/models/schemas.py +++ b/src/oci/identity_domains/models/schemas.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/security_question.py b/src/oci/identity_domains/models/security_question.py index a8e35aeffa..968344f33c 100644 --- a/src/oci/identity_domains/models/security_question.py +++ b/src/oci/identity_domains/models/security_question.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/security_question_question_text.py b/src/oci/identity_domains/models/security_question_question_text.py index bf5d20f0ce..a7863f9f3c 100644 --- a/src/oci/identity_domains/models/security_question_question_text.py +++ b/src/oci/identity_domains/models/security_question_question_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/security_question_search_request.py b/src/oci/identity_domains/models/security_question_search_request.py index 4ebd34d64c..10ef0317dd 100644 --- a/src/oci/identity_domains/models/security_question_search_request.py +++ b/src/oci/identity_domains/models/security_question_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/security_question_setting.py b/src/oci/identity_domains/models/security_question_setting.py index 7b44a10912..1fbb7bef38 100644 --- a/src/oci/identity_domains/models/security_question_setting.py +++ b/src/oci/identity_domains/models/security_question_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/security_question_settings.py b/src/oci/identity_domains/models/security_question_settings.py index d3ac5ce540..b5a81ce85f 100644 --- a/src/oci/identity_domains/models/security_question_settings.py +++ b/src/oci/identity_domains/models/security_question_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/security_question_settings_search_request.py b/src/oci/identity_domains/models/security_question_settings_search_request.py index ee6b90e728..12ec266b7a 100644 --- a/src/oci/identity_domains/models/security_question_settings_search_request.py +++ b/src/oci/identity_domains/models/security_question_settings_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/security_questions.py b/src/oci/identity_domains/models/security_questions.py index fde55c7c12..b0c5785c22 100644 --- a/src/oci/identity_domains/models/security_questions.py +++ b/src/oci/identity_domains/models/security_questions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile.py b/src/oci/identity_domains/models/self_registration_profile.py index e328e0106a..d6d2a90541 100644 --- a/src/oci/identity_domains/models/self_registration_profile.py +++ b/src/oci/identity_domains/models/self_registration_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile_after_submit_text.py b/src/oci/identity_domains/models/self_registration_profile_after_submit_text.py index 6d5c4e88fd..4034b671fe 100644 --- a/src/oci/identity_domains/models/self_registration_profile_after_submit_text.py +++ b/src/oci/identity_domains/models/self_registration_profile_after_submit_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile_consent_text.py b/src/oci/identity_domains/models/self_registration_profile_consent_text.py index 0918ec9d31..3be606cd80 100644 --- a/src/oci/identity_domains/models/self_registration_profile_consent_text.py +++ b/src/oci/identity_domains/models/self_registration_profile_consent_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile_default_groups.py b/src/oci/identity_domains/models/self_registration_profile_default_groups.py index e0970b1b3a..98b982bdb5 100644 --- a/src/oci/identity_domains/models/self_registration_profile_default_groups.py +++ b/src/oci/identity_domains/models/self_registration_profile_default_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile_display_name.py b/src/oci/identity_domains/models/self_registration_profile_display_name.py index 44312e086b..8c9105401f 100644 --- a/src/oci/identity_domains/models/self_registration_profile_display_name.py +++ b/src/oci/identity_domains/models/self_registration_profile_display_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile_email_template.py b/src/oci/identity_domains/models/self_registration_profile_email_template.py index 496777d136..b17d0e88b0 100644 --- a/src/oci/identity_domains/models/self_registration_profile_email_template.py +++ b/src/oci/identity_domains/models/self_registration_profile_email_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile_footer_text.py b/src/oci/identity_domains/models/self_registration_profile_footer_text.py index cc3f85f1ac..e6ba06d0b4 100644 --- a/src/oci/identity_domains/models/self_registration_profile_footer_text.py +++ b/src/oci/identity_domains/models/self_registration_profile_footer_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile_header_text.py b/src/oci/identity_domains/models/self_registration_profile_header_text.py index bbc994ee3f..0fd05aeab2 100644 --- a/src/oci/identity_domains/models/self_registration_profile_header_text.py +++ b/src/oci/identity_domains/models/self_registration_profile_header_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile_search_request.py b/src/oci/identity_domains/models/self_registration_profile_search_request.py index 032dc37d2c..350d776668 100644 --- a/src/oci/identity_domains/models/self_registration_profile_search_request.py +++ b/src/oci/identity_domains/models/self_registration_profile_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profile_user_attributes.py b/src/oci/identity_domains/models/self_registration_profile_user_attributes.py index f3e3a66e51..5fac84031f 100644 --- a/src/oci/identity_domains/models/self_registration_profile_user_attributes.py +++ b/src/oci/identity_domains/models/self_registration_profile_user_attributes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/self_registration_profiles.py b/src/oci/identity_domains/models/self_registration_profiles.py index e7dd8adcc8..f1e1d785a6 100644 --- a/src/oci/identity_domains/models/self_registration_profiles.py +++ b/src/oci/identity_domains/models/self_registration_profiles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/setting.py b/src/oci/identity_domains/models/setting.py index 48e1023160..e45118ca9c 100644 --- a/src/oci/identity_domains/models/setting.py +++ b/src/oci/identity_domains/models/setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings.py b/src/oci/identity_domains/models/settings.py index 6a28dcaa74..1215885858 100644 --- a/src/oci/identity_domains/models/settings.py +++ b/src/oci/identity_domains/models/settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_certificate_validation.py b/src/oci/identity_domains/models/settings_certificate_validation.py index c3a3411e92..e3379ddeb2 100644 --- a/src/oci/identity_domains/models/settings_certificate_validation.py +++ b/src/oci/identity_domains/models/settings_certificate_validation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_cloud_gate_cors_settings.py b/src/oci/identity_domains/models/settings_cloud_gate_cors_settings.py index dfc8eb27f4..416bb17ff6 100644 --- a/src/oci/identity_domains/models/settings_cloud_gate_cors_settings.py +++ b/src/oci/identity_domains/models/settings_cloud_gate_cors_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_company_names.py b/src/oci/identity_domains/models/settings_company_names.py index e29f5fc259..af066495df 100644 --- a/src/oci/identity_domains/models/settings_company_names.py +++ b/src/oci/identity_domains/models/settings_company_names.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_default_company_names.py b/src/oci/identity_domains/models/settings_default_company_names.py index 4cf0bee172..14dfbb97ff 100644 --- a/src/oci/identity_domains/models/settings_default_company_names.py +++ b/src/oci/identity_domains/models/settings_default_company_names.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_default_images.py b/src/oci/identity_domains/models/settings_default_images.py index ec9be82d40..f425a1d285 100644 --- a/src/oci/identity_domains/models/settings_default_images.py +++ b/src/oci/identity_domains/models/settings_default_images.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_default_login_texts.py b/src/oci/identity_domains/models/settings_default_login_texts.py index 2178bb15ae..ca55c87140 100644 --- a/src/oci/identity_domains/models/settings_default_login_texts.py +++ b/src/oci/identity_domains/models/settings_default_login_texts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_images.py b/src/oci/identity_domains/models/settings_images.py index 2ea8558768..499370df66 100644 --- a/src/oci/identity_domains/models/settings_images.py +++ b/src/oci/identity_domains/models/settings_images.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_login_texts.py b/src/oci/identity_domains/models/settings_login_texts.py index 9ad45a404d..0a85b5411f 100644 --- a/src/oci/identity_domains/models/settings_login_texts.py +++ b/src/oci/identity_domains/models/settings_login_texts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_purge_configs.py b/src/oci/identity_domains/models/settings_purge_configs.py index 45e9089cf6..1545a15720 100644 --- a/src/oci/identity_domains/models/settings_purge_configs.py +++ b/src/oci/identity_domains/models/settings_purge_configs.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_search_request.py b/src/oci/identity_domains/models/settings_search_request.py index 80c6f51d86..34f2ebc782 100644 --- a/src/oci/identity_domains/models/settings_search_request.py +++ b/src/oci/identity_domains/models/settings_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/settings_tenant_custom_claims.py b/src/oci/identity_domains/models/settings_tenant_custom_claims.py index cb088436fd..ef492a0f46 100644 --- a/src/oci/identity_domains/models/settings_tenant_custom_claims.py +++ b/src/oci/identity_domains/models/settings_tenant_custom_claims.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/smtp_credential.py b/src/oci/identity_domains/models/smtp_credential.py index 56dd52bc0f..2fb2f86ac6 100644 --- a/src/oci/identity_domains/models/smtp_credential.py +++ b/src/oci/identity_domains/models/smtp_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/smtp_credential_search_request.py b/src/oci/identity_domains/models/smtp_credential_search_request.py index 4b779efe73..5a811fdcde 100644 --- a/src/oci/identity_domains/models/smtp_credential_search_request.py +++ b/src/oci/identity_domains/models/smtp_credential_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/smtp_credential_user.py b/src/oci/identity_domains/models/smtp_credential_user.py index 1128811efa..1d0d87f354 100644 --- a/src/oci/identity_domains/models/smtp_credential_user.py +++ b/src/oci/identity_domains/models/smtp_credential_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/smtp_credentials.py b/src/oci/identity_domains/models/smtp_credentials.py index 4c5246eae9..2b0c8330ea 100644 --- a/src/oci/identity_domains/models/smtp_credentials.py +++ b/src/oci/identity_domains/models/smtp_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/social_identity_provider.py b/src/oci/identity_domains/models/social_identity_provider.py index 0806c4520e..62b92a949f 100644 --- a/src/oci/identity_domains/models/social_identity_provider.py +++ b/src/oci/identity_domains/models/social_identity_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/social_identity_provider_jit_prov_assigned_groups.py b/src/oci/identity_domains/models/social_identity_provider_jit_prov_assigned_groups.py index 36ae7de8cb..dc97e93a2d 100644 --- a/src/oci/identity_domains/models/social_identity_provider_jit_prov_assigned_groups.py +++ b/src/oci/identity_domains/models/social_identity_provider_jit_prov_assigned_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/social_identity_provider_relay_idp_param_mappings.py b/src/oci/identity_domains/models/social_identity_provider_relay_idp_param_mappings.py index 7b82d845f5..e65b91a4f7 100644 --- a/src/oci/identity_domains/models/social_identity_provider_relay_idp_param_mappings.py +++ b/src/oci/identity_domains/models/social_identity_provider_relay_idp_param_mappings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/social_identity_provider_search_request.py b/src/oci/identity_domains/models/social_identity_provider_search_request.py index c969468c0e..8c45498c11 100644 --- a/src/oci/identity_domains/models/social_identity_provider_search_request.py +++ b/src/oci/identity_domains/models/social_identity_provider_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/social_identity_providers.py b/src/oci/identity_domains/models/social_identity_providers.py index cdab3f816f..eea4c3ac8b 100644 --- a/src/oci/identity_domains/models/social_identity_providers.py +++ b/src/oci/identity_domains/models/social_identity_providers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/tags.py b/src/oci/identity_domains/models/tags.py index 1726156e2c..10f0b975d1 100644 --- a/src/oci/identity_domains/models/tags.py +++ b/src/oci/identity_domains/models/tags.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user.py b/src/oci/identity_domains/models/user.py index 2a6180b2ce..b2d41bdc96 100644 --- a/src/oci/identity_domains/models/user.py +++ b/src/oci/identity_domains/models/user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_attributes_setting.py b/src/oci/identity_domains/models/user_attributes_setting.py index 35e33b6a43..fcd85d6704 100644 --- a/src/oci/identity_domains/models/user_attributes_setting.py +++ b/src/oci/identity_domains/models/user_attributes_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_attributes_settings.py b/src/oci/identity_domains/models/user_attributes_settings.py index 7ba0a24c38..489ad583db 100644 --- a/src/oci/identity_domains/models/user_attributes_settings.py +++ b/src/oci/identity_domains/models/user_attributes_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_attributes_settings_attribute_settings.py b/src/oci/identity_domains/models/user_attributes_settings_attribute_settings.py index 106d714e7c..2d8b399d39 100644 --- a/src/oci/identity_domains/models/user_attributes_settings_attribute_settings.py +++ b/src/oci/identity_domains/models/user_attributes_settings_attribute_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_attributes_settings_search_request.py b/src/oci/identity_domains/models/user_attributes_settings_search_request.py index 46ee29949c..0fdff10c0d 100644 --- a/src/oci/identity_domains/models/user_attributes_settings_search_request.py +++ b/src/oci/identity_domains/models/user_attributes_settings_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_capabilities_changer.py b/src/oci/identity_domains/models/user_capabilities_changer.py index 20bc921a42..e3f1f061cf 100644 --- a/src/oci/identity_domains/models/user_capabilities_changer.py +++ b/src/oci/identity_domains/models/user_capabilities_changer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_db_credential.py b/src/oci/identity_domains/models/user_db_credential.py index 45395d3ce2..720e591b3f 100644 --- a/src/oci/identity_domains/models/user_db_credential.py +++ b/src/oci/identity_domains/models/user_db_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_db_credentials.py b/src/oci/identity_domains/models/user_db_credentials.py index 0c2009d7a3..92c708d054 100644 --- a/src/oci/identity_domains/models/user_db_credentials.py +++ b/src/oci/identity_domains/models/user_db_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_db_credentials_search_request.py b/src/oci/identity_domains/models/user_db_credentials_search_request.py index 2dc650a8a7..42155d40a2 100644 --- a/src/oci/identity_domains/models/user_db_credentials_search_request.py +++ b/src/oci/identity_domains/models/user_db_credentials_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_db_credentials_user.py b/src/oci/identity_domains/models/user_db_credentials_user.py index ab6339e02e..080b41c277 100644 --- a/src/oci/identity_domains/models/user_db_credentials_user.py +++ b/src/oci/identity_domains/models/user_db_credentials_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_emails.py b/src/oci/identity_domains/models/user_emails.py index 4f2d3ae097..d98d3b4c4e 100644 --- a/src/oci/identity_domains/models/user_emails.py +++ b/src/oci/identity_domains/models/user_emails.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_entitlements.py b/src/oci/identity_domains/models/user_entitlements.py index a82ecfae06..5f93045780 100644 --- a/src/oci/identity_domains/models/user_entitlements.py +++ b/src/oci/identity_domains/models/user_entitlements.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_accounts.py b/src/oci/identity_domains/models/user_ext_accounts.py index 2aaa58b0fc..a5946fabfc 100644 --- a/src/oci/identity_domains/models/user_ext_accounts.py +++ b/src/oci/identity_domains/models/user_ext_accounts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_api_keys.py b/src/oci/identity_domains/models/user_ext_api_keys.py index 85d8db9af1..eacf648e2b 100644 --- a/src/oci/identity_domains/models/user_ext_api_keys.py +++ b/src/oci/identity_domains/models/user_ext_api_keys.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_app_roles.py b/src/oci/identity_domains/models/user_ext_app_roles.py index 2023a409af..7f6da88766 100644 --- a/src/oci/identity_domains/models/user_ext_app_roles.py +++ b/src/oci/identity_domains/models/user_ext_app_roles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_applicable_authentication_target_app.py b/src/oci/identity_domains/models/user_ext_applicable_authentication_target_app.py index 0b0f54723d..581c6d2979 100644 --- a/src/oci/identity_domains/models/user_ext_applicable_authentication_target_app.py +++ b/src/oci/identity_domains/models/user_ext_applicable_authentication_target_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_applicable_password_policy.py b/src/oci/identity_domains/models/user_ext_applicable_password_policy.py index 16a40b74a2..cde249a430 100644 --- a/src/oci/identity_domains/models/user_ext_applicable_password_policy.py +++ b/src/oci/identity_domains/models/user_ext_applicable_password_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_auth_tokens.py b/src/oci/identity_domains/models/user_ext_auth_tokens.py index d66342dadb..6f099bed01 100644 --- a/src/oci/identity_domains/models/user_ext_auth_tokens.py +++ b/src/oci/identity_domains/models/user_ext_auth_tokens.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_bypass_codes.py b/src/oci/identity_domains/models/user_ext_bypass_codes.py index 804f42e6a4..8fcde5353e 100644 --- a/src/oci/identity_domains/models/user_ext_bypass_codes.py +++ b/src/oci/identity_domains/models/user_ext_bypass_codes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_customer_secret_keys.py b/src/oci/identity_domains/models/user_ext_customer_secret_keys.py index 266aa43810..c6bb8204d5 100644 --- a/src/oci/identity_domains/models/user_ext_customer_secret_keys.py +++ b/src/oci/identity_domains/models/user_ext_customer_secret_keys.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_db_credentials.py b/src/oci/identity_domains/models/user_ext_db_credentials.py index 3612a188c7..d0d9cf6cb0 100644 --- a/src/oci/identity_domains/models/user_ext_db_credentials.py +++ b/src/oci/identity_domains/models/user_ext_db_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_delegated_authentication_target_app.py b/src/oci/identity_domains/models/user_ext_delegated_authentication_target_app.py index 8610f89895..b8d6d018d9 100644 --- a/src/oci/identity_domains/models/user_ext_delegated_authentication_target_app.py +++ b/src/oci/identity_domains/models/user_ext_delegated_authentication_target_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_devices.py b/src/oci/identity_domains/models/user_ext_devices.py index 3bded4c75d..39f7955bbb 100644 --- a/src/oci/identity_domains/models/user_ext_devices.py +++ b/src/oci/identity_domains/models/user_ext_devices.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_factor_identifier.py b/src/oci/identity_domains/models/user_ext_factor_identifier.py index 0a823c5b72..cde9eeca2c 100644 --- a/src/oci/identity_domains/models/user_ext_factor_identifier.py +++ b/src/oci/identity_domains/models/user_ext_factor_identifier.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_grants.py b/src/oci/identity_domains/models/user_ext_grants.py index ee2db88765..6cb0f0b9a2 100644 --- a/src/oci/identity_domains/models/user_ext_grants.py +++ b/src/oci/identity_domains/models/user_ext_grants.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_idcs_app_roles_limited_to_groups.py b/src/oci/identity_domains/models/user_ext_idcs_app_roles_limited_to_groups.py index 945727428a..ce36ebaffc 100644 --- a/src/oci/identity_domains/models/user_ext_idcs_app_roles_limited_to_groups.py +++ b/src/oci/identity_domains/models/user_ext_idcs_app_roles_limited_to_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_locked.py b/src/oci/identity_domains/models/user_ext_locked.py index 085ab56653..9501875eb8 100644 --- a/src/oci/identity_domains/models/user_ext_locked.py +++ b/src/oci/identity_domains/models/user_ext_locked.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_manager.py b/src/oci/identity_domains/models/user_ext_manager.py index 217e21b3e8..a2da49a6cc 100644 --- a/src/oci/identity_domains/models/user_ext_manager.py +++ b/src/oci/identity_domains/models/user_ext_manager.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_o_auth2_client_credentials.py b/src/oci/identity_domains/models/user_ext_o_auth2_client_credentials.py index cf75ebac68..f22f665c42 100644 --- a/src/oci/identity_domains/models/user_ext_o_auth2_client_credentials.py +++ b/src/oci/identity_domains/models/user_ext_o_auth2_client_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_password_verifiers.py b/src/oci/identity_domains/models/user_ext_password_verifiers.py index 9908f1f2f3..9b4e31e69a 100644 --- a/src/oci/identity_domains/models/user_ext_password_verifiers.py +++ b/src/oci/identity_domains/models/user_ext_password_verifiers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_preferred_device.py b/src/oci/identity_domains/models/user_ext_preferred_device.py index c65cb2a80d..8cdba14bac 100644 --- a/src/oci/identity_domains/models/user_ext_preferred_device.py +++ b/src/oci/identity_domains/models/user_ext_preferred_device.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_realm_users.py b/src/oci/identity_domains/models/user_ext_realm_users.py index cdcd77da57..a4a7b42aac 100644 --- a/src/oci/identity_domains/models/user_ext_realm_users.py +++ b/src/oci/identity_domains/models/user_ext_realm_users.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_recovery_locked.py b/src/oci/identity_domains/models/user_ext_recovery_locked.py index c252d3d0a9..db6590a6fd 100644 --- a/src/oci/identity_domains/models/user_ext_recovery_locked.py +++ b/src/oci/identity_domains/models/user_ext_recovery_locked.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_risk_scores.py b/src/oci/identity_domains/models/user_ext_risk_scores.py index a7c6cbc78b..13dd618b00 100644 --- a/src/oci/identity_domains/models/user_ext_risk_scores.py +++ b/src/oci/identity_domains/models/user_ext_risk_scores.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_sec_questions.py b/src/oci/identity_domains/models/user_ext_sec_questions.py index cf444a5d85..6c1df6fbe4 100644 --- a/src/oci/identity_domains/models/user_ext_sec_questions.py +++ b/src/oci/identity_domains/models/user_ext_sec_questions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_self_registration_profile.py b/src/oci/identity_domains/models/user_ext_self_registration_profile.py index 4c9dfa0275..dc6dbb8fbf 100644 --- a/src/oci/identity_domains/models/user_ext_self_registration_profile.py +++ b/src/oci/identity_domains/models/user_ext_self_registration_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_smtp_credentials.py b/src/oci/identity_domains/models/user_ext_smtp_credentials.py index 1d3b319000..487e022a79 100644 --- a/src/oci/identity_domains/models/user_ext_smtp_credentials.py +++ b/src/oci/identity_domains/models/user_ext_smtp_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_social_accounts.py b/src/oci/identity_domains/models/user_ext_social_accounts.py index f7fb1c6c6b..b2261bc100 100644 --- a/src/oci/identity_domains/models/user_ext_social_accounts.py +++ b/src/oci/identity_domains/models/user_ext_social_accounts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_support_accounts.py b/src/oci/identity_domains/models/user_ext_support_accounts.py index c4b7bc0f8d..4b105563e8 100644 --- a/src/oci/identity_domains/models/user_ext_support_accounts.py +++ b/src/oci/identity_domains/models/user_ext_support_accounts.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_synced_from_app.py b/src/oci/identity_domains/models/user_ext_synced_from_app.py index 28718c7646..62191d3f24 100644 --- a/src/oci/identity_domains/models/user_ext_synced_from_app.py +++ b/src/oci/identity_domains/models/user_ext_synced_from_app.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_terms_of_use_consents.py b/src/oci/identity_domains/models/user_ext_terms_of_use_consents.py index 2a28224767..9db848595f 100644 --- a/src/oci/identity_domains/models/user_ext_terms_of_use_consents.py +++ b/src/oci/identity_domains/models/user_ext_terms_of_use_consents.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_trusted_user_agents.py b/src/oci/identity_domains/models/user_ext_trusted_user_agents.py index 62d1ca7372..d9fbac2890 100644 --- a/src/oci/identity_domains/models/user_ext_trusted_user_agents.py +++ b/src/oci/identity_domains/models/user_ext_trusted_user_agents.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ext_user_token.py b/src/oci/identity_domains/models/user_ext_user_token.py index 26d030aff6..d86db8581b 100644 --- a/src/oci/identity_domains/models/user_ext_user_token.py +++ b/src/oci/identity_domains/models/user_ext_user_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_groups.py b/src/oci/identity_domains/models/user_groups.py index 3e3ef04a10..24a6503e90 100644 --- a/src/oci/identity_domains/models/user_groups.py +++ b/src/oci/identity_domains/models/user_groups.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_ims.py b/src/oci/identity_domains/models/user_ims.py index d1ac21c4e5..a77ecb6998 100644 --- a/src/oci/identity_domains/models/user_ims.py +++ b/src/oci/identity_domains/models/user_ims.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_name.py b/src/oci/identity_domains/models/user_name.py index a4e5aafb7a..f68a2d15d4 100644 --- a/src/oci/identity_domains/models/user_name.py +++ b/src/oci/identity_domains/models/user_name.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_password_changer.py b/src/oci/identity_domains/models/user_password_changer.py index c58e5c8454..471aaeded5 100644 --- a/src/oci/identity_domains/models/user_password_changer.py +++ b/src/oci/identity_domains/models/user_password_changer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_password_resetter.py b/src/oci/identity_domains/models/user_password_resetter.py index 8e617ca7fc..2a9340a128 100644 --- a/src/oci/identity_domains/models/user_password_resetter.py +++ b/src/oci/identity_domains/models/user_password_resetter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_password_resetter_user_token.py b/src/oci/identity_domains/models/user_password_resetter_user_token.py index edaef6af23..d14f40db71 100644 --- a/src/oci/identity_domains/models/user_password_resetter_user_token.py +++ b/src/oci/identity_domains/models/user_password_resetter_user_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_phone_numbers.py b/src/oci/identity_domains/models/user_phone_numbers.py index bfa1680d0b..a132aadb14 100644 --- a/src/oci/identity_domains/models/user_phone_numbers.py +++ b/src/oci/identity_domains/models/user_phone_numbers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_photos.py b/src/oci/identity_domains/models/user_photos.py index 8d2db68930..da999a3612 100644 --- a/src/oci/identity_domains/models/user_photos.py +++ b/src/oci/identity_domains/models/user_photos.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_roles.py b/src/oci/identity_domains/models/user_roles.py index 0e2bcb3fbc..826546a198 100644 --- a/src/oci/identity_domains/models/user_roles.py +++ b/src/oci/identity_domains/models/user_roles.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_search_request.py b/src/oci/identity_domains/models/user_search_request.py index 4cfd5bd505..4970b86abb 100644 --- a/src/oci/identity_domains/models/user_search_request.py +++ b/src/oci/identity_domains/models/user_search_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_status_changer.py b/src/oci/identity_domains/models/user_status_changer.py index 13cc48bd3a..d48029fecd 100644 --- a/src/oci/identity_domains/models/user_status_changer.py +++ b/src/oci/identity_domains/models/user_status_changer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/user_x509_certificates.py b/src/oci/identity_domains/models/user_x509_certificates.py index f06b945cdd..7cb1a920b9 100644 --- a/src/oci/identity_domains/models/user_x509_certificates.py +++ b/src/oci/identity_domains/models/user_x509_certificates.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/identity_domains/models/users.py b/src/oci/identity_domains/models/users.py index 9a298eef56..a5883f72eb 100644 --- a/src/oci/identity_domains/models/users.py +++ b/src/oci/identity_domains/models/users.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: v1 diff --git a/src/oci/integration/__init__.py b/src/oci/integration/__init__.py index ccf125b534..fbbc9a47c6 100644 --- a/src/oci/integration/__init__.py +++ b/src/oci/integration/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/integration_instance_client.py b/src/oci/integration/integration_instance_client.py index d1893de500..b45b2f74b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/integration_instance_client_composite_operations.py b/src/oci/integration/integration_instance_client_composite_operations.py index aca52e2020..17686e4f1c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/__init__.py b/src/oci/integration/models/__init__.py index b59e9a4949..a87b8a153f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/add_oracle_managed_custom_endpoint_details.py b/src/oci/integration/models/add_oracle_managed_custom_endpoint_details.py index 5a9ab2359a..3d66c8c532 100644 --- a/src/oci/integration/models/add_oracle_managed_custom_endpoint_details.py +++ b/src/oci/integration/models/add_oracle_managed_custom_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/attachment_details.py b/src/oci/integration/models/attachment_details.py index ea3a5f615b..3e2a7adeae 100644 --- a/src/oci/integration/models/attachment_details.py +++ b/src/oci/integration/models/attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 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 d832855bed..153ff9bcd4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 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 55fa6686ed..81c1eb5b44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/change_private_endpoint_outbound_connection_details.py b/src/oci/integration/models/change_private_endpoint_outbound_connection_details.py index ac6ccb992f..a147decddf 100644 --- a/src/oci/integration/models/change_private_endpoint_outbound_connection_details.py +++ b/src/oci/integration/models/change_private_endpoint_outbound_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/create_custom_endpoint_details.py b/src/oci/integration/models/create_custom_endpoint_details.py index 9f4a2ab460..a222e1edf1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/create_integration_instance_details.py b/src/oci/integration/models/create_integration_instance_details.py index 3f5cfa7744..0d754cd2ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/cross_region_integration_instance_details.py b/src/oci/integration/models/cross_region_integration_instance_details.py index c8672f5fb6..279452364e 100644 --- a/src/oci/integration/models/cross_region_integration_instance_details.py +++ b/src/oci/integration/models/cross_region_integration_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/custom_endpoint_details.py b/src/oci/integration/models/custom_endpoint_details.py index da092ba264..422cca555f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/disaster_recovery_details.py b/src/oci/integration/models/disaster_recovery_details.py index 53653e2ad9..4a65f880a0 100644 --- a/src/oci/integration/models/disaster_recovery_details.py +++ b/src/oci/integration/models/disaster_recovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/extend_data_retention_details.py b/src/oci/integration/models/extend_data_retention_details.py index 96392b258a..cc5f5100ea 100644 --- a/src/oci/integration/models/extend_data_retention_details.py +++ b/src/oci/integration/models/extend_data_retention_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/idcs_info_details.py b/src/oci/integration/models/idcs_info_details.py index 632811d192..f1fada72a3 100644 --- a/src/oci/integration/models/idcs_info_details.py +++ b/src/oci/integration/models/idcs_info_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/integration_instance.py b/src/oci/integration/models/integration_instance.py index 16a0063ed3..c33f1c0d89 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/integration_instance_summary.py b/src/oci/integration/models/integration_instance_summary.py index e9adb950cf..e269042c4c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/network_endpoint_details.py b/src/oci/integration/models/network_endpoint_details.py index c2f09af33e..2a48b3f7aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/none_outbound_connection.py b/src/oci/integration/models/none_outbound_connection.py index 82166d2d4d..8d0283152c 100644 --- a/src/oci/integration/models/none_outbound_connection.py +++ b/src/oci/integration/models/none_outbound_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/outbound_connection.py b/src/oci/integration/models/outbound_connection.py index c837daaa63..9d85cf56dd 100644 --- a/src/oci/integration/models/outbound_connection.py +++ b/src/oci/integration/models/outbound_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/private_endpoint_outbound_connection.py b/src/oci/integration/models/private_endpoint_outbound_connection.py index a8d0f0054e..7d31d3f9fa 100644 --- a/src/oci/integration/models/private_endpoint_outbound_connection.py +++ b/src/oci/integration/models/private_endpoint_outbound_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/public_endpoint_details.py b/src/oci/integration/models/public_endpoint_details.py index ccbeb241d5..c51506d412 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/update_custom_endpoint_details.py b/src/oci/integration/models/update_custom_endpoint_details.py index 54f9568497..ad14252286 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/update_integration_instance_details.py b/src/oci/integration/models/update_integration_instance_details.py index df3fedf191..0f35e9b2c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/virtual_cloud_network.py b/src/oci/integration/models/virtual_cloud_network.py index c569ca86e1..9d39efa061 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/work_request.py b/src/oci/integration/models/work_request.py index a053e8380d..751275902e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/work_request_error.py b/src/oci/integration/models/work_request_error.py index b1abc8946a..03e1e3290d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/work_request_log_entry.py b/src/oci/integration/models/work_request_log_entry.py index bd722877e2..0291f3a7e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/work_request_resource.py b/src/oci/integration/models/work_request_resource.py index 4e84d8dfb5..81f90e70d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/integration/models/work_request_summary.py b/src/oci/integration/models/work_request_summary.py index 960de2be38..430870fd0e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190131 diff --git a/src/oci/jms/__init__.py b/src/oci/jms/__init__.py index 3bdc863d96..59edb935c0 100644 --- a/src/oci/jms/__init__.py +++ b/src/oci/jms/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/java_management_service_client.py b/src/oci/jms/java_management_service_client.py index 799821ba18..dcbc38df88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 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 b8530c1e93..d10660f73e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/__init__.py b/src/oci/jms/models/__init__.py index 2f408936b8..953bb7d80e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/add_fleet_installation_sites_details.py b/src/oci/jms/models/add_fleet_installation_sites_details.py index e6571d7bdb..86e028a36d 100644 --- a/src/oci/jms/models/add_fleet_installation_sites_details.py +++ b/src/oci/jms/models/add_fleet_installation_sites_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/advanced_usage_tracking.py b/src/oci/jms/models/advanced_usage_tracking.py index 15f0a5e867..8dbe40df72 100644 --- a/src/oci/jms/models/advanced_usage_tracking.py +++ b/src/oci/jms/models/advanced_usage_tracking.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/agent.py b/src/oci/jms/models/agent.py index cec46e3224..211d97180c 100644 --- a/src/oci/jms/models/agent.py +++ b/src/oci/jms/models/agent.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/agent_installer_collection.py b/src/oci/jms/models/agent_installer_collection.py index 21dcd0e015..0acc4790e8 100644 --- a/src/oci/jms/models/agent_installer_collection.py +++ b/src/oci/jms/models/agent_installer_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/agent_installer_summary.py b/src/oci/jms/models/agent_installer_summary.py index 47461d6978..843e1f5943 100644 --- a/src/oci/jms/models/agent_installer_summary.py +++ b/src/oci/jms/models/agent_installer_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/announcement_collection.py b/src/oci/jms/models/announcement_collection.py index 5751d79ccb..d4bdc84e8a 100644 --- a/src/oci/jms/models/announcement_collection.py +++ b/src/oci/jms/models/announcement_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/announcement_summary.py b/src/oci/jms/models/announcement_summary.py index c0185dde3e..c68f874aa4 100644 --- a/src/oci/jms/models/announcement_summary.py +++ b/src/oci/jms/models/announcement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/application_installation_usage_summary.py b/src/oci/jms/models/application_installation_usage_summary.py index 32be2e9577..a28c980b5c 100644 --- a/src/oci/jms/models/application_installation_usage_summary.py +++ b/src/oci/jms/models/application_installation_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/application_installation_usage_summary_collection.py b/src/oci/jms/models/application_installation_usage_summary_collection.py index 42a6a2e308..78fb854715 100644 --- a/src/oci/jms/models/application_installation_usage_summary_collection.py +++ b/src/oci/jms/models/application_installation_usage_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/application_usage.py b/src/oci/jms/models/application_usage.py index e0a6414b0d..5893315a51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/application_usage_collection.py b/src/oci/jms/models/application_usage_collection.py index 1f789ab029..038b21c5d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/application_work_item_details.py b/src/oci/jms/models/application_work_item_details.py index 7b1d20d059..647abf3a2b 100644 --- a/src/oci/jms/models/application_work_item_details.py +++ b/src/oci/jms/models/application_work_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/basic_work_item_details.py b/src/oci/jms/models/basic_work_item_details.py index 8b2c810d4c..605c0d1024 100644 --- a/src/oci/jms/models/basic_work_item_details.py +++ b/src/oci/jms/models/basic_work_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/blocklist.py b/src/oci/jms/models/blocklist.py index 4b5037e685..133a322e87 100644 --- a/src/oci/jms/models/blocklist.py +++ b/src/oci/jms/models/blocklist.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/blocklist_collection.py b/src/oci/jms/models/blocklist_collection.py index 0081933e48..53ffbc7858 100644 --- a/src/oci/jms/models/blocklist_collection.py +++ b/src/oci/jms/models/blocklist_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/blocklist_entry.py b/src/oci/jms/models/blocklist_entry.py index 2cf50976b2..775b418c30 100644 --- a/src/oci/jms/models/blocklist_entry.py +++ b/src/oci/jms/models/blocklist_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/blocklist_target.py b/src/oci/jms/models/blocklist_target.py index ac830f91bd..f6049a4faf 100644 --- a/src/oci/jms/models/blocklist_target.py +++ b/src/oci/jms/models/blocklist_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/change_fleet_compartment_details.py b/src/oci/jms/models/change_fleet_compartment_details.py index b8ceb4f537..aaa24793a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/create_blocklist_details.py b/src/oci/jms/models/create_blocklist_details.py index 9961d22ff8..3e7cd695d4 100644 --- a/src/oci/jms/models/create_blocklist_details.py +++ b/src/oci/jms/models/create_blocklist_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/create_drs_file_details.py b/src/oci/jms/models/create_drs_file_details.py index a5737a5605..276347f8a4 100644 --- a/src/oci/jms/models/create_drs_file_details.py +++ b/src/oci/jms/models/create_drs_file_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/create_fleet_details.py b/src/oci/jms/models/create_fleet_details.py index 0ddb6b6a21..dc65e0bccb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/create_jms_plugin_details.py b/src/oci/jms/models/create_jms_plugin_details.py index d87f1699ee..76bef3c06b 100644 --- a/src/oci/jms/models/create_jms_plugin_details.py +++ b/src/oci/jms/models/create_jms_plugin_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/crypto_analysis_result.py b/src/oci/jms/models/crypto_analysis_result.py index 35f765ebf4..1dfda1fa53 100644 --- a/src/oci/jms/models/crypto_analysis_result.py +++ b/src/oci/jms/models/crypto_analysis_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/crypto_analysis_result_collection.py b/src/oci/jms/models/crypto_analysis_result_collection.py index d5784db903..55069899e7 100644 --- a/src/oci/jms/models/crypto_analysis_result_collection.py +++ b/src/oci/jms/models/crypto_analysis_result_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/crypto_analysis_result_summary.py b/src/oci/jms/models/crypto_analysis_result_summary.py index 08480ffc59..37000036f0 100644 --- a/src/oci/jms/models/crypto_analysis_result_summary.py +++ b/src/oci/jms/models/crypto_analysis_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/crypto_event_analysis.py b/src/oci/jms/models/crypto_event_analysis.py index a0b26659c6..421d3d5067 100644 --- a/src/oci/jms/models/crypto_event_analysis.py +++ b/src/oci/jms/models/crypto_event_analysis.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/custom_log.py b/src/oci/jms/models/custom_log.py index 8c115cb380..9c7ea31e88 100644 --- a/src/oci/jms/models/custom_log.py +++ b/src/oci/jms/models/custom_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/deployed_application_installation_usage_summary.py b/src/oci/jms/models/deployed_application_installation_usage_summary.py index 06b896e3b8..45a436d086 100644 --- a/src/oci/jms/models/deployed_application_installation_usage_summary.py +++ b/src/oci/jms/models/deployed_application_installation_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/deployed_application_installation_usage_summary_collection.py b/src/oci/jms/models/deployed_application_installation_usage_summary_collection.py index 6d63e77a88..b376e74d93 100644 --- a/src/oci/jms/models/deployed_application_installation_usage_summary_collection.py +++ b/src/oci/jms/models/deployed_application_installation_usage_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/deployed_application_migration_analyses_target.py b/src/oci/jms/models/deployed_application_migration_analyses_target.py index c6f62c8d2b..d355c06555 100644 --- a/src/oci/jms/models/deployed_application_migration_analyses_target.py +++ b/src/oci/jms/models/deployed_application_migration_analyses_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/deployed_application_usage.py b/src/oci/jms/models/deployed_application_usage.py index 2c91f1f8f1..9a4119101e 100644 --- a/src/oci/jms/models/deployed_application_usage.py +++ b/src/oci/jms/models/deployed_application_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/deployed_application_usage_collection.py b/src/oci/jms/models/deployed_application_usage_collection.py index 19a40e3095..9d4ea0bef1 100644 --- a/src/oci/jms/models/deployed_application_usage_collection.py +++ b/src/oci/jms/models/deployed_application_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/deployed_application_work_item_details.py b/src/oci/jms/models/deployed_application_work_item_details.py index 1ec88f5c14..1c0070c40b 100644 --- a/src/oci/jms/models/deployed_application_work_item_details.py +++ b/src/oci/jms/models/deployed_application_work_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/disable_drs_details.py b/src/oci/jms/models/disable_drs_details.py index 41622e492c..e029a5f236 100644 --- a/src/oci/jms/models/disable_drs_details.py +++ b/src/oci/jms/models/disable_drs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/drs_file.py b/src/oci/jms/models/drs_file.py index 88845952be..ec4b57dfd9 100644 --- a/src/oci/jms/models/drs_file.py +++ b/src/oci/jms/models/drs_file.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/drs_file_collection.py b/src/oci/jms/models/drs_file_collection.py index f590e030a1..6a7d547c8c 100644 --- a/src/oci/jms/models/drs_file_collection.py +++ b/src/oci/jms/models/drs_file_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/drs_file_summary.py b/src/oci/jms/models/drs_file_summary.py index 43804cc27e..75c1bdae69 100644 --- a/src/oci/jms/models/drs_file_summary.py +++ b/src/oci/jms/models/drs_file_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/drs_target.py b/src/oci/jms/models/drs_target.py index 0dd18a18ea..0d008af2f9 100644 --- a/src/oci/jms/models/drs_target.py +++ b/src/oci/jms/models/drs_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/enable_drs_details.py b/src/oci/jms/models/enable_drs_details.py index 0367b09a46..5655404fe3 100644 --- a/src/oci/jms/models/enable_drs_details.py +++ b/src/oci/jms/models/enable_drs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/existing_installation_site_id.py b/src/oci/jms/models/existing_installation_site_id.py index 6acd275ab3..413145014d 100644 --- a/src/oci/jms/models/existing_installation_site_id.py +++ b/src/oci/jms/models/existing_installation_site_id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/export_setting.py b/src/oci/jms/models/export_setting.py index c9ab8638c0..e46b2f128f 100644 --- a/src/oci/jms/models/export_setting.py +++ b/src/oci/jms/models/export_setting.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/export_status.py b/src/oci/jms/models/export_status.py index 1f6f19bd91..c4716e3788 100644 --- a/src/oci/jms/models/export_status.py +++ b/src/oci/jms/models/export_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/fleet.py b/src/oci/jms/models/fleet.py index 27b3ac86eb..b3b8bcd425 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/fleet_advanced_feature_configuration.py b/src/oci/jms/models/fleet_advanced_feature_configuration.py index 79505cb9e3..7fee7b8a14 100644 --- a/src/oci/jms/models/fleet_advanced_feature_configuration.py +++ b/src/oci/jms/models/fleet_advanced_feature_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/fleet_agent_configuration.py b/src/oci/jms/models/fleet_agent_configuration.py index 0875f46488..a3349a0e7b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/fleet_agent_os_configuration.py b/src/oci/jms/models/fleet_agent_os_configuration.py index 140aa86bd7..4523cdc7b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/fleet_collection.py b/src/oci/jms/models/fleet_collection.py index 8e6afed08d..06764610f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/fleet_diagnosis_collection.py b/src/oci/jms/models/fleet_diagnosis_collection.py index 03fc631064..c3e45189be 100644 --- a/src/oci/jms/models/fleet_diagnosis_collection.py +++ b/src/oci/jms/models/fleet_diagnosis_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/fleet_diagnosis_summary.py b/src/oci/jms/models/fleet_diagnosis_summary.py index bf02679c7a..52e65bdf8c 100644 --- a/src/oci/jms/models/fleet_diagnosis_summary.py +++ b/src/oci/jms/models/fleet_diagnosis_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/fleet_summary.py b/src/oci/jms/models/fleet_summary.py index 789dbf0d2b..effe0006c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/generate_agent_deploy_script_details.py b/src/oci/jms/models/generate_agent_deploy_script_details.py index 2410a5cb38..1babfab415 100644 --- a/src/oci/jms/models/generate_agent_deploy_script_details.py +++ b/src/oci/jms/models/generate_agent_deploy_script_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/generate_agent_installer_configuration_details.py b/src/oci/jms/models/generate_agent_installer_configuration_details.py index eba0135b5a..ce6c1c5973 100644 --- a/src/oci/jms/models/generate_agent_installer_configuration_details.py +++ b/src/oci/jms/models/generate_agent_installer_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/generate_load_pipeline_script_details.py b/src/oci/jms/models/generate_load_pipeline_script_details.py index b1a44a2854..8acd060835 100644 --- a/src/oci/jms/models/generate_load_pipeline_script_details.py +++ b/src/oci/jms/models/generate_load_pipeline_script_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/installation_site.py b/src/oci/jms/models/installation_site.py index 8783f9d901..6e7afdac69 100644 --- a/src/oci/jms/models/installation_site.py +++ b/src/oci/jms/models/installation_site.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/installation_site_collection.py b/src/oci/jms/models/installation_site_collection.py index 21e90fe327..a067e17d32 100644 --- a/src/oci/jms/models/installation_site_collection.py +++ b/src/oci/jms/models/installation_site_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/installation_site_summary.py b/src/oci/jms/models/installation_site_summary.py index 9a5f1407f0..73443abeb0 100644 --- a/src/oci/jms/models/installation_site_summary.py +++ b/src/oci/jms/models/installation_site_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/installation_usage.py b/src/oci/jms/models/installation_usage.py index 6fbb0ba0cb..ab6b63873c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/installation_usage_collection.py b/src/oci/jms/models/installation_usage_collection.py index 5f99e6c077..1e4651753b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_artifact.py b/src/oci/jms/models/java_artifact.py index 9a48766b2d..e433953ef5 100644 --- a/src/oci/jms/models/java_artifact.py +++ b/src/oci/jms/models/java_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_family.py b/src/oci/jms/models/java_family.py index c41e904d2a..67057a56f6 100644 --- a/src/oci/jms/models/java_family.py +++ b/src/oci/jms/models/java_family.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_family_collection.py b/src/oci/jms/models/java_family_collection.py index 267d12e6c6..dcca26e860 100644 --- a/src/oci/jms/models/java_family_collection.py +++ b/src/oci/jms/models/java_family_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_family_summary.py b/src/oci/jms/models/java_family_summary.py index 80e3700d4c..115923c1f2 100644 --- a/src/oci/jms/models/java_family_summary.py +++ b/src/oci/jms/models/java_family_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_license.py b/src/oci/jms/models/java_license.py index 24e6043e6e..ffe7d61483 100644 --- a/src/oci/jms/models/java_license.py +++ b/src/oci/jms/models/java_license.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_migration_analysis.py b/src/oci/jms/models/java_migration_analysis.py index 55176a93a8..3dd256d117 100644 --- a/src/oci/jms/models/java_migration_analysis.py +++ b/src/oci/jms/models/java_migration_analysis.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_migration_analysis_result.py b/src/oci/jms/models/java_migration_analysis_result.py index eb008f3111..cd71cc7a65 100644 --- a/src/oci/jms/models/java_migration_analysis_result.py +++ b/src/oci/jms/models/java_migration_analysis_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_migration_analysis_result_collection.py b/src/oci/jms/models/java_migration_analysis_result_collection.py index f19f4d8ee7..ee4bb0173f 100644 --- a/src/oci/jms/models/java_migration_analysis_result_collection.py +++ b/src/oci/jms/models/java_migration_analysis_result_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_migration_analysis_result_summary.py b/src/oci/jms/models/java_migration_analysis_result_summary.py index 2c4d202da8..437042aa8f 100644 --- a/src/oci/jms/models/java_migration_analysis_result_summary.py +++ b/src/oci/jms/models/java_migration_analysis_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_migration_analysis_target.py b/src/oci/jms/models/java_migration_analysis_target.py index 6c7ef9ab02..d8f5818c51 100644 --- a/src/oci/jms/models/java_migration_analysis_target.py +++ b/src/oci/jms/models/java_migration_analysis_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_release.py b/src/oci/jms/models/java_release.py index 761359506f..584fa86499 100644 --- a/src/oci/jms/models/java_release.py +++ b/src/oci/jms/models/java_release.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_release_collection.py b/src/oci/jms/models/java_release_collection.py index edd1cb95ed..a67b675972 100644 --- a/src/oci/jms/models/java_release_collection.py +++ b/src/oci/jms/models/java_release_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_release_summary.py b/src/oci/jms/models/java_release_summary.py index 478f33f477..f935ffebd6 100644 --- a/src/oci/jms/models/java_release_summary.py +++ b/src/oci/jms/models/java_release_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_runtime_id.py b/src/oci/jms/models/java_runtime_id.py index 4aa9bda455..8117387293 100644 --- a/src/oci/jms/models/java_runtime_id.py +++ b/src/oci/jms/models/java_runtime_id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_server_instance_usage.py b/src/oci/jms/models/java_server_instance_usage.py index 6a466f5e47..427ad01698 100644 --- a/src/oci/jms/models/java_server_instance_usage.py +++ b/src/oci/jms/models/java_server_instance_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_server_instance_usage_collection.py b/src/oci/jms/models/java_server_instance_usage_collection.py index c9af30b357..c94788707b 100644 --- a/src/oci/jms/models/java_server_instance_usage_collection.py +++ b/src/oci/jms/models/java_server_instance_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_server_usage.py b/src/oci/jms/models/java_server_usage.py index ff728fc401..b269c50d62 100644 --- a/src/oci/jms/models/java_server_usage.py +++ b/src/oci/jms/models/java_server_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/java_server_usage_collection.py b/src/oci/jms/models/java_server_usage_collection.py index a1362fbace..350f3962a5 100644 --- a/src/oci/jms/models/java_server_usage_collection.py +++ b/src/oci/jms/models/java_server_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/jfr_attachment_target.py b/src/oci/jms/models/jfr_attachment_target.py index 626cf2dd41..d5dfa6a38f 100644 --- a/src/oci/jms/models/jfr_attachment_target.py +++ b/src/oci/jms/models/jfr_attachment_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/jfr_recording.py b/src/oci/jms/models/jfr_recording.py index 6c4c0faff4..b0e44f1a0c 100644 --- a/src/oci/jms/models/jfr_recording.py +++ b/src/oci/jms/models/jfr_recording.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/jms_plugin.py b/src/oci/jms/models/jms_plugin.py index 35e070fdb9..c9224a1477 100644 --- a/src/oci/jms/models/jms_plugin.py +++ b/src/oci/jms/models/jms_plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/jms_plugin_collection.py b/src/oci/jms/models/jms_plugin_collection.py index 32c4a90997..2f9104a04c 100644 --- a/src/oci/jms/models/jms_plugin_collection.py +++ b/src/oci/jms/models/jms_plugin_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/jms_plugin_summary.py b/src/oci/jms/models/jms_plugin_summary.py index 79adccf98f..b566a08804 100644 --- a/src/oci/jms/models/jms_plugin_summary.py +++ b/src/oci/jms/models/jms_plugin_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/jre_usage.py b/src/oci/jms/models/jre_usage.py index ec787d378d..4723525d14 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/jre_usage_collection.py b/src/oci/jms/models/jre_usage_collection.py index 454c346439..359e87f0a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/key_size_algorithm.py b/src/oci/jms/models/key_size_algorithm.py index 35d0bc1471..bb0d8d4c81 100644 --- a/src/oci/jms/models/key_size_algorithm.py +++ b/src/oci/jms/models/key_size_algorithm.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/lcm.py b/src/oci/jms/models/lcm.py index 3e576c2cbd..5db1d4adff 100644 --- a/src/oci/jms/models/lcm.py +++ b/src/oci/jms/models/lcm.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/lcm_work_item_details.py b/src/oci/jms/models/lcm_work_item_details.py index 8c83c99b85..c7faed6039 100644 --- a/src/oci/jms/models/lcm_work_item_details.py +++ b/src/oci/jms/models/lcm_work_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/library_usage.py b/src/oci/jms/models/library_usage.py index 680cfae424..35e39f92d8 100644 --- a/src/oci/jms/models/library_usage.py +++ b/src/oci/jms/models/library_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/library_usage_collection.py b/src/oci/jms/models/library_usage_collection.py index e8fe4db3e6..00fad07c9b 100644 --- a/src/oci/jms/models/library_usage_collection.py +++ b/src/oci/jms/models/library_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/manage_drs_details.py b/src/oci/jms/models/manage_drs_details.py index a4caa18ac2..004a6bc4c1 100644 --- a/src/oci/jms/models/manage_drs_details.py +++ b/src/oci/jms/models/manage_drs_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/managed_instance_usage.py b/src/oci/jms/models/managed_instance_usage.py index 90559378d7..1bc22e8d55 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/managed_instance_usage_collection.py b/src/oci/jms/models/managed_instance_usage_collection.py index 29df7d2c1b..d03648ecc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/minimum_key_size_settings.py b/src/oci/jms/models/minimum_key_size_settings.py index 439a3e697b..c0e08cbd3d 100644 --- a/src/oci/jms/models/minimum_key_size_settings.py +++ b/src/oci/jms/models/minimum_key_size_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/new_installation_site.py b/src/oci/jms/models/new_installation_site.py index ac947cadea..1bb4a88a28 100644 --- a/src/oci/jms/models/new_installation_site.py +++ b/src/oci/jms/models/new_installation_site.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/operating_system.py b/src/oci/jms/models/operating_system.py index 9f1149aa97..af3fd532fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/patch_detail.py b/src/oci/jms/models/patch_detail.py index 15b261d99c..debc29150c 100644 --- a/src/oci/jms/models/patch_detail.py +++ b/src/oci/jms/models/patch_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/performance_tuning_analysis.py b/src/oci/jms/models/performance_tuning_analysis.py index 509c9ed13e..530e236f90 100644 --- a/src/oci/jms/models/performance_tuning_analysis.py +++ b/src/oci/jms/models/performance_tuning_analysis.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/performance_tuning_analysis_result.py b/src/oci/jms/models/performance_tuning_analysis_result.py index e6ef7274c3..7fd9c9586d 100644 --- a/src/oci/jms/models/performance_tuning_analysis_result.py +++ b/src/oci/jms/models/performance_tuning_analysis_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/performance_tuning_analysis_result_collection.py b/src/oci/jms/models/performance_tuning_analysis_result_collection.py index 5c91021572..21b1543884 100644 --- a/src/oci/jms/models/performance_tuning_analysis_result_collection.py +++ b/src/oci/jms/models/performance_tuning_analysis_result_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/performance_tuning_analysis_result_summary.py b/src/oci/jms/models/performance_tuning_analysis_result_summary.py index 33e5eb7da0..769f1fab67 100644 --- a/src/oci/jms/models/performance_tuning_analysis_result_summary.py +++ b/src/oci/jms/models/performance_tuning_analysis_result_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/plugin.py b/src/oci/jms/models/plugin.py index 9f4e8816b1..fe81b812f3 100644 --- a/src/oci/jms/models/plugin.py +++ b/src/oci/jms/models/plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/post_installation_action_settings.py b/src/oci/jms/models/post_installation_action_settings.py index 64eb8c02ed..702b8b7e1e 100644 --- a/src/oci/jms/models/post_installation_action_settings.py +++ b/src/oci/jms/models/post_installation_action_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/principal.py b/src/oci/jms/models/principal.py index db492ace61..fda4f69fea 100644 --- a/src/oci/jms/models/principal.py +++ b/src/oci/jms/models/principal.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/proxies.py b/src/oci/jms/models/proxies.py index dc7050af08..46a355cc1a 100644 --- a/src/oci/jms/models/proxies.py +++ b/src/oci/jms/models/proxies.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/remove_fleet_installation_sites_details.py b/src/oci/jms/models/remove_fleet_installation_sites_details.py index 529c7dd25c..9a2a6366bf 100644 --- a/src/oci/jms/models/remove_fleet_installation_sites_details.py +++ b/src/oci/jms/models/remove_fleet_installation_sites_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/request_crypto_analyses_details.py b/src/oci/jms/models/request_crypto_analyses_details.py index 3b8105c367..c91361cdd5 100644 --- a/src/oci/jms/models/request_crypto_analyses_details.py +++ b/src/oci/jms/models/request_crypto_analyses_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/request_deployed_application_migration_analyses_details.py b/src/oci/jms/models/request_deployed_application_migration_analyses_details.py index c5643f3824..3b2dc1aeb6 100644 --- a/src/oci/jms/models/request_deployed_application_migration_analyses_details.py +++ b/src/oci/jms/models/request_deployed_application_migration_analyses_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/request_java_migration_analyses_details.py b/src/oci/jms/models/request_java_migration_analyses_details.py index 3f30915d96..8cacd4b5a5 100644 --- a/src/oci/jms/models/request_java_migration_analyses_details.py +++ b/src/oci/jms/models/request_java_migration_analyses_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/request_jfr_recordings_details.py b/src/oci/jms/models/request_jfr_recordings_details.py index 1196ddfa59..eaa9b42ee7 100644 --- a/src/oci/jms/models/request_jfr_recordings_details.py +++ b/src/oci/jms/models/request_jfr_recordings_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/request_performance_tuning_analyses_details.py b/src/oci/jms/models/request_performance_tuning_analyses_details.py index 2f81f0d071..b40ceb12bb 100644 --- a/src/oci/jms/models/request_performance_tuning_analyses_details.py +++ b/src/oci/jms/models/request_performance_tuning_analyses_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/resource_inventory.py b/src/oci/jms/models/resource_inventory.py index 1c1f7fa2fc..2b110bce0e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/scan_java_server_usage_details.py b/src/oci/jms/models/scan_java_server_usage_details.py index cde1e651b7..b79a557617 100644 --- a/src/oci/jms/models/scan_java_server_usage_details.py +++ b/src/oci/jms/models/scan_java_server_usage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/scan_library_usage_details.py b/src/oci/jms/models/scan_library_usage_details.py index aa9be5255c..040d9fc141 100644 --- a/src/oci/jms/models/scan_library_usage_details.py +++ b/src/oci/jms/models/scan_library_usage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/summarized_events_log.py b/src/oci/jms/models/summarized_events_log.py index 56332b3e07..5fc0e3a73f 100644 --- a/src/oci/jms/models/summarized_events_log.py +++ b/src/oci/jms/models/summarized_events_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/update_drs_file_details.py b/src/oci/jms/models/update_drs_file_details.py index 294ef45f12..2a43def9b0 100644 --- a/src/oci/jms/models/update_drs_file_details.py +++ b/src/oci/jms/models/update_drs_file_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/update_export_setting_details.py b/src/oci/jms/models/update_export_setting_details.py index a5b409f445..c249f09b29 100644 --- a/src/oci/jms/models/update_export_setting_details.py +++ b/src/oci/jms/models/update_export_setting_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/update_fleet_advanced_feature_configuration_details.py b/src/oci/jms/models/update_fleet_advanced_feature_configuration_details.py index 75d19d894d..880ea0bf4f 100644 --- a/src/oci/jms/models/update_fleet_advanced_feature_configuration_details.py +++ b/src/oci/jms/models/update_fleet_advanced_feature_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 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 9f0004f2b3..3179a776e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/update_fleet_details.py b/src/oci/jms/models/update_fleet_details.py index a14a44421b..21cb6e6f99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/update_jms_plugin_details.py b/src/oci/jms/models/update_jms_plugin_details.py index b477b8f495..ae26b78cc4 100644 --- a/src/oci/jms/models/update_jms_plugin_details.py +++ b/src/oci/jms/models/update_jms_plugin_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/work_item_collection.py b/src/oci/jms/models/work_item_collection.py index a34a49bfa6..dfa19770be 100644 --- a/src/oci/jms/models/work_item_collection.py +++ b/src/oci/jms/models/work_item_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/work_item_details.py b/src/oci/jms/models/work_item_details.py index a57301211b..2b4eb8c5c9 100644 --- a/src/oci/jms/models/work_item_details.py +++ b/src/oci/jms/models/work_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/work_item_summary.py b/src/oci/jms/models/work_item_summary.py index aca1c3123d..d17bb87604 100644 --- a/src/oci/jms/models/work_item_summary.py +++ b/src/oci/jms/models/work_item_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/work_request.py b/src/oci/jms/models/work_request.py index 8a908c566a..5c47c077a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/work_request_collection.py b/src/oci/jms/models/work_request_collection.py index b895042cec..0ceda4a22d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/work_request_error.py b/src/oci/jms/models/work_request_error.py index d09151cb7c..8aec1aeac9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/work_request_error_collection.py b/src/oci/jms/models/work_request_error_collection.py index 316c4c71c9..88f304f9c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/work_request_log_entry.py b/src/oci/jms/models/work_request_log_entry.py index 2fa70bb50e..0a2a793a7f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 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 e2880bd58d..4d17a708d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms/models/work_request_resource.py b/src/oci/jms/models/work_request_resource.py index bee8cfc4cb..97f16e2e7f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210610 diff --git a/src/oci/jms_java_downloads/__init__.py b/src/oci/jms_java_downloads/__init__.py index 0d23c3d96c..860fd180b2 100644 --- a/src/oci/jms_java_downloads/__init__.py +++ b/src/oci/jms_java_downloads/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/java_download_client.py b/src/oci/jms_java_downloads/java_download_client.py index 3be321777f..c93c36b77f 100644 --- a/src/oci/jms_java_downloads/java_download_client.py +++ b/src/oci/jms_java_downloads/java_download_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/java_download_client_composite_operations.py b/src/oci/jms_java_downloads/java_download_client_composite_operations.py index db49715498..d2654a163d 100644 --- a/src/oci/jms_java_downloads/java_download_client_composite_operations.py +++ b/src/oci/jms_java_downloads/java_download_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/__init__.py b/src/oci/jms_java_downloads/models/__init__.py index 685dcdeae6..c0285d41fa 100644 --- a/src/oci/jms_java_downloads/models/__init__.py +++ b/src/oci/jms_java_downloads/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/create_java_download_report_details.py b/src/oci/jms_java_downloads/models/create_java_download_report_details.py index 971b78d9f9..9df0bf3c1a 100644 --- a/src/oci/jms_java_downloads/models/create_java_download_report_details.py +++ b/src/oci/jms_java_downloads/models/create_java_download_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/create_java_download_token_details.py b/src/oci/jms_java_downloads/models/create_java_download_token_details.py index d4ce1174c7..083b8f140a 100644 --- a/src/oci/jms_java_downloads/models/create_java_download_token_details.py +++ b/src/oci/jms_java_downloads/models/create_java_download_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/create_java_license_acceptance_record_details.py b/src/oci/jms_java_downloads/models/create_java_license_acceptance_record_details.py index 61d15d7db8..c3341d60f5 100644 --- a/src/oci/jms_java_downloads/models/create_java_license_acceptance_record_details.py +++ b/src/oci/jms_java_downloads/models/create_java_license_acceptance_record_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/download_url.py b/src/oci/jms_java_downloads/models/download_url.py index 72045668f0..852ec8e1e4 100644 --- a/src/oci/jms_java_downloads/models/download_url.py +++ b/src/oci/jms_java_downloads/models/download_url.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/generate_artifact_download_url_details.py b/src/oci/jms_java_downloads/models/generate_artifact_download_url_details.py index 25578a1107..e1c8c036fa 100644 --- a/src/oci/jms_java_downloads/models/generate_artifact_download_url_details.py +++ b/src/oci/jms_java_downloads/models/generate_artifact_download_url_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_count_aggregation.py b/src/oci/jms_java_downloads/models/java_download_count_aggregation.py index 420dd916b1..15f312ce5b 100644 --- a/src/oci/jms_java_downloads/models/java_download_count_aggregation.py +++ b/src/oci/jms_java_downloads/models/java_download_count_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_count_aggregation_collection.py b/src/oci/jms_java_downloads/models/java_download_count_aggregation_collection.py index 85f24f307e..ff86e415a3 100644 --- a/src/oci/jms_java_downloads/models/java_download_count_aggregation_collection.py +++ b/src/oci/jms_java_downloads/models/java_download_count_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_record.py b/src/oci/jms_java_downloads/models/java_download_record.py index dc5563fbb5..ecf784a6fa 100644 --- a/src/oci/jms_java_downloads/models/java_download_record.py +++ b/src/oci/jms_java_downloads/models/java_download_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_record_collection.py b/src/oci/jms_java_downloads/models/java_download_record_collection.py index 6b568dae7e..ed8ad08fe5 100644 --- a/src/oci/jms_java_downloads/models/java_download_record_collection.py +++ b/src/oci/jms_java_downloads/models/java_download_record_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_record_summary.py b/src/oci/jms_java_downloads/models/java_download_record_summary.py index 908cf88380..d75a68ab56 100644 --- a/src/oci/jms_java_downloads/models/java_download_record_summary.py +++ b/src/oci/jms_java_downloads/models/java_download_record_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_report.py b/src/oci/jms_java_downloads/models/java_download_report.py index e89769a362..4f74d049d6 100644 --- a/src/oci/jms_java_downloads/models/java_download_report.py +++ b/src/oci/jms_java_downloads/models/java_download_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_report_collection.py b/src/oci/jms_java_downloads/models/java_download_report_collection.py index 4ec3f02d83..867a14e754 100644 --- a/src/oci/jms_java_downloads/models/java_download_report_collection.py +++ b/src/oci/jms_java_downloads/models/java_download_report_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_report_summary.py b/src/oci/jms_java_downloads/models/java_download_report_summary.py index 8dd32c44ee..c5088beab5 100644 --- a/src/oci/jms_java_downloads/models/java_download_report_summary.py +++ b/src/oci/jms_java_downloads/models/java_download_report_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_token.py b/src/oci/jms_java_downloads/models/java_download_token.py index d31c03d120..ec65e710eb 100644 --- a/src/oci/jms_java_downloads/models/java_download_token.py +++ b/src/oci/jms_java_downloads/models/java_download_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_token_collection.py b/src/oci/jms_java_downloads/models/java_download_token_collection.py index 2a44e5466e..734699e279 100644 --- a/src/oci/jms_java_downloads/models/java_download_token_collection.py +++ b/src/oci/jms_java_downloads/models/java_download_token_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_download_token_summary.py b/src/oci/jms_java_downloads/models/java_download_token_summary.py index b6ce6a8117..27507bd067 100644 --- a/src/oci/jms_java_downloads/models/java_download_token_summary.py +++ b/src/oci/jms_java_downloads/models/java_download_token_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_license.py b/src/oci/jms_java_downloads/models/java_license.py index 72c92098a8..1b36f3ccb0 100644 --- a/src/oci/jms_java_downloads/models/java_license.py +++ b/src/oci/jms_java_downloads/models/java_license.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_license_acceptance_record.py b/src/oci/jms_java_downloads/models/java_license_acceptance_record.py index 534879c65e..5050f26a88 100644 --- a/src/oci/jms_java_downloads/models/java_license_acceptance_record.py +++ b/src/oci/jms_java_downloads/models/java_license_acceptance_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_license_acceptance_record_collection.py b/src/oci/jms_java_downloads/models/java_license_acceptance_record_collection.py index 7d277ab5f4..bc71d1337c 100644 --- a/src/oci/jms_java_downloads/models/java_license_acceptance_record_collection.py +++ b/src/oci/jms_java_downloads/models/java_license_acceptance_record_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_license_acceptance_record_summary.py b/src/oci/jms_java_downloads/models/java_license_acceptance_record_summary.py index edad175c07..d6d601514f 100644 --- a/src/oci/jms_java_downloads/models/java_license_acceptance_record_summary.py +++ b/src/oci/jms_java_downloads/models/java_license_acceptance_record_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_license_collection.py b/src/oci/jms_java_downloads/models/java_license_collection.py index 0bcd9804c7..bb4939a712 100644 --- a/src/oci/jms_java_downloads/models/java_license_collection.py +++ b/src/oci/jms_java_downloads/models/java_license_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/java_license_summary.py b/src/oci/jms_java_downloads/models/java_license_summary.py index 5f78f478a3..ff3a7e63a5 100644 --- a/src/oci/jms_java_downloads/models/java_license_summary.py +++ b/src/oci/jms_java_downloads/models/java_license_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/principal.py b/src/oci/jms_java_downloads/models/principal.py index c77ee69d51..fabd019411 100644 --- a/src/oci/jms_java_downloads/models/principal.py +++ b/src/oci/jms_java_downloads/models/principal.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/request_summarized_java_download_counts_details.py b/src/oci/jms_java_downloads/models/request_summarized_java_download_counts_details.py index cbf918dfe2..7ddbadaaea 100644 --- a/src/oci/jms_java_downloads/models/request_summarized_java_download_counts_details.py +++ b/src/oci/jms_java_downloads/models/request_summarized_java_download_counts_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/update_java_download_token_details.py b/src/oci/jms_java_downloads/models/update_java_download_token_details.py index ee824473fc..22e26326a2 100644 --- a/src/oci/jms_java_downloads/models/update_java_download_token_details.py +++ b/src/oci/jms_java_downloads/models/update_java_download_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/update_java_license_acceptance_record_details.py b/src/oci/jms_java_downloads/models/update_java_license_acceptance_record_details.py index 8b70f678ba..a8b288c60f 100644 --- a/src/oci/jms_java_downloads/models/update_java_license_acceptance_record_details.py +++ b/src/oci/jms_java_downloads/models/update_java_license_acceptance_record_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/work_request.py b/src/oci/jms_java_downloads/models/work_request.py index e67deacbd3..76b1dd89cf 100644 --- a/src/oci/jms_java_downloads/models/work_request.py +++ b/src/oci/jms_java_downloads/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/work_request_error.py b/src/oci/jms_java_downloads/models/work_request_error.py index f9850fd89e..cd264a64e7 100644 --- a/src/oci/jms_java_downloads/models/work_request_error.py +++ b/src/oci/jms_java_downloads/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/work_request_error_collection.py b/src/oci/jms_java_downloads/models/work_request_error_collection.py index a4f9cdfb2b..cc4295580e 100644 --- a/src/oci/jms_java_downloads/models/work_request_error_collection.py +++ b/src/oci/jms_java_downloads/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/work_request_log_entry.py b/src/oci/jms_java_downloads/models/work_request_log_entry.py index d4cdba817b..9edd2cf38d 100644 --- a/src/oci/jms_java_downloads/models/work_request_log_entry.py +++ b/src/oci/jms_java_downloads/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/work_request_log_entry_collection.py b/src/oci/jms_java_downloads/models/work_request_log_entry_collection.py index 75b336a6de..752782b92e 100644 --- a/src/oci/jms_java_downloads/models/work_request_log_entry_collection.py +++ b/src/oci/jms_java_downloads/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/work_request_resource.py b/src/oci/jms_java_downloads/models/work_request_resource.py index 1af1303f73..3f260cf87f 100644 --- a/src/oci/jms_java_downloads/models/work_request_resource.py +++ b/src/oci/jms_java_downloads/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/work_request_summary.py b/src/oci/jms_java_downloads/models/work_request_summary.py index a4ee42439f..04f90f889b 100644 --- a/src/oci/jms_java_downloads/models/work_request_summary.py +++ b/src/oci/jms_java_downloads/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/jms_java_downloads/models/work_request_summary_collection.py b/src/oci/jms_java_downloads/models/work_request_summary_collection.py index 3f1fefe6b9..aa19c4769e 100644 --- a/src/oci/jms_java_downloads/models/work_request_summary_collection.py +++ b/src/oci/jms_java_downloads/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230601 diff --git a/src/oci/key_management/__init__.py b/src/oci/key_management/__init__.py index ec663120d3..f5bf71f220 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/ekm_client.py b/src/oci/key_management/ekm_client.py index 383d986f47..1a338aa626 100644 --- a/src/oci/key_management/ekm_client.py +++ b/src/oci/key_management/ekm_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/ekm_client_composite_operations.py b/src/oci/key_management/ekm_client_composite_operations.py index 0c9ec9b2f5..8265040514 100644 --- a/src/oci/key_management/ekm_client_composite_operations.py +++ b/src/oci/key_management/ekm_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/kms_crypto_client.py b/src/oci/key_management/kms_crypto_client.py index cb5dd8da50..a52f4a0ac5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 f04d23f7f8..6c476a8528 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/kms_hsm_cluster_client.py b/src/oci/key_management/kms_hsm_cluster_client.py index f6418b75ef..e3aabd6927 100644 --- a/src/oci/key_management/kms_hsm_cluster_client.py +++ b/src/oci/key_management/kms_hsm_cluster_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/kms_hsm_cluster_client_composite_operations.py b/src/oci/key_management/kms_hsm_cluster_client_composite_operations.py index aa7cd92192..1eabd1fc0b 100644 --- a/src/oci/key_management/kms_hsm_cluster_client_composite_operations.py +++ b/src/oci/key_management/kms_hsm_cluster_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/kms_management_client.py b/src/oci/key_management/kms_management_client.py index 31f6783e57..be4ba28ef0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 742db77eb3..22cad63544 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/kms_vault_client.py b/src/oci/key_management/kms_vault_client.py index 52bb9de86d..e6890425ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 09d4a4b9c1..d08dc81408 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/__init__.py b/src/oci/key_management/models/__init__.py index 045fd2d0c7..2cacc022c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/auto_key_rotation_details.py b/src/oci/key_management/models/auto_key_rotation_details.py index 463e75fd58..66b17a658a 100644 --- a/src/oci/key_management/models/auto_key_rotation_details.py +++ b/src/oci/key_management/models/auto_key_rotation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/backup_key_details.py b/src/oci/key_management/models/backup_key_details.py index b337fa76dd..bf931182a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/backup_location.py b/src/oci/key_management/models/backup_location.py index 0a4d77ba51..d0330ee655 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/backup_location_bucket.py b/src/oci/key_management/models/backup_location_bucket.py index 23b41754b7..c87161e30a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/backup_location_uri.py b/src/oci/key_management/models/backup_location_uri.py index 12539e297c..a1208d78a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/backup_vault_details.py b/src/oci/key_management/models/backup_vault_details.py index 09e414cf1a..1d45b22bd8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/change_hsm_cluster_compartment_details.py b/src/oci/key_management/models/change_hsm_cluster_compartment_details.py index 310550ebe8..e8f9900960 100644 --- a/src/oci/key_management/models/change_hsm_cluster_compartment_details.py +++ b/src/oci/key_management/models/change_hsm_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 354abed84a..cb6b8e6d7a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 1d7c5a9d46..9c2da3d987 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/create_ekms_private_endpoint_details.py b/src/oci/key_management/models/create_ekms_private_endpoint_details.py index c425dbe432..7045c9dc3f 100644 --- a/src/oci/key_management/models/create_ekms_private_endpoint_details.py +++ b/src/oci/key_management/models/create_ekms_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/create_hsm_cluster_details.py b/src/oci/key_management/models/create_hsm_cluster_details.py index 19b5be2c3c..2772d880ac 100644 --- a/src/oci/key_management/models/create_hsm_cluster_details.py +++ b/src/oci/key_management/models/create_hsm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/create_key_details.py b/src/oci/key_management/models/create_key_details.py index bc8f4b486a..cb3c0c5359 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/create_vault_details.py b/src/oci/key_management/models/create_vault_details.py index 9068498029..a35c0e5226 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 14adebd68b..4a207b54ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/decrypt_data_details.py b/src/oci/key_management/models/decrypt_data_details.py index 1ac2cf5ce6..4b195de899 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/decrypted_data.py b/src/oci/key_management/models/decrypted_data.py index a57beb7b35..90bbfe1403 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 2f8519254b..d871288298 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/ekms_private_endpoint.py b/src/oci/key_management/models/ekms_private_endpoint.py index e38adf2de2..c2e91ec00e 100644 --- a/src/oci/key_management/models/ekms_private_endpoint.py +++ b/src/oci/key_management/models/ekms_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/ekms_private_endpoint_summary.py b/src/oci/key_management/models/ekms_private_endpoint_summary.py index f2732141f0..bce69c1ab5 100644 --- a/src/oci/key_management/models/ekms_private_endpoint_summary.py +++ b/src/oci/key_management/models/ekms_private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/encrypt_data_details.py b/src/oci/key_management/models/encrypt_data_details.py index af4808b8c5..69ace8b5ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/encrypted_data.py b/src/oci/key_management/models/encrypted_data.py index 2a90271ee6..58abdacae0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/export_key_details.py b/src/oci/key_management/models/export_key_details.py index 1b3b2f1596..9d8c76f2bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/exported_key_data.py b/src/oci/key_management/models/exported_key_data.py index 50468889ab..007161a7da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/external_key_manager_metadata.py b/src/oci/key_management/models/external_key_manager_metadata.py index 72ab758527..31512d2d23 100644 --- a/src/oci/key_management/models/external_key_manager_metadata.py +++ b/src/oci/key_management/models/external_key_manager_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/external_key_manager_metadata_summary.py b/src/oci/key_management/models/external_key_manager_metadata_summary.py index 18a0329155..d27affb955 100644 --- a/src/oci/key_management/models/external_key_manager_metadata_summary.py +++ b/src/oci/key_management/models/external_key_manager_metadata_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/external_key_reference.py b/src/oci/key_management/models/external_key_reference.py index bf14de9d00..74733e7416 100644 --- a/src/oci/key_management/models/external_key_reference.py +++ b/src/oci/key_management/models/external_key_reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/external_key_reference_details.py b/src/oci/key_management/models/external_key_reference_details.py index 946f4dd781..adf80663b7 100644 --- a/src/oci/key_management/models/external_key_reference_details.py +++ b/src/oci/key_management/models/external_key_reference_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/external_key_version_reference.py b/src/oci/key_management/models/external_key_version_reference.py index 1f574f8317..3113faeb6f 100644 --- a/src/oci/key_management/models/external_key_version_reference.py +++ b/src/oci/key_management/models/external_key_version_reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/generate_key_details.py b/src/oci/key_management/models/generate_key_details.py index 33a343e47f..100221e10f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/generated_key.py b/src/oci/key_management/models/generated_key.py index 7e40c561f5..3642fedc09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/hsm_cluster.py b/src/oci/key_management/models/hsm_cluster.py index 9d5b0f0740..78d9c9b6d0 100644 --- a/src/oci/key_management/models/hsm_cluster.py +++ b/src/oci/key_management/models/hsm_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/hsm_cluster_collection.py b/src/oci/key_management/models/hsm_cluster_collection.py index 60329d41ee..20a3015c3c 100644 --- a/src/oci/key_management/models/hsm_cluster_collection.py +++ b/src/oci/key_management/models/hsm_cluster_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/hsm_cluster_summary.py b/src/oci/key_management/models/hsm_cluster_summary.py index a35c58f844..0bd3f0e913 100644 --- a/src/oci/key_management/models/hsm_cluster_summary.py +++ b/src/oci/key_management/models/hsm_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/hsm_partition.py b/src/oci/key_management/models/hsm_partition.py index 2d660ca3bd..4a9f53614d 100644 --- a/src/oci/key_management/models/hsm_partition.py +++ b/src/oci/key_management/models/hsm_partition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/hsm_partition_collection.py b/src/oci/key_management/models/hsm_partition_collection.py index 7d3676929a..0d8632cddd 100644 --- a/src/oci/key_management/models/hsm_partition_collection.py +++ b/src/oci/key_management/models/hsm_partition_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/hsm_partition_summary.py b/src/oci/key_management/models/hsm_partition_summary.py index 1408c44e0f..c9c2ee5507 100644 --- a/src/oci/key_management/models/hsm_partition_summary.py +++ b/src/oci/key_management/models/hsm_partition_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/import_key_details.py b/src/oci/key_management/models/import_key_details.py index 9cd35b7088..179b80e847 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 5032c15e55..d1c7732eb5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/key.py b/src/oci/key_management/models/key.py index fa762ddc3f..b0e1a8cba7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/key_replica_details.py b/src/oci/key_management/models/key_replica_details.py index 81d72b14e2..53d6fca94c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/key_shape.py b/src/oci/key_management/models/key_shape.py index eb65c3bff2..21fb8661e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/key_summary.py b/src/oci/key_management/models/key_summary.py index 686134550c..92ec00d44a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/key_version.py b/src/oci/key_management/models/key_version.py index bd5acab1b9..2f5ad80dfa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 c31e2d4b39..9f9ba8e5fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/key_version_summary.py b/src/oci/key_management/models/key_version_summary.py index f6e8f63550..e459cd094b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/oauth_metadata.py b/src/oci/key_management/models/oauth_metadata.py index 6c46d9c9bb..b575126c85 100644 --- a/src/oci/key_management/models/oauth_metadata.py +++ b/src/oci/key_management/models/oauth_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/oauth_metadata_summary.py b/src/oci/key_management/models/oauth_metadata_summary.py index 34110fa581..40945e9440 100644 --- a/src/oci/key_management/models/oauth_metadata_summary.py +++ b/src/oci/key_management/models/oauth_metadata_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/port_information.py b/src/oci/key_management/models/port_information.py index cc1998c0ea..82cc4ca474 100644 --- a/src/oci/key_management/models/port_information.py +++ b/src/oci/key_management/models/port_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/pre_co_user_credentials.py b/src/oci/key_management/models/pre_co_user_credentials.py index 93f7d97819..d9917b724d 100644 --- a/src/oci/key_management/models/pre_co_user_credentials.py +++ b/src/oci/key_management/models/pre_co_user_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/replica_details.py b/src/oci/key_management/models/replica_details.py index d8cf186671..a1b3d9dedc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/replication_status_details.py b/src/oci/key_management/models/replication_status_details.py index 8106072345..6238b5d499 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 7826b6957b..e1a8bae357 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 d2c13c3d5b..99a7da0ece 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/schedule_hsm_cluster_deletion_details.py b/src/oci/key_management/models/schedule_hsm_cluster_deletion_details.py index 674fa62452..56d4991b8c 100644 --- a/src/oci/key_management/models/schedule_hsm_cluster_deletion_details.py +++ b/src/oci/key_management/models/schedule_hsm_cluster_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 2e7c8f4661..e72f450c18 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 dbf708be56..41f412c309 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release 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 69058f5bc3..8c78a57b9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/sign_data_details.py b/src/oci/key_management/models/sign_data_details.py index 7b443b1a05..63320c8c1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/signed_data.py b/src/oci/key_management/models/signed_data.py index 3a3733a513..dbf579a6d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/update_ekms_private_endpoint_details.py b/src/oci/key_management/models/update_ekms_private_endpoint_details.py index 89e430d1a5..4382884995 100644 --- a/src/oci/key_management/models/update_ekms_private_endpoint_details.py +++ b/src/oci/key_management/models/update_ekms_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/update_hsm_cluster_details.py b/src/oci/key_management/models/update_hsm_cluster_details.py index cfcc761d90..0f9cd65a89 100644 --- a/src/oci/key_management/models/update_hsm_cluster_details.py +++ b/src/oci/key_management/models/update_hsm_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/update_key_details.py b/src/oci/key_management/models/update_key_details.py index e3a1181aac..9455f194a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/update_vault_details.py b/src/oci/key_management/models/update_vault_details.py index eff0310d2f..3e3d1976c7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/upload_partition_certificates_details.py b/src/oci/key_management/models/upload_partition_certificates_details.py index c8677a6426..7e2a067376 100644 --- a/src/oci/key_management/models/upload_partition_certificates_details.py +++ b/src/oci/key_management/models/upload_partition_certificates_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/vault.py b/src/oci/key_management/models/vault.py index c140d2a702..f965474fc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/vault_replica_details.py b/src/oci/key_management/models/vault_replica_details.py index caba03b485..c6e02c1e57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/vault_replica_summary.py b/src/oci/key_management/models/vault_replica_summary.py index 2d7ca3b6fb..f8117c5786 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/vault_summary.py b/src/oci/key_management/models/vault_summary.py index bbaa590b61..0b1cbf4084 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/vault_usage.py b/src/oci/key_management/models/vault_usage.py index 5603ff20da..8ee3fee90a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/verified_data.py b/src/oci/key_management/models/verified_data.py index cd4dbc36aa..7d40c54674 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/verify_data_details.py b/src/oci/key_management/models/verify_data_details.py index 208101dde9..bd0e04a640 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/wrapped_import_key.py b/src/oci/key_management/models/wrapped_import_key.py index 2f63fce891..4f7633f211 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/key_management/models/wrapping_key.py b/src/oci/key_management/models/wrapping_key.py index a21c2a7df2..c167c47eba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: release diff --git a/src/oci/license_manager/__init__.py b/src/oci/license_manager/__init__.py index 9558dab1e6..879d11d906 100644 --- a/src/oci/license_manager/__init__.py +++ b/src/oci/license_manager/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/license_manager_client.py b/src/oci/license_manager/license_manager_client.py index 39f93e3cf3..a96d36dea8 100644 --- a/src/oci/license_manager/license_manager_client.py +++ b/src/oci/license_manager/license_manager_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/license_manager_client_composite_operations.py b/src/oci/license_manager/license_manager_client_composite_operations.py index e80a87ac87..08400abf83 100644 --- a/src/oci/license_manager/license_manager_client_composite_operations.py +++ b/src/oci/license_manager/license_manager_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/__init__.py b/src/oci/license_manager/models/__init__.py index 2804499101..a0cedd6d1a 100644 --- a/src/oci/license_manager/models/__init__.py +++ b/src/oci/license_manager/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/bulk_upload_cell_info.py b/src/oci/license_manager/models/bulk_upload_cell_info.py index 9167684110..3a32a90f09 100644 --- a/src/oci/license_manager/models/bulk_upload_cell_info.py +++ b/src/oci/license_manager/models/bulk_upload_cell_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/bulk_upload_failed_record_info.py b/src/oci/license_manager/models/bulk_upload_failed_record_info.py index 35e0c72c11..5ae3010d98 100644 --- a/src/oci/license_manager/models/bulk_upload_failed_record_info.py +++ b/src/oci/license_manager/models/bulk_upload_failed_record_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/bulk_upload_license_records_details.py b/src/oci/license_manager/models/bulk_upload_license_records_details.py index c2c4c925df..3c4c6d3736 100644 --- a/src/oci/license_manager/models/bulk_upload_license_records_details.py +++ b/src/oci/license_manager/models/bulk_upload_license_records_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/bulk_upload_response.py b/src/oci/license_manager/models/bulk_upload_response.py index c6aaf7aadb..cb3c3cd8a5 100644 --- a/src/oci/license_manager/models/bulk_upload_response.py +++ b/src/oci/license_manager/models/bulk_upload_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/bulk_upload_template.py b/src/oci/license_manager/models/bulk_upload_template.py index 55a3f720b5..e3417bf921 100644 --- a/src/oci/license_manager/models/bulk_upload_template.py +++ b/src/oci/license_manager/models/bulk_upload_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/bulk_upload_validation_error_info.py b/src/oci/license_manager/models/bulk_upload_validation_error_info.py index d78f7dd185..c198c59299 100644 --- a/src/oci/license_manager/models/bulk_upload_validation_error_info.py +++ b/src/oci/license_manager/models/bulk_upload_validation_error_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/configuration.py b/src/oci/license_manager/models/configuration.py index ebad734a15..cb7020074a 100644 --- a/src/oci/license_manager/models/configuration.py +++ b/src/oci/license_manager/models/configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/create_license_record_details.py b/src/oci/license_manager/models/create_license_record_details.py index 90f0a2daed..9de18689c5 100644 --- a/src/oci/license_manager/models/create_license_record_details.py +++ b/src/oci/license_manager/models/create_license_record_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/create_product_license_details.py b/src/oci/license_manager/models/create_product_license_details.py index cb72fd88de..d2723fed56 100644 --- a/src/oci/license_manager/models/create_product_license_details.py +++ b/src/oci/license_manager/models/create_product_license_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/image_details.py b/src/oci/license_manager/models/image_details.py index 2492e9b551..02b2a8cc97 100644 --- a/src/oci/license_manager/models/image_details.py +++ b/src/oci/license_manager/models/image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/image_response.py b/src/oci/license_manager/models/image_response.py index 3cd8396f94..c098f7bfaf 100644 --- a/src/oci/license_manager/models/image_response.py +++ b/src/oci/license_manager/models/image_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/license_metric.py b/src/oci/license_manager/models/license_metric.py index 134a3518de..8313050779 100644 --- a/src/oci/license_manager/models/license_metric.py +++ b/src/oci/license_manager/models/license_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/license_record.py b/src/oci/license_manager/models/license_record.py index 33b1392764..54cf4358cb 100644 --- a/src/oci/license_manager/models/license_record.py +++ b/src/oci/license_manager/models/license_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/license_record_collection.py b/src/oci/license_manager/models/license_record_collection.py index b06ad0b8f3..b0b20dc7dc 100644 --- a/src/oci/license_manager/models/license_record_collection.py +++ b/src/oci/license_manager/models/license_record_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/license_record_summary.py b/src/oci/license_manager/models/license_record_summary.py index 90612b8aa0..b490935552 100644 --- a/src/oci/license_manager/models/license_record_summary.py +++ b/src/oci/license_manager/models/license_record_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/product.py b/src/oci/license_manager/models/product.py index 2725941d90..0a85ca9d9a 100644 --- a/src/oci/license_manager/models/product.py +++ b/src/oci/license_manager/models/product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/product_license.py b/src/oci/license_manager/models/product_license.py index 6ebf395888..ebae0967e1 100644 --- a/src/oci/license_manager/models/product_license.py +++ b/src/oci/license_manager/models/product_license.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/product_license_collection.py b/src/oci/license_manager/models/product_license_collection.py index 63c8dc0314..dbb5275190 100644 --- a/src/oci/license_manager/models/product_license_collection.py +++ b/src/oci/license_manager/models/product_license_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/product_license_consumer_collection.py b/src/oci/license_manager/models/product_license_consumer_collection.py index 28df0096fd..34748bd604 100644 --- a/src/oci/license_manager/models/product_license_consumer_collection.py +++ b/src/oci/license_manager/models/product_license_consumer_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/product_license_consumer_summary.py b/src/oci/license_manager/models/product_license_consumer_summary.py index 7683251b26..ec930f52f7 100644 --- a/src/oci/license_manager/models/product_license_consumer_summary.py +++ b/src/oci/license_manager/models/product_license_consumer_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/product_license_summary.py b/src/oci/license_manager/models/product_license_summary.py index 01dd908079..5827be5468 100644 --- a/src/oci/license_manager/models/product_license_summary.py +++ b/src/oci/license_manager/models/product_license_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/top_utilized_product_license_collection.py b/src/oci/license_manager/models/top_utilized_product_license_collection.py index f34d612884..e714f816ec 100644 --- a/src/oci/license_manager/models/top_utilized_product_license_collection.py +++ b/src/oci/license_manager/models/top_utilized_product_license_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/top_utilized_product_license_summary.py b/src/oci/license_manager/models/top_utilized_product_license_summary.py index 561f4b339d..65adc8f184 100644 --- a/src/oci/license_manager/models/top_utilized_product_license_summary.py +++ b/src/oci/license_manager/models/top_utilized_product_license_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/top_utilized_resource_collection.py b/src/oci/license_manager/models/top_utilized_resource_collection.py index 711533b0fb..b3dc2badeb 100644 --- a/src/oci/license_manager/models/top_utilized_resource_collection.py +++ b/src/oci/license_manager/models/top_utilized_resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/top_utilized_resource_summary.py b/src/oci/license_manager/models/top_utilized_resource_summary.py index 6fd629c8d2..62b8a53a80 100644 --- a/src/oci/license_manager/models/top_utilized_resource_summary.py +++ b/src/oci/license_manager/models/top_utilized_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/update_configuration_details.py b/src/oci/license_manager/models/update_configuration_details.py index 85fd2348bd..55e8b65ff7 100644 --- a/src/oci/license_manager/models/update_configuration_details.py +++ b/src/oci/license_manager/models/update_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/update_license_record_details.py b/src/oci/license_manager/models/update_license_record_details.py index 6bd519c243..cc813de6af 100644 --- a/src/oci/license_manager/models/update_license_record_details.py +++ b/src/oci/license_manager/models/update_license_record_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/license_manager/models/update_product_license_details.py b/src/oci/license_manager/models/update_product_license_details.py index 12afb78f34..cf5dae0164 100644 --- a/src/oci/license_manager/models/update_product_license_details.py +++ b/src/oci/license_manager/models/update_product_license_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220430 diff --git a/src/oci/limits/__init__.py b/src/oci/limits/__init__.py index fdaf0e6e69..9464e32119 100644 --- a/src/oci/limits/__init__.py +++ b/src/oci/limits/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/limits_client.py b/src/oci/limits/limits_client.py index 80c0551429..800c82684e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/limits_client_composite_operations.py b/src/oci/limits/limits_client_composite_operations.py index b1ef58f159..bed156935f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/__init__.py b/src/oci/limits/models/__init__.py index 151bf6bc60..d879290975 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/add_lock_details.py b/src/oci/limits/models/add_lock_details.py index 54f2198461..73e9c2bcbc 100644 --- a/src/oci/limits/models/add_lock_details.py +++ b/src/oci/limits/models/add_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/create_quota_details.py b/src/oci/limits/models/create_quota_details.py index 415cd43b4a..4c12f5098e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/limit_definition_summary.py b/src/oci/limits/models/limit_definition_summary.py index 966cf7ff2b..6c2a49c89b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/limit_value_summary.py b/src/oci/limits/models/limit_value_summary.py index b2dbb4bdfc..dbdf95fbd0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/quota.py b/src/oci/limits/models/quota.py index bd898d38be..f1fa7e4927 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/quota_summary.py b/src/oci/limits/models/quota_summary.py index 1228831147..e8881f6176 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/remove_lock_details.py b/src/oci/limits/models/remove_lock_details.py index f313bdd637..d98af66ac8 100644 --- a/src/oci/limits/models/remove_lock_details.py +++ b/src/oci/limits/models/remove_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/resource_availability.py b/src/oci/limits/models/resource_availability.py index 345c0eb48e..69bab7fab1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/resource_lock.py b/src/oci/limits/models/resource_lock.py index 5229b4c16c..01b7563805 100644 --- a/src/oci/limits/models/resource_lock.py +++ b/src/oci/limits/models/resource_lock.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/service_summary.py b/src/oci/limits/models/service_summary.py index e491356dbc..33f4713a25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/models/update_quota_details.py b/src/oci/limits/models/update_quota_details.py index 334c624795..78d13966f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/quotas_client.py b/src/oci/limits/quotas_client.py index 735334ff38..0762b55348 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/limits/quotas_client_composite_operations.py b/src/oci/limits/quotas_client_composite_operations.py index 52f5f9d6d0..546c75d664 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181025 diff --git a/src/oci/load_balancer/__init__.py b/src/oci/load_balancer/__init__.py index a4c2e76be9..4590f2a22b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/load_balancer_client.py b/src/oci/load_balancer/load_balancer_client.py index a5876cc824..6ffc44bb56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 c6cdd94ad5..5eb013589d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/__init__.py b/src/oci/load_balancer/models/__init__.py index 391d2c23e6..1d9ebbb661 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/action.py b/src/oci/load_balancer/models/action.py index f0f3a9737c..632ea85ab2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 3896a44e04..2f4228340c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 8fca17b419..4f9017ca1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/allow_rule.py b/src/oci/load_balancer/models/allow_rule.py index 67f6903c52..ac43244a2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/backend.py b/src/oci/load_balancer/models/backend.py index 38ff6d9d6d..442cf503da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/backend_details.py b/src/oci/load_balancer/models/backend_details.py index 844aebe206..5af43791dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/backend_health.py b/src/oci/load_balancer/models/backend_health.py index c15bce00cc..1978007904 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/backend_set.py b/src/oci/load_balancer/models/backend_set.py index 2652901a4d..64ab721030 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/backend_set_details.py b/src/oci/load_balancer/models/backend_set_details.py index 9328f80f6c..a27c91170c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/backend_set_health.py b/src/oci/load_balancer/models/backend_set_health.py index 0ec17e9486..73fbddf526 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/certificate.py b/src/oci/load_balancer/models/certificate.py index c3b6c64a04..266732e0be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/certificate_details.py b/src/oci/load_balancer/models/certificate_details.py index 6429a8f6f7..9f3cdc988c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 4b8595a700..7ffd408a6c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/connection_configuration.py b/src/oci/load_balancer/models/connection_configuration.py index 1c134fcf1c..22db9d5463 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 74881a88fc..74cbc60773 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/create_backend_details.py b/src/oci/load_balancer/models/create_backend_details.py index cc76c775bd..39d7814e92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 0ced761b74..f139b81eab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/create_certificate_details.py b/src/oci/load_balancer/models/create_certificate_details.py index a30eb99026..78bc4246b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/create_hostname_details.py b/src/oci/load_balancer/models/create_hostname_details.py index e1e3d6369b..3267cb45f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/create_listener_details.py b/src/oci/load_balancer/models/create_listener_details.py index 093fef2615..c65ebde357 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 87f3fc2a56..ded5e8909c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 c22653ea80..d6ed3b3607 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 194a1d52a3..097ee64b1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 df12552f5f..410803c834 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 b41eb1e725..05264cf10b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 69c4088f62..b7aec915f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 6f0bc2abbd..fc3c52da44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 9e74ba01ee..f091391ca3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/health_check_result.py b/src/oci/load_balancer/models/health_check_result.py index e8861362cc..a10020ca4b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/health_checker.py b/src/oci/load_balancer/models/health_checker.py index 75dd534cbc..4fd305d3ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/health_checker_details.py b/src/oci/load_balancer/models/health_checker_details.py index 2924f54acd..fa72cc5cfd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/hostname.py b/src/oci/load_balancer/models/hostname.py index 0c5c7e3d39..7ad27d0daf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/hostname_details.py b/src/oci/load_balancer/models/hostname_details.py index 6b8eedc9ac..bd43b31202 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/http_header_rule.py b/src/oci/load_balancer/models/http_header_rule.py index 33c9efd576..d80e712936 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/ip_address.py b/src/oci/load_balancer/models/ip_address.py index 91596624f0..9468505744 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/ip_based_max_connections_rule.py b/src/oci/load_balancer/models/ip_based_max_connections_rule.py index 4e8e870b83..de7a9fd595 100644 --- a/src/oci/load_balancer/models/ip_based_max_connections_rule.py +++ b/src/oci/load_balancer/models/ip_based_max_connections_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/ip_max_connections.py b/src/oci/load_balancer/models/ip_max_connections.py index 3ae15d51fe..f6ec0f4d6d 100644 --- a/src/oci/load_balancer/models/ip_max_connections.py +++ b/src/oci/load_balancer/models/ip_max_connections.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 05ab56d394..cdf523cedb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/listener.py b/src/oci/load_balancer/models/listener.py index 50f3960897..a285ef9e3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/listener_details.py b/src/oci/load_balancer/models/listener_details.py index b33aece05c..30a53495a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/listener_rule_summary.py b/src/oci/load_balancer/models/listener_rule_summary.py index e1a131ce1c..6bd6db22c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/load_balancer.py b/src/oci/load_balancer/models/load_balancer.py index 4ce74f3a67..b5e3a08b88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/load_balancer_health.py b/src/oci/load_balancer/models/load_balancer_health.py index 7a34751eb5..7cf8ac3c20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 4c3e3ccf2c..ffeb968b4e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/load_balancer_policy.py b/src/oci/load_balancer/models/load_balancer_policy.py index 73f20d50db..3e32a5eb6a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/load_balancer_protocol.py b/src/oci/load_balancer/models/load_balancer_protocol.py index 83480720bb..0031aee1ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/load_balancer_shape.py b/src/oci/load_balancer/models/load_balancer_shape.py index 07555e7f36..93ecadb368 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/path_match_condition.py b/src/oci/load_balancer/models/path_match_condition.py index 10c2607db7..c92219647a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/path_match_type.py b/src/oci/load_balancer/models/path_match_type.py index 5a42169626..88feefcc2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/path_route.py b/src/oci/load_balancer/models/path_route.py index fb2f14d8ab..3ac39fc028 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/path_route_set.py b/src/oci/load_balancer/models/path_route_set.py index 005613179d..732f2796ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 ab2e4169e7..34b38a9daa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/redirect_rule.py b/src/oci/load_balancer/models/redirect_rule.py index 2b2d655b80..f766ebd36e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/redirect_uri.py b/src/oci/load_balancer/models/redirect_uri.py index cbac12c995..ec9f9a4fc7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 1d8c20cbcc..40fb9524e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 2acc536eff..3b6044f6e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/reserved_ip.py b/src/oci/load_balancer/models/reserved_ip.py index c1b2d5624d..449801f520 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/routing_policy.py b/src/oci/load_balancer/models/routing_policy.py index b8b4266db7..18106914d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/routing_policy_details.py b/src/oci/load_balancer/models/routing_policy_details.py index cb91ec4e92..6463b710d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/routing_rule.py b/src/oci/load_balancer/models/routing_rule.py index 6476bbee64..3c725c5356 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/rule.py b/src/oci/load_balancer/models/rule.py index af86f7adbd..0ed0ff89fc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/rule_condition.py b/src/oci/load_balancer/models/rule_condition.py index ed30c2facf..d5451e97bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/rule_set.py b/src/oci/load_balancer/models/rule_set.py index 9ad12417fb..f521264120 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/rule_set_details.py b/src/oci/load_balancer/models/rule_set_details.py index a65821f5e7..c92d41b56d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 6794ae624e..eb045db03b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/shape_details.py b/src/oci/load_balancer/models/shape_details.py index 73a5068721..f77e98a8b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 61d418a137..1d0b8bdb49 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 367ab20674..920c065349 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 b0df911108..3a6b67f3a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/ssl_cipher_suite.py b/src/oci/load_balancer/models/ssl_cipher_suite.py index 68b0655caf..2871ee735c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 92c9bf98c1..e7afad028f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/ssl_configuration.py b/src/oci/load_balancer/models/ssl_configuration.py index d276c57b0f..eb2102f51e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/ssl_configuration_details.py b/src/oci/load_balancer/models/ssl_configuration_details.py index 4fa0271c93..a7e4376ce3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/update_backend_details.py b/src/oci/load_balancer/models/update_backend_details.py index dcdefeceb3..7f1f992d17 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 ea040ee223..49a5599fe1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 439942542d..8a7a56af4c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/update_hostname_details.py b/src/oci/load_balancer/models/update_hostname_details.py index 3fffc3a533..f65492c4ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/update_listener_details.py b/src/oci/load_balancer/models/update_listener_details.py index 850b5e861c..353299cc41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 db64b4fdc0..bf407863db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 c20832e6b3..630e873058 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 59f5dc8830..0a7258931a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 7188510039..979d649039 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 a425313432..f8142b2183 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 6f936732c8..e27e0c32a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 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 3e24ae0886..a238c5de8a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/work_request.py b/src/oci/load_balancer/models/work_request.py index 185945e290..844f589dec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/load_balancer/models/work_request_error.py b/src/oci/load_balancer/models/work_request_error.py index 565fd354cc..21baa3fff2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20170115 diff --git a/src/oci/lockbox/__init__.py b/src/oci/lockbox/__init__.py index 41e9707ff2..fc8b262db8 100644 --- a/src/oci/lockbox/__init__.py +++ b/src/oci/lockbox/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/lockbox_client.py b/src/oci/lockbox/lockbox_client.py index f6e75052be..cb6ddaefb3 100644 --- a/src/oci/lockbox/lockbox_client.py +++ b/src/oci/lockbox/lockbox_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/lockbox_client_composite_operations.py b/src/oci/lockbox/lockbox_client_composite_operations.py index 59b4105708..3008dd572f 100644 --- a/src/oci/lockbox/lockbox_client_composite_operations.py +++ b/src/oci/lockbox/lockbox_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/__init__.py b/src/oci/lockbox/models/__init__.py index a235864d62..836679b012 100644 --- a/src/oci/lockbox/models/__init__.py +++ b/src/oci/lockbox/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/access_context_attribute.py b/src/oci/lockbox/models/access_context_attribute.py index 1bfa8122a9..37bf207b59 100644 --- a/src/oci/lockbox/models/access_context_attribute.py +++ b/src/oci/lockbox/models/access_context_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/access_context_attribute_collection.py b/src/oci/lockbox/models/access_context_attribute_collection.py index 98567a0354..7df72efb07 100644 --- a/src/oci/lockbox/models/access_context_attribute_collection.py +++ b/src/oci/lockbox/models/access_context_attribute_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/access_materials.py b/src/oci/lockbox/models/access_materials.py index 3be2cc2148..34d1b55b8d 100644 --- a/src/oci/lockbox/models/access_materials.py +++ b/src/oci/lockbox/models/access_materials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/access_request.py b/src/oci/lockbox/models/access_request.py index df2e80b9ca..7f2661c9ea 100644 --- a/src/oci/lockbox/models/access_request.py +++ b/src/oci/lockbox/models/access_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/access_request_collection.py b/src/oci/lockbox/models/access_request_collection.py index 567ea93627..f338d38d8c 100644 --- a/src/oci/lockbox/models/access_request_collection.py +++ b/src/oci/lockbox/models/access_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/access_request_ext.py b/src/oci/lockbox/models/access_request_ext.py index 846795c238..033ffde710 100644 --- a/src/oci/lockbox/models/access_request_ext.py +++ b/src/oci/lockbox/models/access_request_ext.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/access_request_summary.py b/src/oci/lockbox/models/access_request_summary.py index a56e226a31..b00a22a2a3 100644 --- a/src/oci/lockbox/models/access_request_summary.py +++ b/src/oci/lockbox/models/access_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/activity_log.py b/src/oci/lockbox/models/activity_log.py index f0727df093..ca307f64b2 100644 --- a/src/oci/lockbox/models/activity_log.py +++ b/src/oci/lockbox/models/activity_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/approval_template.py b/src/oci/lockbox/models/approval_template.py index 5c4595fee7..4661e2ee55 100644 --- a/src/oci/lockbox/models/approval_template.py +++ b/src/oci/lockbox/models/approval_template.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/approval_template_collection.py b/src/oci/lockbox/models/approval_template_collection.py index e7143e2fa1..71b34364f6 100644 --- a/src/oci/lockbox/models/approval_template_collection.py +++ b/src/oci/lockbox/models/approval_template_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/approval_template_summary.py b/src/oci/lockbox/models/approval_template_summary.py index ae106ec1d4..66cfa22961 100644 --- a/src/oci/lockbox/models/approval_template_summary.py +++ b/src/oci/lockbox/models/approval_template_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/approver_info.py b/src/oci/lockbox/models/approver_info.py index 2b33b0e95b..be59e954e6 100644 --- a/src/oci/lockbox/models/approver_info.py +++ b/src/oci/lockbox/models/approver_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/approver_levels.py b/src/oci/lockbox/models/approver_levels.py index 14fb121e91..778ad97fa1 100644 --- a/src/oci/lockbox/models/approver_levels.py +++ b/src/oci/lockbox/models/approver_levels.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/change_approval_template_compartment_details.py b/src/oci/lockbox/models/change_approval_template_compartment_details.py index d52c732c3e..ad7fbc6995 100644 --- a/src/oci/lockbox/models/change_approval_template_compartment_details.py +++ b/src/oci/lockbox/models/change_approval_template_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/change_lockbox_compartment_details.py b/src/oci/lockbox/models/change_lockbox_compartment_details.py index 4fb7b53d92..30722d6249 100644 --- a/src/oci/lockbox/models/change_lockbox_compartment_details.py +++ b/src/oci/lockbox/models/change_lockbox_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/create_access_request_details.py b/src/oci/lockbox/models/create_access_request_details.py index 4a2deb7e33..27493e7392 100644 --- a/src/oci/lockbox/models/create_access_request_details.py +++ b/src/oci/lockbox/models/create_access_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/create_approval_template_details.py b/src/oci/lockbox/models/create_approval_template_details.py index 08df5ae86c..1a59a3a261 100644 --- a/src/oci/lockbox/models/create_approval_template_details.py +++ b/src/oci/lockbox/models/create_approval_template_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/create_lockbox_details.py b/src/oci/lockbox/models/create_lockbox_details.py index 098f06c9ac..3b7292d94f 100644 --- a/src/oci/lockbox/models/create_lockbox_details.py +++ b/src/oci/lockbox/models/create_lockbox_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/export_access_requests_details.py b/src/oci/lockbox/models/export_access_requests_details.py index 5927ef0912..9b00b000b6 100644 --- a/src/oci/lockbox/models/export_access_requests_details.py +++ b/src/oci/lockbox/models/export_access_requests_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/handle_access_request_details.py b/src/oci/lockbox/models/handle_access_request_details.py index 02f5d369fa..ccc81df817 100644 --- a/src/oci/lockbox/models/handle_access_request_details.py +++ b/src/oci/lockbox/models/handle_access_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/lockbox.py b/src/oci/lockbox/models/lockbox.py index a4e388f910..7f17e32bf4 100644 --- a/src/oci/lockbox/models/lockbox.py +++ b/src/oci/lockbox/models/lockbox.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/lockbox_collection.py b/src/oci/lockbox/models/lockbox_collection.py index 0f454fba39..e861ec0e4a 100644 --- a/src/oci/lockbox/models/lockbox_collection.py +++ b/src/oci/lockbox/models/lockbox_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/lockbox_summary.py b/src/oci/lockbox/models/lockbox_summary.py index f4e1236055..63d2c902e4 100644 --- a/src/oci/lockbox/models/lockbox_summary.py +++ b/src/oci/lockbox/models/lockbox_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/update_approval_template_details.py b/src/oci/lockbox/models/update_approval_template_details.py index f0e6e2e334..8f5dacf01c 100644 --- a/src/oci/lockbox/models/update_approval_template_details.py +++ b/src/oci/lockbox/models/update_approval_template_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/update_lockbox_details.py b/src/oci/lockbox/models/update_lockbox_details.py index 9d3ad17dcc..26a240c754 100644 --- a/src/oci/lockbox/models/update_lockbox_details.py +++ b/src/oci/lockbox/models/update_lockbox_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/work_request.py b/src/oci/lockbox/models/work_request.py index b1f81d824b..c6bce7c6b7 100644 --- a/src/oci/lockbox/models/work_request.py +++ b/src/oci/lockbox/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/work_request_error.py b/src/oci/lockbox/models/work_request_error.py index ba0e3e2a44..02f34770d1 100644 --- a/src/oci/lockbox/models/work_request_error.py +++ b/src/oci/lockbox/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/work_request_error_collection.py b/src/oci/lockbox/models/work_request_error_collection.py index eaf95ee7f8..a2cb37676a 100644 --- a/src/oci/lockbox/models/work_request_error_collection.py +++ b/src/oci/lockbox/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/work_request_log_entry.py b/src/oci/lockbox/models/work_request_log_entry.py index b7a04e5090..5fd7efc259 100644 --- a/src/oci/lockbox/models/work_request_log_entry.py +++ b/src/oci/lockbox/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/work_request_log_entry_collection.py b/src/oci/lockbox/models/work_request_log_entry_collection.py index 921f861473..f9220cfbea 100644 --- a/src/oci/lockbox/models/work_request_log_entry_collection.py +++ b/src/oci/lockbox/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/work_request_resource.py b/src/oci/lockbox/models/work_request_resource.py index 42fea8f161..dc427b2225 100644 --- a/src/oci/lockbox/models/work_request_resource.py +++ b/src/oci/lockbox/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/work_request_summary.py b/src/oci/lockbox/models/work_request_summary.py index 13e1374787..5d44afc6d8 100644 --- a/src/oci/lockbox/models/work_request_summary.py +++ b/src/oci/lockbox/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/lockbox/models/work_request_summary_collection.py b/src/oci/lockbox/models/work_request_summary_collection.py index c3152e1d90..75e99ebf29 100644 --- a/src/oci/lockbox/models/work_request_summary_collection.py +++ b/src/oci/lockbox/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220126 diff --git a/src/oci/log_analytics/__init__.py b/src/oci/log_analytics/__init__.py index 35c5bbf1ca..a527046459 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/log_analytics_client.py b/src/oci/log_analytics/log_analytics_client.py index 6a438d68b0..c1c5beebb4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 d9586b51e6..bc5fa459e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/__init__.py b/src/oci/log_analytics/models/__init__.py index 223c9505b7..3bb7e699ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/abstract_column.py b/src/oci/log_analytics/models/abstract_column.py index 2f8b37a7e1..532351b982 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/abstract_command_descriptor.py b/src/oci/log_analytics/models/abstract_command_descriptor.py index d6ff722066..2d2bf3871b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/abstract_field.py b/src/oci/log_analytics/models/abstract_field.py index f29f07d708..ecf46fcd09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 83e06e5622..f223f35899 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5dfd2be078..cb2bd9af2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/action.py b/src/oci/log_analytics/models/action.py index 5b2546025b..7f908a86fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 822b06b974..2b8964f92d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 9f1e94530a..686182f5db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/add_insights_command_descriptor.py b/src/oci/log_analytics/models/add_insights_command_descriptor.py index c5cd5f701d..a0ceecc561 100644 --- a/src/oci/log_analytics/models/add_insights_command_descriptor.py +++ b/src/oci/log_analytics/models/add_insights_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/anomaly_command_descriptor.py b/src/oci/log_analytics/models/anomaly_command_descriptor.py index 5b04a2779f..d725ebe479 100644 --- a/src/oci/log_analytics/models/anomaly_command_descriptor.py +++ b/src/oci/log_analytics/models/anomaly_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/archiving_configuration.py b/src/oci/log_analytics/models/archiving_configuration.py index e25c085c6c..f8724526c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/argument.py b/src/oci/log_analytics/models/argument.py index df652e1bfe..d7ab8dda37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/assign_encryption_key_details.py b/src/oci/log_analytics/models/assign_encryption_key_details.py index b57047f23f..c08f371510 100644 --- a/src/oci/log_analytics/models/assign_encryption_key_details.py +++ b/src/oci/log_analytics/models/assign_encryption_key_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/associable_entity.py b/src/oci/log_analytics/models/associable_entity.py index e87da53982..0ac3447b38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/associable_entity_collection.py b/src/oci/log_analytics/models/associable_entity_collection.py index 3955b174c2..9bdd0dddaa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/association_property.py b/src/oci/log_analytics/models/association_property.py index e27f2e57e8..47edfe301f 100644 --- a/src/oci/log_analytics/models/association_property.py +++ b/src/oci/log_analytics/models/association_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/association_summary_report.py b/src/oci/log_analytics/models/association_summary_report.py index d64f245cdb..cf854307af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/auto_association_collection.py b/src/oci/log_analytics/models/auto_association_collection.py index 4afe1a26ef..9bbceab2a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/auto_association_state.py b/src/oci/log_analytics/models/auto_association_state.py index 0f015832c5..de1f891716 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/auto_lookups.py b/src/oci/log_analytics/models/auto_lookups.py index 42adc94fe8..1a2c7b7780 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/bottom_command_descriptor.py b/src/oci/log_analytics/models/bottom_command_descriptor.py index f15a1ad3fb..a11def614f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/bucket_command_descriptor.py b/src/oci/log_analytics/models/bucket_command_descriptor.py index 248cfb0121..7a73cceaff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/bucket_range.py b/src/oci/log_analytics/models/bucket_range.py index f3fc80f2d4..9c7ffcf249 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/change_ingest_time_rule_compartment_details.py b/src/oci/log_analytics/models/change_ingest_time_rule_compartment_details.py index ddc666972e..5e61046d28 100644 --- a/src/oci/log_analytics/models/change_ingest_time_rule_compartment_details.py +++ b/src/oci/log_analytics/models/change_ingest_time_rule_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 b4f1b07748..2d4457f4ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 b9a8eb7e59..1963c757a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 4636f8f6ea..1162d47ec8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 31993f4744..fce2cee6ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 408be3ea38..d5407d0908 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/char_encoding_collection.py b/src/oci/log_analytics/models/char_encoding_collection.py index 53eb3d044f..5c7d7dfcff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/chart_column.py b/src/oci/log_analytics/models/chart_column.py index d40ffa04ad..b08e39635b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/chart_data_column.py b/src/oci/log_analytics/models/chart_data_column.py index 347ffa3185..36e24cabcd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/classify_column.py b/src/oci/log_analytics/models/classify_column.py index 6312699607..b1e610de58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/classify_command_descriptor.py b/src/oci/log_analytics/models/classify_command_descriptor.py index 425c22ea03..984acf8ccd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/cluster_command_descriptor.py b/src/oci/log_analytics/models/cluster_command_descriptor.py index e8d09b8bdb..cfc74f6560 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 29bc011312..5c7cad60a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 006508ef2b..8f648e7297 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 33d74b4e14..9c50c8c00e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/column.py b/src/oci/log_analytics/models/column.py index e7c41a1233..6bbae95737 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/column_name.py b/src/oci/log_analytics/models/column_name.py index 3eaef75ac1..906423c116 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/column_name_collection.py b/src/oci/log_analytics/models/column_name_collection.py index 5811b80201..a024422fe9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/command_descriptor.py b/src/oci/log_analytics/models/command_descriptor.py index 9f4656c959..4bbc153783 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/compare_command_descriptor.py b/src/oci/log_analytics/models/compare_command_descriptor.py index aee499455f..e8bac0a060 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/compare_content_details.py b/src/oci/log_analytics/models/compare_content_details.py index 8caacee080..3e05344c4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/compare_content_result.py b/src/oci/log_analytics/models/compare_content_result.py index 16939dbabb..cbf9396820 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/compare_line_result.py b/src/oci/log_analytics/models/compare_line_result.py index 11f757bee4..08b6233067 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/condition_block.py b/src/oci/log_analytics/models/condition_block.py index e4bbe839cd..0babd7ea18 100644 --- a/src/oci/log_analytics/models/condition_block.py +++ b/src/oci/log_analytics/models/condition_block.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5d8916f319..2578e83c37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/create_ingest_time_rule_details.py b/src/oci/log_analytics/models/create_ingest_time_rule_details.py index 2cb2d00e78..676581a4f9 100644 --- a/src/oci/log_analytics/models/create_ingest_time_rule_details.py +++ b/src/oci/log_analytics/models/create_ingest_time_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 4216b60c41..a7707e5086 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 fd04863003..f7bb59795f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 26a041dde7..42c12ed5e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 31edd18300..962b6869ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 d9d7ab6aff..f6a1fa64c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 7cea69134f..169a725611 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 28f75ea816..95bad915a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/create_table_command_descriptor.py b/src/oci/log_analytics/models/create_table_command_descriptor.py index 4b6b8aa767..c54d9ae29c 100644 --- a/src/oci/log_analytics/models/create_table_command_descriptor.py +++ b/src/oci/log_analytics/models/create_table_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 03d00ab2fa..2634b47fde 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/creation_source.py b/src/oci/log_analytics/models/creation_source.py index bf36d82514..1912ec07a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/credential_endpoint.py b/src/oci/log_analytics/models/credential_endpoint.py index 7556d4419b..dd316c8a91 100644 --- a/src/oci/log_analytics/models/credential_endpoint.py +++ b/src/oci/log_analytics/models/credential_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/cron_schedule.py b/src/oci/log_analytics/models/cron_schedule.py index d3f85bd9e9..0b7feb5c8f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/dedup_command_descriptor.py b/src/oci/log_analytics/models/dedup_command_descriptor.py index 5ffefa3dec..b8121f5c6f 100644 --- a/src/oci/log_analytics/models/dedup_command_descriptor.py +++ b/src/oci/log_analytics/models/dedup_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/delete_command_descriptor.py b/src/oci/log_analytics/models/delete_command_descriptor.py index c34d06634f..54b90f7f92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 12da897173..4de4140b54 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 25ee0604b0..8894716626 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/delta_command_descriptor.py b/src/oci/log_analytics/models/delta_command_descriptor.py index 8176902e97..e5c85f5489 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 eaa693c98f..c13ae42261 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/dependency.py b/src/oci/log_analytics/models/dependency.py index 96701a4c65..9c0722e7de 100644 --- a/src/oci/log_analytics/models/dependency.py +++ b/src/oci/log_analytics/models/dependency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/dependent_parser.py b/src/oci/log_analytics/models/dependent_parser.py index 57b0f83eab..186a849888 100644 --- a/src/oci/log_analytics/models/dependent_parser.py +++ b/src/oci/log_analytics/models/dependent_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/dependent_source.py b/src/oci/log_analytics/models/dependent_source.py index 1bd6bdbe96..38fa3d1fe5 100644 --- a/src/oci/log_analytics/models/dependent_source.py +++ b/src/oci/log_analytics/models/dependent_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 088d7fe128..4beabdb221 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 aabf4917c1..e8d8a227ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/distinct_command_descriptor.py b/src/oci/log_analytics/models/distinct_command_descriptor.py index fccc32314a..d4aa9c25bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/efd_regex_result.py b/src/oci/log_analytics/models/efd_regex_result.py index 27d429e784..f9d760b07c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/effective_property_collection.py b/src/oci/log_analytics/models/effective_property_collection.py index f7391cae9e..f8bcd6ee21 100644 --- a/src/oci/log_analytics/models/effective_property_collection.py +++ b/src/oci/log_analytics/models/effective_property_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/effective_property_summary.py b/src/oci/log_analytics/models/effective_property_summary.py index 8889f27e66..8f95169691 100644 --- a/src/oci/log_analytics/models/effective_property_summary.py +++ b/src/oci/log_analytics/models/effective_property_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 e0492568cb..8a8284e2b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 a09860d88c..a44d1e5aa8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/encryption_key_info_collection.py b/src/oci/log_analytics/models/encryption_key_info_collection.py index 443f8b06e5..e12d739e80 100644 --- a/src/oci/log_analytics/models/encryption_key_info_collection.py +++ b/src/oci/log_analytics/models/encryption_key_info_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/encryption_key_info_summary.py b/src/oci/log_analytics/models/encryption_key_info_summary.py index 9a355bba92..9b5ba8f929 100644 --- a/src/oci/log_analytics/models/encryption_key_info_summary.py +++ b/src/oci/log_analytics/models/encryption_key_info_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/endpoint_credentials.py b/src/oci/log_analytics/models/endpoint_credentials.py index 2e2d70a9e8..273c0bbf93 100644 --- a/src/oci/log_analytics/models/endpoint_credentials.py +++ b/src/oci/log_analytics/models/endpoint_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/endpoint_proxy.py b/src/oci/log_analytics/models/endpoint_proxy.py index e3d5dbb6cf..bd90b3197c 100644 --- a/src/oci/log_analytics/models/endpoint_proxy.py +++ b/src/oci/log_analytics/models/endpoint_proxy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/endpoint_request.py b/src/oci/log_analytics/models/endpoint_request.py index 35b659bcf1..90bf72615a 100644 --- a/src/oci/log_analytics/models/endpoint_request.py +++ b/src/oci/log_analytics/models/endpoint_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/endpoint_response.py b/src/oci/log_analytics/models/endpoint_response.py index 84aa193f77..9c08130544 100644 --- a/src/oci/log_analytics/models/endpoint_response.py +++ b/src/oci/log_analytics/models/endpoint_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/endpoint_result.py b/src/oci/log_analytics/models/endpoint_result.py index fcc767e61e..76865f0e98 100644 --- a/src/oci/log_analytics/models/endpoint_result.py +++ b/src/oci/log_analytics/models/endpoint_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/entity_type_property.py b/src/oci/log_analytics/models/entity_type_property.py index 3f11fd8947..da45959a4d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/error_details.py b/src/oci/log_analytics/models/error_details.py index 27449103c0..0a70178547 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 d984d39e8a..585742bb2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 4178ce45f3..c784b86311 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 3eafd1eb6a..6601858ff0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 49ff700da1..c003cddede 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 a58d8b8146..d6c2d80c45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 eb9a2faf96..e618bcdc28 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/eval_command_descriptor.py b/src/oci/log_analytics/models/eval_command_descriptor.py index 8d871aa591..6f6bfced5c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 b766e42412..26dfe1c59b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/event_type.py b/src/oci/log_analytics/models/event_type.py index 19034a28f6..1bb38dd359 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/event_type_collection.py b/src/oci/log_analytics/models/event_type_collection.py index 027cc0a5b5..c275800920 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/event_type_details.py b/src/oci/log_analytics/models/event_type_details.py index 42f70acf2f..78928fa0f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/export_content.py b/src/oci/log_analytics/models/export_content.py index d930041a69..98bdf30135 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/export_details.py b/src/oci/log_analytics/models/export_details.py index eb9cd49a89..e902462cd3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 bae117193f..5d1f07af36 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/extract_command_descriptor.py b/src/oci/log_analytics/models/extract_command_descriptor.py index dd5b5a6155..b7299bec39 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 14cfb81043..3e102e03f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 e9ed7050ba..a78e45987c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 85308ff422..9c633fc555 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/field.py b/src/oci/log_analytics/models/field.py index a0e7ab8106..4519417504 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/field_argument.py b/src/oci/log_analytics/models/field_argument.py index 4797aebdbd..61ffb6267f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 32de24452f..2fdb7fd35e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/field_summary_report.py b/src/oci/log_analytics/models/field_summary_report.py index 091aa55ead..8e471c3eb9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/field_value.py b/src/oci/log_analytics/models/field_value.py index 97cfb22f65..58f6b76445 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 0905d7fa5b..8661636ace 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/fields_command_descriptor.py b/src/oci/log_analytics/models/fields_command_descriptor.py index 1338dfbec4..deae16d500 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/file_validation_response.py b/src/oci/log_analytics/models/file_validation_response.py index 215e142b0d..295cece556 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/filter.py b/src/oci/log_analytics/models/filter.py index 72e32a3f32..9616c4bc3c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/filter_details.py b/src/oci/log_analytics/models/filter_details.py index 01775b22d9..4ea8318cd7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/filter_output.py b/src/oci/log_analytics/models/filter_output.py index bc5ce3638f..546a4a2dd2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/fixed_frequency_schedule.py b/src/oci/log_analytics/models/fixed_frequency_schedule.py index f22e2b97c9..5fc3bbd1bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/frequent_command_descriptor.py b/src/oci/log_analytics/models/frequent_command_descriptor.py index b93ead1791..99d896b0dc 100644 --- a/src/oci/log_analytics/models/frequent_command_descriptor.py +++ b/src/oci/log_analytics/models/frequent_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/function_field.py b/src/oci/log_analytics/models/function_field.py index 0808b544b2..e5550c361d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 8495de2f0e..b1e868a26b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/head_command_descriptor.py b/src/oci/log_analytics/models/head_command_descriptor.py index 406d154c19..ebffe9cd8b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/highlight_command_descriptor.py b/src/oci/log_analytics/models/highlight_command_descriptor.py index f774a2c82e..db1f3d4e6c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5609d9903e..15eb552002 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 dad9d00379..5cf17681ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/indexes.py b/src/oci/log_analytics/models/indexes.py index 50553dfefa..c80e52a5d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/ingest_time_rule.py b/src/oci/log_analytics/models/ingest_time_rule.py index 0f7244476a..faffe0724e 100644 --- a/src/oci/log_analytics/models/ingest_time_rule.py +++ b/src/oci/log_analytics/models/ingest_time_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/ingest_time_rule_action.py b/src/oci/log_analytics/models/ingest_time_rule_action.py index 46da5b844f..cafe5d7144 100644 --- a/src/oci/log_analytics/models/ingest_time_rule_action.py +++ b/src/oci/log_analytics/models/ingest_time_rule_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/ingest_time_rule_additional_field_condition.py b/src/oci/log_analytics/models/ingest_time_rule_additional_field_condition.py index 6322145ac3..696385fd71 100644 --- a/src/oci/log_analytics/models/ingest_time_rule_additional_field_condition.py +++ b/src/oci/log_analytics/models/ingest_time_rule_additional_field_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/ingest_time_rule_condition.py b/src/oci/log_analytics/models/ingest_time_rule_condition.py index 34ed57e63c..0d8cac4cd6 100644 --- a/src/oci/log_analytics/models/ingest_time_rule_condition.py +++ b/src/oci/log_analytics/models/ingest_time_rule_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/ingest_time_rule_field_condition.py b/src/oci/log_analytics/models/ingest_time_rule_field_condition.py index d7a3535d5d..bfbfc98f08 100644 --- a/src/oci/log_analytics/models/ingest_time_rule_field_condition.py +++ b/src/oci/log_analytics/models/ingest_time_rule_field_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/ingest_time_rule_metric_extraction_action.py b/src/oci/log_analytics/models/ingest_time_rule_metric_extraction_action.py index f612adc2fc..4e3f6edab7 100644 --- a/src/oci/log_analytics/models/ingest_time_rule_metric_extraction_action.py +++ b/src/oci/log_analytics/models/ingest_time_rule_metric_extraction_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/ingest_time_rule_resource.py b/src/oci/log_analytics/models/ingest_time_rule_resource.py index 13e8ef7455..6c34f79ff0 100644 --- a/src/oci/log_analytics/models/ingest_time_rule_resource.py +++ b/src/oci/log_analytics/models/ingest_time_rule_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/ingest_time_rule_summary.py b/src/oci/log_analytics/models/ingest_time_rule_summary.py index 277e358449..b3f43b7bfc 100644 --- a/src/oci/log_analytics/models/ingest_time_rule_summary.py +++ b/src/oci/log_analytics/models/ingest_time_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/ingest_time_rule_summary_collection.py b/src/oci/log_analytics/models/ingest_time_rule_summary_collection.py index 79f4da91e2..66c96cfbe9 100644 --- a/src/oci/log_analytics/models/ingest_time_rule_summary_collection.py +++ b/src/oci/log_analytics/models/ingest_time_rule_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 cd1b342565..0fa9556b7a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/label_names.py b/src/oci/log_analytics/models/label_names.py index fa28576de5..001a7a3f82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/label_priority.py b/src/oci/log_analytics/models/label_priority.py index a014496824..5157f9859e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/label_priority_collection.py b/src/oci/log_analytics/models/label_priority_collection.py index 776c9f7b96..733b2dc503 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/label_source_collection.py b/src/oci/log_analytics/models/label_source_collection.py index 779428575a..dfad2ce748 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/label_source_summary.py b/src/oci/log_analytics/models/label_source_summary.py index 758e18eba0..d338e5fc54 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/label_summary_report.py b/src/oci/log_analytics/models/label_summary_report.py index a05e8b3eb3..02cd67c615 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/level.py b/src/oci/log_analytics/models/level.py index ed9d92150e..9f2cd48d2c 100644 --- a/src/oci/log_analytics/models/level.py +++ b/src/oci/log_analytics/models/level.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/link_command_descriptor.py b/src/oci/log_analytics/models/link_command_descriptor.py index 5d8c62e14a..181afcf51b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 456314cdbe..b6b6ce37dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/literal_argument.py b/src/oci/log_analytics/models/literal_argument.py index a3018212c8..46afa44d94 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 7b0d3361c9..34a47ef39f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 3aa886640b..b98f336519 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_association.py b/src/oci/log_analytics/models/log_analytics_association.py index c17583720b..6564cfcead 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 be72ed995a..3491708302 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 dfab6eea41..63b2b51bcb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 29022288c0..51288f1d1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_category.py b/src/oci/log_analytics/models/log_analytics_category.py index 9b40e04692..3553fef30d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 580e4d1d2c..d38248b87d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 9c581f8f97..4d53c083c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 243915ca62..a56b405589 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 b47f5f8a3d..2b293d058e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 826336c850..636bd87fc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 f70dfeaf43..f0867f06e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 c1915f7157..4f92bbcb20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5a1985712d..983a754d1b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 ec4bf60c4a..ee010a1759 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_endpoint.py b/src/oci/log_analytics/models/log_analytics_endpoint.py index fcbca98e5e..c6cea19b2e 100644 --- a/src/oci/log_analytics/models/log_analytics_endpoint.py +++ b/src/oci/log_analytics/models/log_analytics_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_entity.py b/src/oci/log_analytics/models/log_analytics_entity.py index 099189c60a..e21a2c193b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 bd5aa4db64..61119ddb3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 f079973217..a1d5bdfe6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 c4f55d953f..27bdfb970e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5b585c6fec..e3ae37005e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5cbb552dd9..936495f604 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 e1919dbafd..38e1319035 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 4940b5e855..5984415a3e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 448b336e28..52a6d2818e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 0be0faafc6..ab977d666d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 382b7df53b..1c034d7ead 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 d60501c90c..7d14a3af0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_field.py b/src/oci/log_analytics/models/log_analytics_field.py index 7724273f68..55765586b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 6ef0adea01..9aca82dea0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 3222aabe9b..ab5a6977e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 f432da4c13..c7b38a03d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 2c96453cfc..5f295ba1f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_label.py b/src/oci/log_analytics/models/log_analytics_label.py index 5d8f9b851e..4e0734815d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5c3951769d..b244539b3c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 666d676c3e..0f34fa9d24 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 e4863b0f85..27a6b82efc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 655ad36068..007a293cb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 deda35fa5d..e58e25a2b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 c59701b215..99d9555eee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 bdcd2ae8d1..42f429c507 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5f6f8587a8..b732d0df09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 95fac4c995..f09f292731 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 d0efd256c3..2f4bae1aad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_lookup.py b/src/oci/log_analytics/models/log_analytics_lookup.py index 5082bfbd65..110640c7e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 7e5ca41e80..7c7bf6e77b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 10b4787310..9c1dca4ee4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 adf50b7642..9c21f7a2ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 8c8c2453d5..b0fff75e17 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 0b1c96e9a4..7c09fd06ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 b465f8645e..7a73927cf4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 9c993c2ef7..94b9437eb5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_metadata.py b/src/oci/log_analytics/models/log_analytics_metadata.py index d3afe0906d..f7ad90def6 100644 --- a/src/oci/log_analytics/models/log_analytics_metadata.py +++ b/src/oci/log_analytics/models/log_analytics_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_metadata_collection.py b/src/oci/log_analytics/models/log_analytics_metadata_collection.py index 4d9466f1a4..b54e9533e8 100644 --- a/src/oci/log_analytics/models/log_analytics_metadata_collection.py +++ b/src/oci/log_analytics/models/log_analytics_metadata_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_metadata_details.py b/src/oci/log_analytics/models/log_analytics_metadata_details.py index fca2c35d50..1185226d9a 100644 --- a/src/oci/log_analytics/models/log_analytics_metadata_details.py +++ b/src/oci/log_analytics/models/log_analytics_metadata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_metadata_summary.py b/src/oci/log_analytics/models/log_analytics_metadata_summary.py index f276ac6f57..061fdd7b29 100644 --- a/src/oci/log_analytics/models/log_analytics_metadata_summary.py +++ b/src/oci/log_analytics/models/log_analytics_metadata_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_metric.py b/src/oci/log_analytics/models/log_analytics_metric.py index 5685231fc2..b2f0f722b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 621636c0ce..716ea55287 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 fc6525d19a..351c6bb5ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 47b96cff4a..9d32a9b674 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_parameter.py b/src/oci/log_analytics/models/log_analytics_parameter.py index 34b3bedd6f..ed56fd4c7d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_parser.py b/src/oci/log_analytics/models/log_analytics_parser.py index c03e71325d..34671039b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 7550c90224..9bfa3f817c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 e17dff1ab3..0beb6528cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 016d8e108d..55b24f1717 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 994f5306a1..c840b36a89 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 6ca9ed591f..07387eef7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 24ebb8db4e..e6f6024c2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 f19606909e..469a2c40f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5acc0c7c40..d5c76fc311 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 b402a3aa6e..27eafb711c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 287701e205..923bc9cdd7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 6886a6c585..bd52825501 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_preference.py b/src/oci/log_analytics/models/log_analytics_preference.py index fa689bcaeb..a00b07f48f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 92a97c6ca4..370801ad61 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 50411eb5f7..f166e3da04 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_property.py b/src/oci/log_analytics/models/log_analytics_property.py index af0a794bfa..8f1b17cef0 100644 --- a/src/oci/log_analytics/models/log_analytics_property.py +++ b/src/oci/log_analytics/models/log_analytics_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 d4e03a52be..a27d8c3af9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5947c41a88..71ef06ad49 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 32715136f0..a2b9ffb389 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_source.py b/src/oci/log_analytics/models/log_analytics_source.py index b532057e1a..657235ebfc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 be6ae06352..74a5fbd802 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 58ed334e99..ab98aead3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 6fc987b266..2874451556 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 16fc4bb6c2..dd3467c598 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 4dfd54ee40..da31fd43fc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 3557eeb405..931ce0a662 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 9d1753d57b..429f261d68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 df735ca621..1217d6f478 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 bd329f6026..1e21b64973 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 f6059898ff..96efa09b20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 4649371b12..68752af345 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 ae6b3f54c3..e4b1b28c89 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_analytics_warning.py b/src/oci/log_analytics/models/log_analytics_warning.py index 4d3e4c4e79..7b9d367cc9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 8867cedee7..4441221fc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_endpoint.py b/src/oci/log_analytics/models/log_endpoint.py index 9c99d17826..ba17b10f78 100644 --- a/src/oci/log_analytics/models/log_endpoint.py +++ b/src/oci/log_analytics/models/log_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 ab5a8b7eee..cd0b92201c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_list_endpoint.py b/src/oci/log_analytics/models/log_list_endpoint.py index ab6a4795dc..7c8983a590 100644 --- a/src/oci/log_analytics/models/log_list_endpoint.py +++ b/src/oci/log_analytics/models/log_list_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_list_type_endpoint.py b/src/oci/log_analytics/models/log_list_type_endpoint.py index 7ff5de455a..48cc08de3d 100644 --- a/src/oci/log_analytics/models/log_list_type_endpoint.py +++ b/src/oci/log_analytics/models/log_list_type_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_set_collection.py b/src/oci/log_analytics/models/log_set_collection.py index 4401979223..7cf5ac1e45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_sets_count.py b/src/oci/log_analytics/models/log_sets_count.py index fbbc404c46..2fdefe2c67 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/log_type_endpoint.py b/src/oci/log_analytics/models/log_type_endpoint.py index fc568a921b..a8bb26e45c 100644 --- a/src/oci/log_analytics/models/log_type_endpoint.py +++ b/src/oci/log_analytics/models/log_type_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/lookup_command_descriptor.py b/src/oci/log_analytics/models/lookup_command_descriptor.py index db18293da9..ec54b549c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/lookup_field.py b/src/oci/log_analytics/models/lookup_field.py index ed5c463ac6..2b0a3060f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/lookup_summary_report.py b/src/oci/log_analytics/models/lookup_summary_report.py index 0dd5b220ca..021a615311 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/macro_command_descriptor.py b/src/oci/log_analytics/models/macro_command_descriptor.py index 4cb6f1ce80..aee86af6cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/map_command_descriptor.py b/src/oci/log_analytics/models/map_command_descriptor.py index c3dc26746c..9793a12f66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/match_info.py b/src/oci/log_analytics/models/match_info.py index e095e4cb4a..bc76210f2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/metric_extraction.py b/src/oci/log_analytics/models/metric_extraction.py index c4992dc5c8..fd1c8150b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/module_command_descriptor.py b/src/oci/log_analytics/models/module_command_descriptor.py index 0266205943..396e22e1da 100644 --- a/src/oci/log_analytics/models/module_command_descriptor.py +++ b/src/oci/log_analytics/models/module_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 319f288945..2e67552f83 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/name_value_pair.py b/src/oci/log_analytics/models/name_value_pair.py index 94057d57dc..20917685a6 100644 --- a/src/oci/log_analytics/models/name_value_pair.py +++ b/src/oci/log_analytics/models/name_value_pair.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/namespace.py b/src/oci/log_analytics/models/namespace.py index 79fd36a350..894eb9409c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/namespace_collection.py b/src/oci/log_analytics/models/namespace_collection.py index 6578bfa1fe..8cfe347cb6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/namespace_summary.py b/src/oci/log_analytics/models/namespace_summary.py index d4df97d72a..3bca902127 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/nlp_command_descriptor.py b/src/oci/log_analytics/models/nlp_command_descriptor.py index e5b6bea977..d7d9acf245 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/outlier_command_descriptor.py b/src/oci/log_analytics/models/outlier_command_descriptor.py index ddf3e918ae..bc3ba08b27 100644 --- a/src/oci/log_analytics/models/outlier_command_descriptor.py +++ b/src/oci/log_analytics/models/outlier_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/overlapping_recall_collection.py b/src/oci/log_analytics/models/overlapping_recall_collection.py index d094a56a60..48845b28fc 100644 --- a/src/oci/log_analytics/models/overlapping_recall_collection.py +++ b/src/oci/log_analytics/models/overlapping_recall_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/overlapping_recall_summary.py b/src/oci/log_analytics/models/overlapping_recall_summary.py index d51de68d12..475da05324 100644 --- a/src/oci/log_analytics/models/overlapping_recall_summary.py +++ b/src/oci/log_analytics/models/overlapping_recall_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/parse_query_details.py b/src/oci/log_analytics/models/parse_query_details.py index fecdd69354..2c1d46775b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/parse_query_output.py b/src/oci/log_analytics/models/parse_query_output.py index 4c1c85ddc0..7c972602e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/parsed_content.py b/src/oci/log_analytics/models/parsed_content.py index a652b7da5b..790dae62e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/parsed_field.py b/src/oci/log_analytics/models/parsed_field.py index 86119a6cca..df846bb98d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/parser_summary_report.py b/src/oci/log_analytics/models/parser_summary_report.py index a4a11f6faf..ab2de9a3c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/parser_test_result.py b/src/oci/log_analytics/models/parser_test_result.py index af09c09cde..a88658e912 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/pattern_override.py b/src/oci/log_analytics/models/pattern_override.py index a100c56d31..5b0b5f3276 100644 --- a/src/oci/log_analytics/models/pattern_override.py +++ b/src/oci/log_analytics/models/pattern_override.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/property_metadata_summary.py b/src/oci/log_analytics/models/property_metadata_summary.py index 424f958b6d..b5d5419416 100644 --- a/src/oci/log_analytics/models/property_metadata_summary.py +++ b/src/oci/log_analytics/models/property_metadata_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/property_metadata_summary_collection.py b/src/oci/log_analytics/models/property_metadata_summary_collection.py index 9a58f12302..a17c60cb5f 100644 --- a/src/oci/log_analytics/models/property_metadata_summary_collection.py +++ b/src/oci/log_analytics/models/property_metadata_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/property_override.py b/src/oci/log_analytics/models/property_override.py index 65a394035d..0d2b3e5f80 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/purge_action.py b/src/oci/log_analytics/models/purge_action.py index df03cca33b..724e328a6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 73e654f804..29ec56c7bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/query_aggregation.py b/src/oci/log_analytics/models/query_aggregation.py index 77288591e8..28d5f68737 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/query_details.py b/src/oci/log_analytics/models/query_details.py index ba24fb5ad4..b91ffca9e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/query_work_request.py b/src/oci/log_analytics/models/query_work_request.py index 4c56cc3fd0..e906c2ea0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 e65e0bc320..8e3f717f5c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 199ea1eba9..82c219fa79 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/rare_command_descriptor.py b/src/oci/log_analytics/models/rare_command_descriptor.py index a00ea2657a..b6e6415a1c 100644 --- a/src/oci/log_analytics/models/rare_command_descriptor.py +++ b/src/oci/log_analytics/models/rare_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 9442d69547..2135cc8dfc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/recall_count.py b/src/oci/log_analytics/models/recall_count.py index 4bc9342180..c375b1010a 100644 --- a/src/oci/log_analytics/models/recall_count.py +++ b/src/oci/log_analytics/models/recall_count.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/recalled_data.py b/src/oci/log_analytics/models/recalled_data.py index 03d69ce9f8..c8ee6fa11e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/recalled_data_collection.py b/src/oci/log_analytics/models/recalled_data_collection.py index 7b484f2864..2ffc544219 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/recalled_data_info.py b/src/oci/log_analytics/models/recalled_data_info.py index 3e2cf69e7a..b6ef5ea34f 100644 --- a/src/oci/log_analytics/models/recalled_data_info.py +++ b/src/oci/log_analytics/models/recalled_data_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/recalled_data_size.py b/src/oci/log_analytics/models/recalled_data_size.py index 5dd0c292d7..8d18d4594c 100644 --- a/src/oci/log_analytics/models/recalled_data_size.py +++ b/src/oci/log_analytics/models/recalled_data_size.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/regex_command_descriptor.py b/src/oci/log_analytics/models/regex_command_descriptor.py index dd58b531d5..eaf20562d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/regex_match_result.py b/src/oci/log_analytics/models/regex_match_result.py index 54f0d8fb50..50b7f585a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 84b72125a5..d195e2960a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 0fef8c0bdc..8ae4b50e71 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/rename_command_descriptor.py b/src/oci/log_analytics/models/rename_command_descriptor.py index c0ce43e8a1..8bcf6a1fe0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/result_column.py b/src/oci/log_analytics/models/result_column.py index 34e1defa73..0c76dbc99e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/rule.py b/src/oci/log_analytics/models/rule.py index afb148ff69..28891b15bf 100644 --- a/src/oci/log_analytics/models/rule.py +++ b/src/oci/log_analytics/models/rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/rule_summary.py b/src/oci/log_analytics/models/rule_summary.py index 6865a982e5..2e29409717 100644 --- a/src/oci/log_analytics/models/rule_summary.py +++ b/src/oci/log_analytics/models/rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/rule_summary_collection.py b/src/oci/log_analytics/models/rule_summary_collection.py index 5bb81ebf20..5ec7f5dcb6 100644 --- a/src/oci/log_analytics/models/rule_summary_collection.py +++ b/src/oci/log_analytics/models/rule_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/rule_summary_report.py b/src/oci/log_analytics/models/rule_summary_report.py index 7f70ac5535..a592ef9619 100644 --- a/src/oci/log_analytics/models/rule_summary_report.py +++ b/src/oci/log_analytics/models/rule_summary_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/schedule.py b/src/oci/log_analytics/models/schedule.py index 6a22e01e62..feae5a97e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/scheduled_task.py b/src/oci/log_analytics/models/scheduled_task.py index 9c51d069c2..54e67a60bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/scheduled_task_collection.py b/src/oci/log_analytics/models/scheduled_task_collection.py index 42d7b4eda5..d2ae56d5ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/scheduled_task_summary.py b/src/oci/log_analytics/models/scheduled_task_summary.py index e9f747625d..4aec6b5f46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/scheduler_resource.py b/src/oci/log_analytics/models/scheduler_resource.py index 9e4e613427..4b352fa13f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/scope_filter.py b/src/oci/log_analytics/models/scope_filter.py index 872f1cb68b..59f008f8c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/search_command_descriptor.py b/src/oci/log_analytics/models/search_command_descriptor.py index 2852770a40..8dde41a4fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 6324218b81..f1c6378add 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/sequence_command_descriptor.py b/src/oci/log_analytics/models/sequence_command_descriptor.py index 055a5161f5..b69cf38080 100644 --- a/src/oci/log_analytics/models/sequence_command_descriptor.py +++ b/src/oci/log_analytics/models/sequence_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/sort_command_descriptor.py b/src/oci/log_analytics/models/sort_command_descriptor.py index 5c742b8140..ec53ad8edc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/sort_field.py b/src/oci/log_analytics/models/sort_field.py index 5e15420995..9d05f33f96 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/source_mapping_response.py b/src/oci/log_analytics/models/source_mapping_response.py index e8459b5e4c..1fb034ec66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/source_summary_report.py b/src/oci/log_analytics/models/source_summary_report.py index 93473ddf9c..e8d765147e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/source_validate_details.py b/src/oci/log_analytics/models/source_validate_details.py index a212f283e4..e986cf460c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/source_validate_results.py b/src/oci/log_analytics/models/source_validate_results.py index 756eff3ee0..b026423032 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/standard_task.py b/src/oci/log_analytics/models/standard_task.py index 52cdb8d611..a11318c13d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/stats_command_descriptor.py b/src/oci/log_analytics/models/stats_command_descriptor.py index f20e7b458d..0922012bb3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/status_summary.py b/src/oci/log_analytics/models/status_summary.py index e74188696d..1744a056bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/step_info.py b/src/oci/log_analytics/models/step_info.py index 02e263165a..5775de1537 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/storage.py b/src/oci/log_analytics/models/storage.py index de657fae90..decda7da23 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/storage_usage.py b/src/oci/log_analytics/models/storage_usage.py index b8da983b2f..60457252fc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/storage_work_request.py b/src/oci/log_analytics/models/storage_work_request.py index 92d07ef537..ea8f268aa4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 e758fdae50..610d5c7ecb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 94fcb0956e..51d0ef47d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/stream_action.py b/src/oci/log_analytics/models/stream_action.py index e1d6b02c69..847412f254 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/success.py b/src/oci/log_analytics/models/success.py index dd357da829..538ef34ec5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/suggest_details.py b/src/oci/log_analytics/models/suggest_details.py index 81fecd15ee..0c8c20b644 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/suggest_output.py b/src/oci/log_analytics/models/suggest_output.py index fd2ff28fb7..f7b7cb994d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/table_column.py b/src/oci/log_analytics/models/table_column.py index 5a48b0a8eb..8b3011472c 100644 --- a/src/oci/log_analytics/models/table_column.py +++ b/src/oci/log_analytics/models/table_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/tail_command_descriptor.py b/src/oci/log_analytics/models/tail_command_descriptor.py index 674f2b57f3..973d012278 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 7aff18e384..0af74d1e11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/time_cluster_column.py b/src/oci/log_analytics/models/time_cluster_column.py index f2c8872a8f..d2d8275a2e 100644 --- a/src/oci/log_analytics/models/time_cluster_column.py +++ b/src/oci/log_analytics/models/time_cluster_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/time_cluster_command_descriptor.py b/src/oci/log_analytics/models/time_cluster_command_descriptor.py index 7fb162bf38..ab2627fa43 100644 --- a/src/oci/log_analytics/models/time_cluster_command_descriptor.py +++ b/src/oci/log_analytics/models/time_cluster_command_descriptor.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/time_cluster_data_column.py b/src/oci/log_analytics/models/time_cluster_data_column.py index 59cb728aaa..c47968b033 100644 --- a/src/oci/log_analytics/models/time_cluster_data_column.py +++ b/src/oci/log_analytics/models/time_cluster_data_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/time_column.py b/src/oci/log_analytics/models/time_column.py index 755eaf12ff..ee185d0b09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 31396b0a90..7626115f37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/time_range.py b/src/oci/log_analytics/models/time_range.py index bd9de8d1d2..7f3c6aff36 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/time_stats_cluster.py b/src/oci/log_analytics/models/time_stats_cluster.py index 5bd027baff..72264ea9fa 100644 --- a/src/oci/log_analytics/models/time_stats_cluster.py +++ b/src/oci/log_analytics/models/time_stats_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/time_stats_column.py b/src/oci/log_analytics/models/time_stats_column.py index 0ac52319f2..6a7e84c695 100644 --- a/src/oci/log_analytics/models/time_stats_column.py +++ b/src/oci/log_analytics/models/time_stats_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 e31ea62ccf..0403b048be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/time_stats_data_column.py b/src/oci/log_analytics/models/time_stats_data_column.py index 9753b74a6c..8e8c6b17cb 100644 --- a/src/oci/log_analytics/models/time_stats_data_column.py +++ b/src/oci/log_analytics/models/time_stats_data_column.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/timezone_collection.py b/src/oci/log_analytics/models/timezone_collection.py index 61a69a545a..ffb7dcdac1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/top_command_descriptor.py b/src/oci/log_analytics/models/top_command_descriptor.py index f5cc48f583..3b4c07c72f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/trend_column.py b/src/oci/log_analytics/models/trend_column.py index de0b9f5720..7537b02006 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 a4b261cd23..a23b669fdb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/unprocessed_data_bucket.py b/src/oci/log_analytics/models/unprocessed_data_bucket.py index 8a9b7dfa63..0edf2e8eb2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 1c0d98a939..bbea9cbdb1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 1f68733043..c5c5465315 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 1c737c1f32..5c0648cd2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 d0e510b03b..437adc1feb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 a7321fc79f..bd2c3dde96 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 06b790abd4..887825e493 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5b2980fc90..cb339f72f3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 2e40f7c853..745deffdab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/update_storage_details.py b/src/oci/log_analytics/models/update_storage_details.py index 7e854601a5..8f35e3942c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/upload.py b/src/oci/log_analytics/models/upload.py index eeeb420849..cf98170afb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/upload_collection.py b/src/oci/log_analytics/models/upload_collection.py index c5f97cbfc5..80ebfea535 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/upload_file_collection.py b/src/oci/log_analytics/models/upload_file_collection.py index 033b17f02b..480a9fdce1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/upload_file_status.py b/src/oci/log_analytics/models/upload_file_status.py index 01a5dcff48..b23750ff54 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/upload_file_summary.py b/src/oci/log_analytics/models/upload_file_summary.py index 8f24ec48d4..6dbc79f62f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/upload_summary.py b/src/oci/log_analytics/models/upload_summary.py index f821a68055..37dc855bb1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/upload_warning_collection.py b/src/oci/log_analytics/models/upload_warning_collection.py index 028e95ca43..4835d58d2b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/upload_warning_summary.py b/src/oci/log_analytics/models/upload_warning_summary.py index 02488372f4..dda568d11d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 5c7dc4789a..2a078c863d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 cd73c585f4..890a277b3f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 d35d9b0d41..a3ffd05045 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 c4d5406dc7..ce74a1cc26 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 bd2589404b..2ea231ed19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 2370ab7004..295dc199cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/usage_status_item.py b/src/oci/log_analytics/models/usage_status_item.py index bc7aba170c..a322c901c2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/validate_endpoint_result.py b/src/oci/log_analytics/models/validate_endpoint_result.py index 6c76aaa7e0..65876217f6 100644 --- a/src/oci/log_analytics/models/validate_endpoint_result.py +++ b/src/oci/log_analytics/models/validate_endpoint_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/validate_label_condition_details.py b/src/oci/log_analytics/models/validate_label_condition_details.py index cf2f1df5c3..55bfaea961 100644 --- a/src/oci/log_analytics/models/validate_label_condition_details.py +++ b/src/oci/log_analytics/models/validate_label_condition_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/validate_label_condition_result.py b/src/oci/log_analytics/models/validate_label_condition_result.py index 8705b5c64f..514fdb9821 100644 --- a/src/oci/log_analytics/models/validate_label_condition_result.py +++ b/src/oci/log_analytics/models/validate_label_condition_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/verify_output.py b/src/oci/log_analytics/models/verify_output.py index 01e16e72a5..d4be377700 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/violation.py b/src/oci/log_analytics/models/violation.py index 4174361a33..0a48d02cb2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/warning_reference_details.py b/src/oci/log_analytics/models/warning_reference_details.py index 15906ac87e..8e2d8f68e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/where_command_descriptor.py b/src/oci/log_analytics/models/where_command_descriptor.py index 5cf5b70c1d..91f8b58824 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/work_request.py b/src/oci/log_analytics/models/work_request.py index e9d70d1087..33172461e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/work_request_collection.py b/src/oci/log_analytics/models/work_request_collection.py index 9df41078e1..7e74eaef7e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/work_request_error.py b/src/oci/log_analytics/models/work_request_error.py index 8d2afde2d3..75fbbfcda4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 7b7d62aa18..c7bcb24b24 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/work_request_log.py b/src/oci/log_analytics/models/work_request_log.py index 19fa696e53..e0d4bfb3e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 4a1de528ed..a52e5472f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/work_request_resource.py b/src/oci/log_analytics/models/work_request_resource.py index d4a7917158..9421e42254 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/log_analytics/models/work_request_summary.py b/src/oci/log_analytics/models/work_request_summary.py index 475874f39b..a63106358d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 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 bdafb4c8b6..88611077d1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200601 diff --git a/src/oci/logging/__init__.py b/src/oci/logging/__init__.py index 8ff572f2f0..352dc8f950 100644 --- a/src/oci/logging/__init__.py +++ b/src/oci/logging/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/logging_management_client.py b/src/oci/logging/logging_management_client.py index 268c583eac..9cc7a9d2ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/logging_management_client_composite_operations.py b/src/oci/logging/logging_management_client_composite_operations.py index 79066cc3e7..f651d086e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/__init__.py b/src/oci/logging/models/__init__.py index f419eb370b..c13e11b37a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/archiving.py b/src/oci/logging/models/archiving.py index 69f591f00a..def2c4104f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/category.py b/src/oci/logging/models/category.py index 441d7470b2..9c6e7861f3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 029a1b5b6a..5f96e5d57c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 9802bec5fe..73c4a4de1c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 b9f4cb5ccb..f1987e2e4e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 74ace79321..8d4b59c16c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/configuration.py b/src/oci/logging/models/configuration.py index c40781cfdb..8fcf8b8b19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/create_log_details.py b/src/oci/logging/models/create_log_details.py index 5e5ae929b9..2b1422764f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/create_log_group_details.py b/src/oci/logging/models/create_log_group_details.py index 1a4a845177..1b9a948cad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 aa6fbde234..4ca9165dde 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 7e3be3dd4e..bafe23bf90 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/grep_filter_allow_rule.py b/src/oci/logging/models/grep_filter_allow_rule.py index 66ba1b7311..85367ea54a 100644 --- a/src/oci/logging/models/grep_filter_allow_rule.py +++ b/src/oci/logging/models/grep_filter_allow_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/grep_filter_deny_rule.py b/src/oci/logging/models/grep_filter_deny_rule.py index 4961da30b7..c528f1f679 100644 --- a/src/oci/logging/models/grep_filter_deny_rule.py +++ b/src/oci/logging/models/grep_filter_deny_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/grok_pattern.py b/src/oci/logging/models/grok_pattern.py index 8e7686c187..a1e4cc941c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/group_association_details.py b/src/oci/logging/models/group_association_details.py index ea719e31b2..ac81aa8a41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/log.py b/src/oci/logging/models/log.py index faea7f5893..b05dc95df1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/log_group.py b/src/oci/logging/models/log_group.py index 3d972dc23f..7f29c235a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/log_group_summary.py b/src/oci/logging/models/log_group_summary.py index 12fe94db7e..663464e577 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/log_saved_search.py b/src/oci/logging/models/log_saved_search.py index dc450d7710..1d283cbb86 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/log_saved_search_summary.py b/src/oci/logging/models/log_saved_search_summary.py index 1cdabfd7a9..40d721053e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 370171159c..9358dff39a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/log_summary.py b/src/oci/logging/models/log_summary.py index 6713a6b14f..18225e213e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/oci_service.py b/src/oci/logging/models/oci_service.py index 0e7754cff3..c9cdc20be6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/operational_metrics_configuration.py b/src/oci/logging/models/operational_metrics_configuration.py index 1bcb7e2ea6..5dfc6a4533 100644 --- a/src/oci/logging/models/operational_metrics_configuration.py +++ b/src/oci/logging/models/operational_metrics_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/operational_metrics_destination.py b/src/oci/logging/models/operational_metrics_destination.py index 5e80a89283..43825bb9ee 100644 --- a/src/oci/logging/models/operational_metrics_destination.py +++ b/src/oci/logging/models/operational_metrics_destination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/operational_metrics_record_input.py b/src/oci/logging/models/operational_metrics_record_input.py index acf4d1d29a..188dbe4d64 100644 --- a/src/oci/logging/models/operational_metrics_record_input.py +++ b/src/oci/logging/models/operational_metrics_record_input.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/operational_metrics_source.py b/src/oci/logging/models/operational_metrics_source.py index 2262866349..caf60bfc93 100644 --- a/src/oci/logging/models/operational_metrics_source.py +++ b/src/oci/logging/models/operational_metrics_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/parameter.py b/src/oci/logging/models/parameter.py index 7802c06c4f..dc60f8057f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/record_transformer_pair.py b/src/oci/logging/models/record_transformer_pair.py index 1ad029a5cb..a4680e87ff 100644 --- a/src/oci/logging/models/record_transformer_pair.py +++ b/src/oci/logging/models/record_transformer_pair.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/resource_type.py b/src/oci/logging/models/resource_type.py index eaa5fb9caa..3bcc245019 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/service_summary.py b/src/oci/logging/models/service_summary.py index 1c8cef8671..6299ddbe93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/source.py b/src/oci/logging/models/source.py index f81ce430c6..a2c71cbf3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/source_update_details.py b/src/oci/logging/models/source_update_details.py index 3f5e3b71c1..b3236962a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_apache2_parser.py b/src/oci/logging/models/unified_agent_apache2_parser.py index 3bc70830eb..c291c826b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 d8fc7b614e..95f5f62415 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_auditd_parser.py b/src/oci/logging/models/unified_agent_auditd_parser.py index 739b110787..30c5f2baa5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_configuration.py b/src/oci/logging/models/unified_agent_configuration.py index 1524b54044..80e2007bab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_configuration_collection.py b/src/oci/logging/models/unified_agent_configuration_collection.py index 2dffa15ee5..a8ab7380f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_configuration_summary.py b/src/oci/logging/models/unified_agent_configuration_summary.py index e299b0a2c6..5896bb7da1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_cri_parser.py b/src/oci/logging/models/unified_agent_cri_parser.py index a5843c8c93..166f1846ff 100644 --- a/src/oci/logging/models/unified_agent_cri_parser.py +++ b/src/oci/logging/models/unified_agent_cri_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_csv_parser.py b/src/oci/logging/models/unified_agent_csv_parser.py index fe0b8a330a..0bd264a2a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_custom_filter.py b/src/oci/logging/models/unified_agent_custom_filter.py index 4b9b4a8be7..88484b9add 100644 --- a/src/oci/logging/models/unified_agent_custom_filter.py +++ b/src/oci/logging/models/unified_agent_custom_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_custom_plugin_log_source.py b/src/oci/logging/models/unified_agent_custom_plugin_log_source.py index fd57249b62..f323491b1d 100644 --- a/src/oci/logging/models/unified_agent_custom_plugin_log_source.py +++ b/src/oci/logging/models/unified_agent_custom_plugin_log_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_custom_section.py b/src/oci/logging/models/unified_agent_custom_section.py index ac44f72cc4..bdba7e526c 100644 --- a/src/oci/logging/models/unified_agent_custom_section.py +++ b/src/oci/logging/models/unified_agent_custom_section.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_grok_parser.py b/src/oci/logging/models/unified_agent_grok_parser.py index f6e5c49143..c5e43c3e79 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_kubernetes_configuration_details.py b/src/oci/logging/models/unified_agent_kubernetes_configuration_details.py index 692b71b90b..2b42b5fbe2 100644 --- a/src/oci/logging/models/unified_agent_kubernetes_configuration_details.py +++ b/src/oci/logging/models/unified_agent_kubernetes_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_kubernetes_filter.py b/src/oci/logging/models/unified_agent_kubernetes_filter.py index d035581623..29fda9d28a 100644 --- a/src/oci/logging/models/unified_agent_kubernetes_filter.py +++ b/src/oci/logging/models/unified_agent_kubernetes_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_kubernetes_scrape_target.py b/src/oci/logging/models/unified_agent_kubernetes_scrape_target.py index d531edbe2a..d7155cde26 100644 --- a/src/oci/logging/models/unified_agent_kubernetes_scrape_target.py +++ b/src/oci/logging/models/unified_agent_kubernetes_scrape_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_kubernetes_source.py b/src/oci/logging/models/unified_agent_kubernetes_source.py index 5efb1b8bf1..9f8c65f84f 100644 --- a/src/oci/logging/models/unified_agent_kubernetes_source.py +++ b/src/oci/logging/models/unified_agent_kubernetes_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_logging_configuration.py b/src/oci/logging/models/unified_agent_logging_configuration.py index dd457b04bd..2e072c6c20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_logging_destination.py b/src/oci/logging/models/unified_agent_logging_destination.py index 0586ad0a6e..33faf10a39 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_logging_filter.py b/src/oci/logging/models/unified_agent_logging_filter.py index 949c46d69e..7e2b7725ff 100644 --- a/src/oci/logging/models/unified_agent_logging_filter.py +++ b/src/oci/logging/models/unified_agent_logging_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_logging_grep_filter.py b/src/oci/logging/models/unified_agent_logging_grep_filter.py index 05d6cc8826..6706b15150 100644 --- a/src/oci/logging/models/unified_agent_logging_grep_filter.py +++ b/src/oci/logging/models/unified_agent_logging_grep_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_logging_record_transformer_filter.py b/src/oci/logging/models/unified_agent_logging_record_transformer_filter.py index 7a27e12897..16cfd179bb 100644 --- a/src/oci/logging/models/unified_agent_logging_record_transformer_filter.py +++ b/src/oci/logging/models/unified_agent_logging_record_transformer_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_logging_source.py b/src/oci/logging/models/unified_agent_logging_source.py index 2c79478508..fe7f0382b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_monitoring_application_configuration_details.py b/src/oci/logging/models/unified_agent_monitoring_application_configuration_details.py index 815a76daad..270f78f313 100644 --- a/src/oci/logging/models/unified_agent_monitoring_application_configuration_details.py +++ b/src/oci/logging/models/unified_agent_monitoring_application_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_monitoring_configuration_details.py b/src/oci/logging/models/unified_agent_monitoring_configuration_details.py index f26fb83e82..46e2f5e442 100644 --- a/src/oci/logging/models/unified_agent_monitoring_configuration_details.py +++ b/src/oci/logging/models/unified_agent_monitoring_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_monitoring_destination.py b/src/oci/logging/models/unified_agent_monitoring_destination.py index ec007fbd15..18b93988e7 100644 --- a/src/oci/logging/models/unified_agent_monitoring_destination.py +++ b/src/oci/logging/models/unified_agent_monitoring_destination.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_monitoring_filter.py b/src/oci/logging/models/unified_agent_monitoring_filter.py index 37f8704ef3..1708550646 100644 --- a/src/oci/logging/models/unified_agent_monitoring_filter.py +++ b/src/oci/logging/models/unified_agent_monitoring_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_monitoring_url_source.py b/src/oci/logging/models/unified_agent_monitoring_url_source.py index a6b65c8316..b95fe45dad 100644 --- a/src/oci/logging/models/unified_agent_monitoring_url_source.py +++ b/src/oci/logging/models/unified_agent_monitoring_url_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_msgpack_parser.py b/src/oci/logging/models/unified_agent_msgpack_parser.py index 309b012d77..75c0adfe7f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 16afe0aada..61850374be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_multiline_parser.py b/src/oci/logging/models/unified_agent_multiline_parser.py index 87aebcedb2..08d4bd6954 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_none_parser.py b/src/oci/logging/models/unified_agent_none_parser.py index d5c5566318..a6639bd555 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_openmetrics_parser.py b/src/oci/logging/models/unified_agent_openmetrics_parser.py index 0d193ac9ff..5639d72795 100644 --- a/src/oci/logging/models/unified_agent_openmetrics_parser.py +++ b/src/oci/logging/models/unified_agent_openmetrics_parser.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_openmetrics_parser_record.py b/src/oci/logging/models/unified_agent_openmetrics_parser_record.py index de2b76b772..5cbe7ceefb 100644 --- a/src/oci/logging/models/unified_agent_openmetrics_parser_record.py +++ b/src/oci/logging/models/unified_agent_openmetrics_parser_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_openmetrics_tail_configuration_details.py b/src/oci/logging/models/unified_agent_openmetrics_tail_configuration_details.py index db15dead1f..0b0b1fa2c7 100644 --- a/src/oci/logging/models/unified_agent_openmetrics_tail_configuration_details.py +++ b/src/oci/logging/models/unified_agent_openmetrics_tail_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_parser.py b/src/oci/logging/models/unified_agent_parser.py index c3f0f9dca3..85662ad5c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_parser_filter.py b/src/oci/logging/models/unified_agent_parser_filter.py index 52d8f854be..120d37872c 100644 --- a/src/oci/logging/models/unified_agent_parser_filter.py +++ b/src/oci/logging/models/unified_agent_parser_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_regex_parser.py b/src/oci/logging/models/unified_agent_regex_parser.py index 5db7895ce4..8970fb3cc5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 732686c059..e6dde4c451 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_syslog_parser.py b/src/oci/logging/models/unified_agent_syslog_parser.py index 6262c0bf9c..47dfdccfc9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 d03fb7e538..1c7b53f9d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_tail_source_advanced_options.py b/src/oci/logging/models/unified_agent_tail_source_advanced_options.py index 4611254e0d..3a091f0254 100644 --- a/src/oci/logging/models/unified_agent_tail_source_advanced_options.py +++ b/src/oci/logging/models/unified_agent_tail_source_advanced_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_tsv_parser.py b/src/oci/logging/models/unified_agent_tsv_parser.py index a7631b5641..054ba5c1d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_url_configuration_details.py b/src/oci/logging/models/unified_agent_url_configuration_details.py index df7ca194fe..600ea290cd 100644 --- a/src/oci/logging/models/unified_agent_url_configuration_details.py +++ b/src/oci/logging/models/unified_agent_url_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_url_filter.py b/src/oci/logging/models/unified_agent_url_filter.py index d9d325c655..59762ae20e 100644 --- a/src/oci/logging/models/unified_agent_url_filter.py +++ b/src/oci/logging/models/unified_agent_url_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_agent_url_scrape_target.py b/src/oci/logging/models/unified_agent_url_scrape_target.py index 097e7737de..36b78b73ca 100644 --- a/src/oci/logging/models/unified_agent_url_scrape_target.py +++ b/src/oci/logging/models/unified_agent_url_scrape_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 0544017dd1..b73a9bf339 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/unified_json_parser.py b/src/oci/logging/models/unified_json_parser.py index 7d5ffa0870..4ca19a1ada 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/update_configuration_details.py b/src/oci/logging/models/update_configuration_details.py index 29a91730f1..8529a36034 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/update_log_details.py b/src/oci/logging/models/update_log_details.py index ed643c5bc2..61c49eadc1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/update_log_group_details.py b/src/oci/logging/models/update_log_group_details.py index fd8b5b3907..d57a03dcad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 8b461950cc..4d1ac4aeae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 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 37ff51329b..9d9f861773 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/work_request.py b/src/oci/logging/models/work_request.py index c54051df84..a192b193d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/work_request_error.py b/src/oci/logging/models/work_request_error.py index 77fd952236..27320681ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/work_request_log.py b/src/oci/logging/models/work_request_log.py index e9e005b42b..a8cc9bcf56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/work_request_resource.py b/src/oci/logging/models/work_request_resource.py index 4073fbbc52..be1cfeae5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/logging/models/work_request_summary.py b/src/oci/logging/models/work_request_summary.py index fbe39f5f83..6a927a1c08 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200531 diff --git a/src/oci/loggingingestion/__init__.py b/src/oci/loggingingestion/__init__.py index f982577725..ce0c61cb7e 100644 --- a/src/oci/loggingingestion/__init__.py +++ b/src/oci/loggingingestion/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200831 diff --git a/src/oci/loggingingestion/logging_client.py b/src/oci/loggingingestion/logging_client.py index 4ea4fcdfdb..87c3f6f0b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200831 diff --git a/src/oci/loggingingestion/logging_client_composite_operations.py b/src/oci/loggingingestion/logging_client_composite_operations.py index 98ee058ab4..58900e7f0b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200831 diff --git a/src/oci/loggingingestion/models/__init__.py b/src/oci/loggingingestion/models/__init__.py index 14e484e343..e0d336498b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200831 diff --git a/src/oci/loggingingestion/models/log_entry.py b/src/oci/loggingingestion/models/log_entry.py index 181b8b9866..3557319cc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200831 diff --git a/src/oci/loggingingestion/models/log_entry_batch.py b/src/oci/loggingingestion/models/log_entry_batch.py index 038785680e..ed15e6d163 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200831 diff --git a/src/oci/loggingingestion/models/put_logs_details.py b/src/oci/loggingingestion/models/put_logs_details.py index 22effe67b8..ccb83d58a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200831 diff --git a/src/oci/loggingsearch/__init__.py b/src/oci/loggingsearch/__init__.py index 977c620958..a91c77044b 100644 --- a/src/oci/loggingsearch/__init__.py +++ b/src/oci/loggingsearch/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190909 diff --git a/src/oci/loggingsearch/log_search_client.py b/src/oci/loggingsearch/log_search_client.py index f484ebd1a5..bbe84b87e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190909 diff --git a/src/oci/loggingsearch/log_search_client_composite_operations.py b/src/oci/loggingsearch/log_search_client_composite_operations.py index d385fddc46..7a067457ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190909 diff --git a/src/oci/loggingsearch/models/__init__.py b/src/oci/loggingsearch/models/__init__.py index 805aaca1b9..413cd7a180 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190909 diff --git a/src/oci/loggingsearch/models/field_info.py b/src/oci/loggingsearch/models/field_info.py index af8a2d26e3..1f048472c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190909 diff --git a/src/oci/loggingsearch/models/search_logs_details.py b/src/oci/loggingsearch/models/search_logs_details.py index afc29be2ec..1f55d64d56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190909 diff --git a/src/oci/loggingsearch/models/search_response.py b/src/oci/loggingsearch/models/search_response.py index 469b3eb9ce..42fafb52c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190909 diff --git a/src/oci/loggingsearch/models/search_result.py b/src/oci/loggingsearch/models/search_result.py index 4d1eb70785..c9d1517f0a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190909 diff --git a/src/oci/loggingsearch/models/search_result_summary.py b/src/oci/loggingsearch/models/search_result_summary.py index 0447650181..08a4e04215 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190909 diff --git a/src/oci/management_agent/__init__.py b/src/oci/management_agent/__init__.py index 9416f9137e..201b6cd909 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/management_agent_client.py b/src/oci/management_agent/management_agent_client.py index 259e5b0a0e..fac1c44a0e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 f4e4a19254..e06c667a2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/__init__.py b/src/oci/management_agent/models/__init__.py index 6f09aef236..26c192bf79 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/auto_upgradable_config.py b/src/oci/management_agent/models/auto_upgradable_config.py index b9afccef7f..58b30b8bfa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/availability_history_summary.py b/src/oci/management_agent/models/availability_history_summary.py index 1acc94e318..482a7f439a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/create_data_source_details.py b/src/oci/management_agent/models/create_data_source_details.py index 00397432d9..0857579ec2 100644 --- a/src/oci/management_agent/models/create_data_source_details.py +++ b/src/oci/management_agent/models/create_data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 059e801899..bb733b9bb9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/create_prometheus_emitter_data_source_details.py b/src/oci/management_agent/models/create_prometheus_emitter_data_source_details.py index 4b161058c3..8e8d2654c3 100644 --- a/src/oci/management_agent/models/create_prometheus_emitter_data_source_details.py +++ b/src/oci/management_agent/models/create_prometheus_emitter_data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/data_source.py b/src/oci/management_agent/models/data_source.py index a02f70b3eb..580acb3b88 100644 --- a/src/oci/management_agent/models/data_source.py +++ b/src/oci/management_agent/models/data_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/data_source_summary.py b/src/oci/management_agent/models/data_source_summary.py index 81218f0f63..7496e4812e 100644 --- a/src/oci/management_agent/models/data_source_summary.py +++ b/src/oci/management_agent/models/data_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/data_source_summary_item.py b/src/oci/management_agent/models/data_source_summary_item.py index 6bf09896f6..b8018c0696 100644 --- a/src/oci/management_agent/models/data_source_summary_item.py +++ b/src/oci/management_agent/models/data_source_summary_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/deploy_plugins_details.py b/src/oci/management_agent/models/deploy_plugins_details.py index fa3183b7be..0f25c6c021 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/kubernetes_cluster_data_source.py b/src/oci/management_agent/models/kubernetes_cluster_data_source.py index 8999acf48d..12e14a593c 100644 --- a/src/oci/management_agent/models/kubernetes_cluster_data_source.py +++ b/src/oci/management_agent/models/kubernetes_cluster_data_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/kubernetes_cluster_data_source_summary.py b/src/oci/management_agent/models/kubernetes_cluster_data_source_summary.py index e72267a76b..69b4a23263 100644 --- a/src/oci/management_agent/models/kubernetes_cluster_data_source_summary.py +++ b/src/oci/management_agent/models/kubernetes_cluster_data_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/kubernetes_cluster_data_source_summary_item.py b/src/oci/management_agent/models/kubernetes_cluster_data_source_summary_item.py index bc414aa9bf..7484213d31 100644 --- a/src/oci/management_agent/models/kubernetes_cluster_data_source_summary_item.py +++ b/src/oci/management_agent/models/kubernetes_cluster_data_source_summary_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/management_agent.py b/src/oci/management_agent/models/management_agent.py index c896bdf80f..4438bbcc5f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/management_agent_aggregation.py b/src/oci/management_agent/models/management_agent_aggregation.py index 70f789e6da..d3ee3c03ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 52a24599f0..7f854e5117 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 60f55c9396..44f1eb6e15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/management_agent_error.py b/src/oci/management_agent/models/management_agent_error.py index 331bc35873..ecef61d8c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/management_agent_image.py b/src/oci/management_agent/models/management_agent_image.py index dacf3acfde..2d56b3560c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 8e5061b65d..110831db95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 ba2a37c85f..061ad206ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 ef0a0bceaf..a6b3ff2ecc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/management_agent_plugin.py b/src/oci/management_agent/models/management_agent_plugin.py index d6adef074c..a15554c28b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 feb610f96f..ed89b5b547 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 d44d5b52d5..85e8557633 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 dd073e43a9..7fcc874000 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 08e4335f3a..99fa13ce40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 02465ee754..ba9b321fe4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/management_agent_property.py b/src/oci/management_agent/models/management_agent_property.py index a4d1697519..c3eba62b1b 100644 --- a/src/oci/management_agent/models/management_agent_property.py +++ b/src/oci/management_agent/models/management_agent_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/management_agent_summary.py b/src/oci/management_agent/models/management_agent_summary.py index a5d9e8e34e..ef145a8ae8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/metric_dimension.py b/src/oci/management_agent/models/metric_dimension.py index c044a16549..dfa1901fcd 100644 --- a/src/oci/management_agent/models/metric_dimension.py +++ b/src/oci/management_agent/models/metric_dimension.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/object_details.py b/src/oci/management_agent/models/object_details.py index 1b0fc7a1a0..8387eed664 100644 --- a/src/oci/management_agent/models/object_details.py +++ b/src/oci/management_agent/models/object_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/prometheus_emitter_data_source.py b/src/oci/management_agent/models/prometheus_emitter_data_source.py index 48097ebf2b..41c068a0b2 100644 --- a/src/oci/management_agent/models/prometheus_emitter_data_source.py +++ b/src/oci/management_agent/models/prometheus_emitter_data_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/prometheus_emitter_data_source_summary.py b/src/oci/management_agent/models/prometheus_emitter_data_source_summary.py index ce675b432f..37207c36d3 100644 --- a/src/oci/management_agent/models/prometheus_emitter_data_source_summary.py +++ b/src/oci/management_agent/models/prometheus_emitter_data_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/prometheus_emitter_data_source_summary_item.py b/src/oci/management_agent/models/prometheus_emitter_data_source_summary_item.py index 09fdf437ae..99d79dab7e 100644 --- a/src/oci/management_agent/models/prometheus_emitter_data_source_summary_item.py +++ b/src/oci/management_agent/models/prometheus_emitter_data_source_summary_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 8098b96f08..64e055a52f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/update_data_source_details.py b/src/oci/management_agent/models/update_data_source_details.py index 9111b9d8f5..bec18bc0c7 100644 --- a/src/oci/management_agent/models/update_data_source_details.py +++ b/src/oci/management_agent/models/update_data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 e00082ab27..52c7c0ba8a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 7a0c3f6606..415294b101 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/update_prometheus_emitter_data_source_details.py b/src/oci/management_agent/models/update_prometheus_emitter_data_source_details.py index cc1eaa9318..f7921e4969 100644 --- a/src/oci/management_agent/models/update_prometheus_emitter_data_source_details.py +++ b/src/oci/management_agent/models/update_prometheus_emitter_data_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/work_request.py b/src/oci/management_agent/models/work_request.py index e2a4a67201..758b2cb63a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/work_request_error.py b/src/oci/management_agent/models/work_request_error.py index d4ddc4e9f1..32c00ab521 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 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 a523940dc5..5d4ec7dda5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/work_request_resource.py b/src/oci/management_agent/models/work_request_resource.py index 362e5f8ab8..fa87fd53ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/work_request_summary.py b/src/oci/management_agent/models/work_request_summary.py index 385dfcd929..cd294fbb92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_agent/models/work_submission_key.py b/src/oci/management_agent/models/work_submission_key.py index cbf965c002..5cc38a012f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200202 diff --git a/src/oci/management_dashboard/__init__.py b/src/oci/management_dashboard/__init__.py index 02505a019c..695c14a6cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 diff --git a/src/oci/management_dashboard/dashx_apis_client.py b/src/oci/management_dashboard/dashx_apis_client.py index 44cc636ce3..3f90552bac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 d433b3adf6..8e9a6146b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 diff --git a/src/oci/management_dashboard/models/__init__.py b/src/oci/management_dashboard/models/__init__.py index 4dd0f86ce3..1c30bafbf6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 8ea6bf8bcf..189d882df8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 7f7049bb95..3c2a69f73f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 0169172b7e..e91c69ed7e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 5892c7f470..391496c458 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 diff --git a/src/oci/management_dashboard/models/management_dashboard.py b/src/oci/management_dashboard/models/management_dashboard.py index 1f6652ee0e..af2777e0f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 diff --git a/src/oci/management_dashboard/models/management_dashboard_collection.py b/src/oci/management_dashboard/models/management_dashboard_collection.py index 929c9b1736..6f58b78f99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 dcb6f4eeec..c39634bc50 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 2b3932b5d4..49803c122a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 29ec9ee6a1..3af1545f76 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 diff --git a/src/oci/management_dashboard/models/management_dashboard_summary.py b/src/oci/management_dashboard/models/management_dashboard_summary.py index ae051eaecc..10a317cdbd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 f4da1e6086..f76c60d92f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 diff --git a/src/oci/management_dashboard/models/management_saved_search.py b/src/oci/management_dashboard/models/management_saved_search.py index 6d51acca85..e68cb3dadc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 3bcd287d93..a1e3221376 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 436d1dcd13..1f291b363a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 d53d78228a..308b162507 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 8afaf79ebf..8d56d182ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 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 40b3216a6d..eeebc48ec7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200901 diff --git a/src/oci/marketplace/__init__.py b/src/oci/marketplace/__init__.py index 0dd84dbba6..e182359fee 100644 --- a/src/oci/marketplace/__init__.py +++ b/src/oci/marketplace/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/account_client.py b/src/oci/marketplace/account_client.py index e2c0c5de1a..2ecf5223ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/account_client_composite_operations.py b/src/oci/marketplace/account_client_composite_operations.py index 77c9de6729..b1dcdec510 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/marketplace_client.py b/src/oci/marketplace/marketplace_client.py index afc853fe05..9d5eb36d42 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/marketplace_client_composite_operations.py b/src/oci/marketplace/marketplace_client_composite_operations.py index 7dfdb31ee4..76cb04e771 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/__init__.py b/src/oci/marketplace/models/__init__.py index 8e85de37b2..b5f4e66e8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/accepted_agreement.py b/src/oci/marketplace/models/accepted_agreement.py index f07834cb42..1b4bd2a040 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/accepted_agreement_summary.py b/src/oci/marketplace/models/accepted_agreement_summary.py index d6c673b2e3..8397718d22 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/agreement.py b/src/oci/marketplace/models/agreement.py index 00d5d3842c..fb548e768f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/agreement_summary.py b/src/oci/marketplace/models/agreement_summary.py index cbe85df900..eb48bb06da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/category_summary.py b/src/oci/marketplace/models/category_summary.py index 5ce5785691..a88cee7e40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/change_publication_compartment_details.py b/src/oci/marketplace/models/change_publication_compartment_details.py index f871cebb07..188ce2b5c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/container_listing_package.py b/src/oci/marketplace/models/container_listing_package.py index c86ca45b5d..6ac0a5af2c 100644 --- a/src/oci/marketplace/models/container_listing_package.py +++ b/src/oci/marketplace/models/container_listing_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/create_accepted_agreement_details.py b/src/oci/marketplace/models/create_accepted_agreement_details.py index 126fc09628..92d84f0590 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/create_image_publication_package.py b/src/oci/marketplace/models/create_image_publication_package.py index 84c4487568..4374e87086 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/create_publication_details.py b/src/oci/marketplace/models/create_publication_details.py index 858a926918..88ad58f5ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/create_publication_package.py b/src/oci/marketplace/models/create_publication_package.py index dd69fc9258..06d79c4f2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/documentation_link.py b/src/oci/marketplace/models/documentation_link.py index 2986d3bcbb..a6eda6e40f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/error_entity.py b/src/oci/marketplace/models/error_entity.py index 98a395006d..412250cd2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/eula.py b/src/oci/marketplace/models/eula.py index e6bafc7322..3e5be57aa8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/export_package_details.py b/src/oci/marketplace/models/export_package_details.py index 87babb8084..fdcaf4368d 100644 --- a/src/oci/marketplace/models/export_package_details.py +++ b/src/oci/marketplace/models/export_package_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/free_text_search_details.py b/src/oci/marketplace/models/free_text_search_details.py index fc4902c1e9..5f1c578116 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/image_listing_package.py b/src/oci/marketplace/models/image_listing_package.py index 3a0225290c..a2d87923b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/image_publication_package.py b/src/oci/marketplace/models/image_publication_package.py index 2343064515..7accd9553a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/international_market_price.py b/src/oci/marketplace/models/international_market_price.py index 1de4ff7aed..fa2ef78401 100644 --- a/src/oci/marketplace/models/international_market_price.py +++ b/src/oci/marketplace/models/international_market_price.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/item.py b/src/oci/marketplace/models/item.py index 5736ce9577..2bc08288dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/kubernetes_listing_package.py b/src/oci/marketplace/models/kubernetes_listing_package.py index ea07dde0ad..b6d49aad97 100644 --- a/src/oci/marketplace/models/kubernetes_listing_package.py +++ b/src/oci/marketplace/models/kubernetes_listing_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/launch_eligibility.py b/src/oci/marketplace/models/launch_eligibility.py index 26fb604926..26a08da076 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/link.py b/src/oci/marketplace/models/link.py index 070c572fa6..9369e73aa5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/listing.py b/src/oci/marketplace/models/listing.py index fb062fa1f2..8beb6633cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/listing_package.py b/src/oci/marketplace/models/listing_package.py index 8fc7ddf50c..214723562b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/listing_package_summary.py b/src/oci/marketplace/models/listing_package_summary.py index a188a5f2a1..7946b5076d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/listing_summary.py b/src/oci/marketplace/models/listing_summary.py index fd5de6ebde..570cfc8c85 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/named_link.py b/src/oci/marketplace/models/named_link.py index 0388461367..39eb5a5a5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/operating_system.py b/src/oci/marketplace/models/operating_system.py index 884953abfb..fb9c5f4c3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/orchestration_listing_package.py b/src/oci/marketplace/models/orchestration_listing_package.py index 0f8f42ea3c..b795b26718 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/orchestration_publication_package.py b/src/oci/marketplace/models/orchestration_publication_package.py index fd05f6b977..b9399e40f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/orchestration_variable.py b/src/oci/marketplace/models/orchestration_variable.py index b81d0a8916..d6221c54ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/pricing_model.py b/src/oci/marketplace/models/pricing_model.py index 22a74a3767..6fb050b906 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/publication.py b/src/oci/marketplace/models/publication.py index 35a1b09290..94b8c7c652 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/publication_package.py b/src/oci/marketplace/models/publication_package.py index 9e62d56969..b885209bd1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/publication_package_summary.py b/src/oci/marketplace/models/publication_package_summary.py index ca7ccf6e78..1d00ca90f9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/publication_summary.py b/src/oci/marketplace/models/publication_summary.py index 24776f1d4c..24357ba439 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/publisher.py b/src/oci/marketplace/models/publisher.py index 7f6cd877b9..c1eabc08ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/publisher_summary.py b/src/oci/marketplace/models/publisher_summary.py index d485dadb1e..eb4beca3b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/region.py b/src/oci/marketplace/models/region.py index 04dcdcc082..3d070403dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/report_collection.py b/src/oci/marketplace/models/report_collection.py index 9eba66ef34..96865b4824 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/report_summary.py b/src/oci/marketplace/models/report_summary.py index 65a7d1a289..b68941f8a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/report_type_collection.py b/src/oci/marketplace/models/report_type_collection.py index 4c895738ef..4e4b60cc0d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/report_type_summary.py b/src/oci/marketplace/models/report_type_summary.py index 98446974e1..6ce077fa0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/screenshot.py b/src/oci/marketplace/models/screenshot.py index 66d402f644..d17f56e6b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/search_listings_details.py b/src/oci/marketplace/models/search_listings_details.py index fd527caea9..dc0719f13c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/structured_search_details.py b/src/oci/marketplace/models/structured_search_details.py index 4aea8a6a4b..64a6fc57df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/support_contact.py b/src/oci/marketplace/models/support_contact.py index 52ad2900eb..1649a13182 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/tax_summary.py b/src/oci/marketplace/models/tax_summary.py index 250dc23a23..a74121a2b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/text_based_eula.py b/src/oci/marketplace/models/text_based_eula.py index e8a7aca8b3..7e8cb546c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 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 967df7de67..695ba55611 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/update_accepted_agreement_details.py b/src/oci/marketplace/models/update_accepted_agreement_details.py index 5d20fdac97..05de919a69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/update_publication_details.py b/src/oci/marketplace/models/update_publication_details.py index 9786d5299e..d1ce7e0136 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/upload_data.py b/src/oci/marketplace/models/upload_data.py index 60a698c22f..413c8017d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/work_request.py b/src/oci/marketplace/models/work_request.py index 339563fa22..f888777b26 100644 --- a/src/oci/marketplace/models/work_request.py +++ b/src/oci/marketplace/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/work_request_collection.py b/src/oci/marketplace/models/work_request_collection.py index 0879b88388..c654a9e2ad 100644 --- a/src/oci/marketplace/models/work_request_collection.py +++ b/src/oci/marketplace/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/work_request_error.py b/src/oci/marketplace/models/work_request_error.py index a67b027803..c27bad8b1b 100644 --- a/src/oci/marketplace/models/work_request_error.py +++ b/src/oci/marketplace/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/work_request_error_collection.py b/src/oci/marketplace/models/work_request_error_collection.py index 2bf9a39d24..d57a931e25 100644 --- a/src/oci/marketplace/models/work_request_error_collection.py +++ b/src/oci/marketplace/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/work_request_log_entry.py b/src/oci/marketplace/models/work_request_log_entry.py index a6e35b5a46..6e83e4621e 100644 --- a/src/oci/marketplace/models/work_request_log_entry.py +++ b/src/oci/marketplace/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/work_request_log_entry_collection.py b/src/oci/marketplace/models/work_request_log_entry_collection.py index b9ca1acc2e..75834499c1 100644 --- a/src/oci/marketplace/models/work_request_log_entry_collection.py +++ b/src/oci/marketplace/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/work_request_resource.py b/src/oci/marketplace/models/work_request_resource.py index 3233c06df2..c82392c478 100644 --- a/src/oci/marketplace/models/work_request_resource.py +++ b/src/oci/marketplace/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace/models/work_request_summary.py b/src/oci/marketplace/models/work_request_summary.py index 0279a258d1..a9301738f7 100644 --- a/src/oci/marketplace/models/work_request_summary.py +++ b/src/oci/marketplace/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181001 diff --git a/src/oci/marketplace_private_offer/__init__.py b/src/oci/marketplace_private_offer/__init__.py index f9f4e5e46c..b25ea8a1ab 100644 --- a/src/oci/marketplace_private_offer/__init__.py +++ b/src/oci/marketplace_private_offer/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/attachment_client.py b/src/oci/marketplace_private_offer/attachment_client.py index 130d0673f7..39ff377f76 100644 --- a/src/oci/marketplace_private_offer/attachment_client.py +++ b/src/oci/marketplace_private_offer/attachment_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/attachment_client_composite_operations.py b/src/oci/marketplace_private_offer/attachment_client_composite_operations.py index 37315f993b..20aa9659cb 100644 --- a/src/oci/marketplace_private_offer/attachment_client_composite_operations.py +++ b/src/oci/marketplace_private_offer/attachment_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/__init__.py b/src/oci/marketplace_private_offer/models/__init__.py index b39210bffe..024a8715e1 100644 --- a/src/oci/marketplace_private_offer/models/__init__.py +++ b/src/oci/marketplace_private_offer/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/attachment.py b/src/oci/marketplace_private_offer/models/attachment.py index f37368712e..3098defa26 100644 --- a/src/oci/marketplace_private_offer/models/attachment.py +++ b/src/oci/marketplace_private_offer/models/attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/attachment_collection.py b/src/oci/marketplace_private_offer/models/attachment_collection.py index ad3290d426..9e31c16aeb 100644 --- a/src/oci/marketplace_private_offer/models/attachment_collection.py +++ b/src/oci/marketplace_private_offer/models/attachment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/attachment_summary.py b/src/oci/marketplace_private_offer/models/attachment_summary.py index 1dc1ccf3bf..95b08f0d21 100644 --- a/src/oci/marketplace_private_offer/models/attachment_summary.py +++ b/src/oci/marketplace_private_offer/models/attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/buyer_information.py b/src/oci/marketplace_private_offer/models/buyer_information.py index 2e00fef935..13bb1b4d5a 100644 --- a/src/oci/marketplace_private_offer/models/buyer_information.py +++ b/src/oci/marketplace_private_offer/models/buyer_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/contact.py b/src/oci/marketplace_private_offer/models/contact.py index 484858bf32..7da767300b 100644 --- a/src/oci/marketplace_private_offer/models/contact.py +++ b/src/oci/marketplace_private_offer/models/contact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/create_attachment_details.py b/src/oci/marketplace_private_offer/models/create_attachment_details.py index 6aff86b9d3..4bc07c4e58 100644 --- a/src/oci/marketplace_private_offer/models/create_attachment_details.py +++ b/src/oci/marketplace_private_offer/models/create_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/create_offer_details.py b/src/oci/marketplace_private_offer/models/create_offer_details.py index a0cdacc2f3..5dee2164f0 100644 --- a/src/oci/marketplace_private_offer/models/create_offer_details.py +++ b/src/oci/marketplace_private_offer/models/create_offer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/custom_field.py b/src/oci/marketplace_private_offer/models/custom_field.py index e4ed1ae11b..6119e6c818 100644 --- a/src/oci/marketplace_private_offer/models/custom_field.py +++ b/src/oci/marketplace_private_offer/models/custom_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/offer.py b/src/oci/marketplace_private_offer/models/offer.py index 0dc2b19aaf..c6cc05831b 100644 --- a/src/oci/marketplace_private_offer/models/offer.py +++ b/src/oci/marketplace_private_offer/models/offer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/offer_collection.py b/src/oci/marketplace_private_offer/models/offer_collection.py index 70dc37d2c6..23254cded7 100644 --- a/src/oci/marketplace_private_offer/models/offer_collection.py +++ b/src/oci/marketplace_private_offer/models/offer_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/offer_internal_detail.py b/src/oci/marketplace_private_offer/models/offer_internal_detail.py index 4af024bf41..10ca6a6890 100644 --- a/src/oci/marketplace_private_offer/models/offer_internal_detail.py +++ b/src/oci/marketplace_private_offer/models/offer_internal_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/offer_summary.py b/src/oci/marketplace_private_offer/models/offer_summary.py index 3160242d26..14b64651fd 100644 --- a/src/oci/marketplace_private_offer/models/offer_summary.py +++ b/src/oci/marketplace_private_offer/models/offer_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/pricing.py b/src/oci/marketplace_private_offer/models/pricing.py index ca55d7a378..347fb22435 100644 --- a/src/oci/marketplace_private_offer/models/pricing.py +++ b/src/oci/marketplace_private_offer/models/pricing.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/publisher_summary.py b/src/oci/marketplace_private_offer/models/publisher_summary.py index 295c32c550..f097fddc40 100644 --- a/src/oci/marketplace_private_offer/models/publisher_summary.py +++ b/src/oci/marketplace_private_offer/models/publisher_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/resource_bundle.py b/src/oci/marketplace_private_offer/models/resource_bundle.py index 58fe716b58..0c4b9a16d0 100644 --- a/src/oci/marketplace_private_offer/models/resource_bundle.py +++ b/src/oci/marketplace_private_offer/models/resource_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/seller_information.py b/src/oci/marketplace_private_offer/models/seller_information.py index 0b9d0c48e8..de22667b4d 100644 --- a/src/oci/marketplace_private_offer/models/seller_information.py +++ b/src/oci/marketplace_private_offer/models/seller_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/update_offer_details.py b/src/oci/marketplace_private_offer/models/update_offer_details.py index b326e38310..16c6e094db 100644 --- a/src/oci/marketplace_private_offer/models/update_offer_details.py +++ b/src/oci/marketplace_private_offer/models/update_offer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/models/upload_data.py b/src/oci/marketplace_private_offer/models/upload_data.py index e356997b82..f18a6c2b2b 100644 --- a/src/oci/marketplace_private_offer/models/upload_data.py +++ b/src/oci/marketplace_private_offer/models/upload_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/offer_client.py b/src/oci/marketplace_private_offer/offer_client.py index 74b93cef57..64ee1eac2a 100644 --- a/src/oci/marketplace_private_offer/offer_client.py +++ b/src/oci/marketplace_private_offer/offer_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_private_offer/offer_client_composite_operations.py b/src/oci/marketplace_private_offer/offer_client_composite_operations.py index ff75bf54ba..e9d386c028 100644 --- a/src/oci/marketplace_private_offer/offer_client_composite_operations.py +++ b/src/oci/marketplace_private_offer/offer_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/__init__.py b/src/oci/marketplace_publisher/__init__.py index f39cac1868..266bc4f3b5 100644 --- a/src/oci/marketplace_publisher/__init__.py +++ b/src/oci/marketplace_publisher/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/attachment_client.py b/src/oci/marketplace_publisher/attachment_client.py index 2d21a926e2..8fd0c1dfab 100644 --- a/src/oci/marketplace_publisher/attachment_client.py +++ b/src/oci/marketplace_publisher/attachment_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/attachment_client_composite_operations.py b/src/oci/marketplace_publisher/attachment_client_composite_operations.py index 6e54ad9ded..8c2d5b38f8 100644 --- a/src/oci/marketplace_publisher/attachment_client_composite_operations.py +++ b/src/oci/marketplace_publisher/attachment_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/marketplace_publisher_client.py b/src/oci/marketplace_publisher/marketplace_publisher_client.py index b6219707ab..2b4dde0101 100644 --- a/src/oci/marketplace_publisher/marketplace_publisher_client.py +++ b/src/oci/marketplace_publisher/marketplace_publisher_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/marketplace_publisher_client_composite_operations.py b/src/oci/marketplace_publisher/marketplace_publisher_client_composite_operations.py index 5b57092253..1b53da4e3c 100644 --- a/src/oci/marketplace_publisher/marketplace_publisher_client_composite_operations.py +++ b/src/oci/marketplace_publisher/marketplace_publisher_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/__init__.py b/src/oci/marketplace_publisher/models/__init__.py index 992b6003f9..c9742b0767 100644 --- a/src/oci/marketplace_publisher/models/__init__.py +++ b/src/oci/marketplace_publisher/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/artifact.py b/src/oci/marketplace_publisher/models/artifact.py index ae8d1a18e6..4c04e51c3d 100644 --- a/src/oci/marketplace_publisher/models/artifact.py +++ b/src/oci/marketplace_publisher/models/artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/artifact_collection.py b/src/oci/marketplace_publisher/models/artifact_collection.py index 7438defaec..178b3be088 100644 --- a/src/oci/marketplace_publisher/models/artifact_collection.py +++ b/src/oci/marketplace_publisher/models/artifact_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/artifact_summary.py b/src/oci/marketplace_publisher/models/artifact_summary.py index 0858e608a4..0ea29fffe2 100644 --- a/src/oci/marketplace_publisher/models/artifact_summary.py +++ b/src/oci/marketplace_publisher/models/artifact_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/attachment.py b/src/oci/marketplace_publisher/models/attachment.py index f37368712e..3098defa26 100644 --- a/src/oci/marketplace_publisher/models/attachment.py +++ b/src/oci/marketplace_publisher/models/attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/attachment_collection.py b/src/oci/marketplace_publisher/models/attachment_collection.py index 9c9705f1c7..6d0dfe75ad 100644 --- a/src/oci/marketplace_publisher/models/attachment_collection.py +++ b/src/oci/marketplace_publisher/models/attachment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/attachment_summary.py b/src/oci/marketplace_publisher/models/attachment_summary.py index 1dc1ccf3bf..95b08f0d21 100644 --- a/src/oci/marketplace_publisher/models/attachment_summary.py +++ b/src/oci/marketplace_publisher/models/attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/buyer_information.py b/src/oci/marketplace_publisher/models/buyer_information.py index 8266cd9911..232af424d2 100644 --- a/src/oci/marketplace_publisher/models/buyer_information.py +++ b/src/oci/marketplace_publisher/models/buyer_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/category.py b/src/oci/marketplace_publisher/models/category.py index 3ddd532e3f..5dda637179 100644 --- a/src/oci/marketplace_publisher/models/category.py +++ b/src/oci/marketplace_publisher/models/category.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/category_collection.py b/src/oci/marketplace_publisher/models/category_collection.py index b9096dbe2e..9500cd8759 100644 --- a/src/oci/marketplace_publisher/models/category_collection.py +++ b/src/oci/marketplace_publisher/models/category_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/category_summary.py b/src/oci/marketplace_publisher/models/category_summary.py index 9d51703dc3..98ba6413ea 100644 --- a/src/oci/marketplace_publisher/models/category_summary.py +++ b/src/oci/marketplace_publisher/models/category_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/change_artifact_compartment_details.py b/src/oci/marketplace_publisher/models/change_artifact_compartment_details.py index c8c4150025..799f412eb7 100644 --- a/src/oci/marketplace_publisher/models/change_artifact_compartment_details.py +++ b/src/oci/marketplace_publisher/models/change_artifact_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/change_listing_compartment_details.py b/src/oci/marketplace_publisher/models/change_listing_compartment_details.py index 3298c1b87c..afb5126bc7 100644 --- a/src/oci/marketplace_publisher/models/change_listing_compartment_details.py +++ b/src/oci/marketplace_publisher/models/change_listing_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/change_term_compartment_details.py b/src/oci/marketplace_publisher/models/change_term_compartment_details.py index 25bf410844..b26aa48c2b 100644 --- a/src/oci/marketplace_publisher/models/change_term_compartment_details.py +++ b/src/oci/marketplace_publisher/models/change_term_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/contact.py b/src/oci/marketplace_publisher/models/contact.py index 484858bf32..7da767300b 100644 --- a/src/oci/marketplace_publisher/models/contact.py +++ b/src/oci/marketplace_publisher/models/contact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/container_image_artifact.py b/src/oci/marketplace_publisher/models/container_image_artifact.py index aac636ac97..120f876a6f 100644 --- a/src/oci/marketplace_publisher/models/container_image_artifact.py +++ b/src/oci/marketplace_publisher/models/container_image_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/container_image_details.py b/src/oci/marketplace_publisher/models/container_image_details.py index c72d61c4ea..6f1158c8f6 100644 --- a/src/oci/marketplace_publisher/models/container_image_details.py +++ b/src/oci/marketplace_publisher/models/container_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/container_package.py b/src/oci/marketplace_publisher/models/container_package.py index ff356100da..3f8e228b37 100644 --- a/src/oci/marketplace_publisher/models/container_package.py +++ b/src/oci/marketplace_publisher/models/container_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_artifact_details.py b/src/oci/marketplace_publisher/models/create_artifact_details.py index 9fe04c8d72..7c281dd3e3 100644 --- a/src/oci/marketplace_publisher/models/create_artifact_details.py +++ b/src/oci/marketplace_publisher/models/create_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_attachment_details.py b/src/oci/marketplace_publisher/models/create_attachment_details.py index 6aff86b9d3..4bc07c4e58 100644 --- a/src/oci/marketplace_publisher/models/create_attachment_details.py +++ b/src/oci/marketplace_publisher/models/create_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_container_image_artifact_details.py b/src/oci/marketplace_publisher/models/create_container_image_artifact_details.py index 8ceea97782..264dd5d03e 100644 --- a/src/oci/marketplace_publisher/models/create_container_image_artifact_details.py +++ b/src/oci/marketplace_publisher/models/create_container_image_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_container_image_details.py b/src/oci/marketplace_publisher/models/create_container_image_details.py index 23e4f65abf..de3adad58b 100644 --- a/src/oci/marketplace_publisher/models/create_container_image_details.py +++ b/src/oci/marketplace_publisher/models/create_container_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_helm_chart_image_details.py b/src/oci/marketplace_publisher/models/create_helm_chart_image_details.py index de6e8ca7c9..0b756bdbd2 100644 --- a/src/oci/marketplace_publisher/models/create_helm_chart_image_details.py +++ b/src/oci/marketplace_publisher/models/create_helm_chart_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_kubernetes_image_artifact_details.py b/src/oci/marketplace_publisher/models/create_kubernetes_image_artifact_details.py index e7892fed60..9bc6acb95f 100644 --- a/src/oci/marketplace_publisher/models/create_kubernetes_image_artifact_details.py +++ b/src/oci/marketplace_publisher/models/create_kubernetes_image_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_listing_details.py b/src/oci/marketplace_publisher/models/create_listing_details.py index 807b254325..ba884119e4 100644 --- a/src/oci/marketplace_publisher/models/create_listing_details.py +++ b/src/oci/marketplace_publisher/models/create_listing_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_listing_revision_attachment_details.py b/src/oci/marketplace_publisher/models/create_listing_revision_attachment_details.py index 0159164ef4..50a4ff8950 100644 --- a/src/oci/marketplace_publisher/models/create_listing_revision_attachment_details.py +++ b/src/oci/marketplace_publisher/models/create_listing_revision_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_listing_revision_details.py b/src/oci/marketplace_publisher/models/create_listing_revision_details.py index ffde5cef7d..53a09af36a 100644 --- a/src/oci/marketplace_publisher/models/create_listing_revision_details.py +++ b/src/oci/marketplace_publisher/models/create_listing_revision_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_listing_revision_note_details.py b/src/oci/marketplace_publisher/models/create_listing_revision_note_details.py index d50f48138f..e9de1c8819 100644 --- a/src/oci/marketplace_publisher/models/create_listing_revision_note_details.py +++ b/src/oci/marketplace_publisher/models/create_listing_revision_note_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_listing_revision_package_details.py b/src/oci/marketplace_publisher/models/create_listing_revision_package_details.py index e055a187a3..ad13dc962e 100644 --- a/src/oci/marketplace_publisher/models/create_listing_revision_package_details.py +++ b/src/oci/marketplace_publisher/models/create_listing_revision_package_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_offer_details.py b/src/oci/marketplace_publisher/models/create_offer_details.py index 89fc1460db..a001e6e5a2 100644 --- a/src/oci/marketplace_publisher/models/create_offer_details.py +++ b/src/oci/marketplace_publisher/models/create_offer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_related_document_attachment_details.py b/src/oci/marketplace_publisher/models/create_related_document_attachment_details.py index 69a4603004..8c896a7dcd 100644 --- a/src/oci/marketplace_publisher/models/create_related_document_attachment_details.py +++ b/src/oci/marketplace_publisher/models/create_related_document_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_screen_shot_attachment_details.py b/src/oci/marketplace_publisher/models/create_screen_shot_attachment_details.py index 7e15857f7f..addd06a5e8 100644 --- a/src/oci/marketplace_publisher/models/create_screen_shot_attachment_details.py +++ b/src/oci/marketplace_publisher/models/create_screen_shot_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_term_details.py b/src/oci/marketplace_publisher/models/create_term_details.py index 96f2cbc01d..4efa98c721 100644 --- a/src/oci/marketplace_publisher/models/create_term_details.py +++ b/src/oci/marketplace_publisher/models/create_term_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_video_attachment_details.py b/src/oci/marketplace_publisher/models/create_video_attachment_details.py index ef86e45a6e..2f902ae0ee 100644 --- a/src/oci/marketplace_publisher/models/create_video_attachment_details.py +++ b/src/oci/marketplace_publisher/models/create_video_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/create_video_details.py b/src/oci/marketplace_publisher/models/create_video_details.py index ddc0b1b7d9..83d8a81723 100644 --- a/src/oci/marketplace_publisher/models/create_video_details.py +++ b/src/oci/marketplace_publisher/models/create_video_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/custom_field.py b/src/oci/marketplace_publisher/models/custom_field.py index e4ed1ae11b..6119e6c818 100644 --- a/src/oci/marketplace_publisher/models/custom_field.py +++ b/src/oci/marketplace_publisher/models/custom_field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/helm_chart_image_details.py b/src/oci/marketplace_publisher/models/helm_chart_image_details.py index a103320974..784172aea6 100644 --- a/src/oci/marketplace_publisher/models/helm_chart_image_details.py +++ b/src/oci/marketplace_publisher/models/helm_chart_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/helm_chart_package.py b/src/oci/marketplace_publisher/models/helm_chart_package.py index add49c6ef9..86c8fcd5ac 100644 --- a/src/oci/marketplace_publisher/models/helm_chart_package.py +++ b/src/oci/marketplace_publisher/models/helm_chart_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/kubernetes_image_artifact.py b/src/oci/marketplace_publisher/models/kubernetes_image_artifact.py index d70fdfc1da..21759605e5 100644 --- a/src/oci/marketplace_publisher/models/kubernetes_image_artifact.py +++ b/src/oci/marketplace_publisher/models/kubernetes_image_artifact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/language_item.py b/src/oci/marketplace_publisher/models/language_item.py index a0a5e4fda8..cf6e8ed482 100644 --- a/src/oci/marketplace_publisher/models/language_item.py +++ b/src/oci/marketplace_publisher/models/language_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing.py b/src/oci/marketplace_publisher/models/listing.py index 77026ff9d9..2ec03d965e 100644 --- a/src/oci/marketplace_publisher/models/listing.py +++ b/src/oci/marketplace_publisher/models/listing.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_collection.py b/src/oci/marketplace_publisher/models/listing_collection.py index 4f40dad818..e5b5ae19b6 100644 --- a/src/oci/marketplace_publisher/models/listing_collection.py +++ b/src/oci/marketplace_publisher/models/listing_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision.py b/src/oci/marketplace_publisher/models/listing_revision.py index faf332615b..1050727164 100644 --- a/src/oci/marketplace_publisher/models/listing_revision.py +++ b/src/oci/marketplace_publisher/models/listing_revision.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_attachment.py b/src/oci/marketplace_publisher/models/listing_revision_attachment.py index 9b1c52bda3..dd336d0f52 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_attachment.py +++ b/src/oci/marketplace_publisher/models/listing_revision_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_attachment_collection.py b/src/oci/marketplace_publisher/models/listing_revision_attachment_collection.py index 4223c9662a..57ca4bda7b 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_attachment_collection.py +++ b/src/oci/marketplace_publisher/models/listing_revision_attachment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_attachment_summary.py b/src/oci/marketplace_publisher/models/listing_revision_attachment_summary.py index 9eccef1428..cb5784d47b 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_attachment_summary.py +++ b/src/oci/marketplace_publisher/models/listing_revision_attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_collection.py b/src/oci/marketplace_publisher/models/listing_revision_collection.py index 4bedd273cf..8b9493cf9f 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_collection.py +++ b/src/oci/marketplace_publisher/models/listing_revision_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_icon_attachment.py b/src/oci/marketplace_publisher/models/listing_revision_icon_attachment.py index e71a4e40fe..2fa08f1876 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_icon_attachment.py +++ b/src/oci/marketplace_publisher/models/listing_revision_icon_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_note.py b/src/oci/marketplace_publisher/models/listing_revision_note.py index fe5d54e0c3..98ed832db7 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_note.py +++ b/src/oci/marketplace_publisher/models/listing_revision_note.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_note_collection.py b/src/oci/marketplace_publisher/models/listing_revision_note_collection.py index e59170a641..69130a2ae9 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_note_collection.py +++ b/src/oci/marketplace_publisher/models/listing_revision_note_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_note_summary.py b/src/oci/marketplace_publisher/models/listing_revision_note_summary.py index 73e49fd412..e46c21d6bc 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_note_summary.py +++ b/src/oci/marketplace_publisher/models/listing_revision_note_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_package.py b/src/oci/marketplace_publisher/models/listing_revision_package.py index 298ab46cee..316d4684a2 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_package.py +++ b/src/oci/marketplace_publisher/models/listing_revision_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_package_collection.py b/src/oci/marketplace_publisher/models/listing_revision_package_collection.py index 37db06eff8..75ac9fd49e 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_package_collection.py +++ b/src/oci/marketplace_publisher/models/listing_revision_package_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_package_summary.py b/src/oci/marketplace_publisher/models/listing_revision_package_summary.py index 1874eed766..bcf7eec0f3 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_package_summary.py +++ b/src/oci/marketplace_publisher/models/listing_revision_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_revision_summary.py b/src/oci/marketplace_publisher/models/listing_revision_summary.py index f5d9a70c0d..6cbaf6359d 100644 --- a/src/oci/marketplace_publisher/models/listing_revision_summary.py +++ b/src/oci/marketplace_publisher/models/listing_revision_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/listing_summary.py b/src/oci/marketplace_publisher/models/listing_summary.py index b321ba4238..aa620217ab 100644 --- a/src/oci/marketplace_publisher/models/listing_summary.py +++ b/src/oci/marketplace_publisher/models/listing_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/market.py b/src/oci/marketplace_publisher/models/market.py index fce050ee97..9b80452fbb 100644 --- a/src/oci/marketplace_publisher/models/market.py +++ b/src/oci/marketplace_publisher/models/market.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/market_collection.py b/src/oci/marketplace_publisher/models/market_collection.py index 997d04014f..6b638d962a 100644 --- a/src/oci/marketplace_publisher/models/market_collection.py +++ b/src/oci/marketplace_publisher/models/market_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/market_summary.py b/src/oci/marketplace_publisher/models/market_summary.py index bc8420fe3d..ba7ff1b2e4 100644 --- a/src/oci/marketplace_publisher/models/market_summary.py +++ b/src/oci/marketplace_publisher/models/market_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/named_link.py b/src/oci/marketplace_publisher/models/named_link.py index 003d32f57f..3e8abc3af8 100644 --- a/src/oci/marketplace_publisher/models/named_link.py +++ b/src/oci/marketplace_publisher/models/named_link.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/offer.py b/src/oci/marketplace_publisher/models/offer.py index 3a0de58f95..8fb384d1cd 100644 --- a/src/oci/marketplace_publisher/models/offer.py +++ b/src/oci/marketplace_publisher/models/offer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/offer_collection.py b/src/oci/marketplace_publisher/models/offer_collection.py index 5bc87f8f23..0eabac2949 100644 --- a/src/oci/marketplace_publisher/models/offer_collection.py +++ b/src/oci/marketplace_publisher/models/offer_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/offer_internal_detail.py b/src/oci/marketplace_publisher/models/offer_internal_detail.py index f82533d8dd..cfefdb369e 100644 --- a/src/oci/marketplace_publisher/models/offer_internal_detail.py +++ b/src/oci/marketplace_publisher/models/offer_internal_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/offer_summary.py b/src/oci/marketplace_publisher/models/offer_summary.py index df6dfaa10a..2f2861f016 100644 --- a/src/oci/marketplace_publisher/models/offer_summary.py +++ b/src/oci/marketplace_publisher/models/offer_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/opn_membership.py b/src/oci/marketplace_publisher/models/opn_membership.py index 50e379fbbe..ce8c8f82f6 100644 --- a/src/oci/marketplace_publisher/models/opn_membership.py +++ b/src/oci/marketplace_publisher/models/opn_membership.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/pricing.py b/src/oci/marketplace_publisher/models/pricing.py index ca55d7a378..347fb22435 100644 --- a/src/oci/marketplace_publisher/models/pricing.py +++ b/src/oci/marketplace_publisher/models/pricing.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/private_offer_account_details.py b/src/oci/marketplace_publisher/models/private_offer_account_details.py index 74190b9424..f4b67e8d2a 100644 --- a/src/oci/marketplace_publisher/models/private_offer_account_details.py +++ b/src/oci/marketplace_publisher/models/private_offer_account_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/product.py b/src/oci/marketplace_publisher/models/product.py index c75323fd8a..f1a3b569d9 100644 --- a/src/oci/marketplace_publisher/models/product.py +++ b/src/oci/marketplace_publisher/models/product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/product_collection.py b/src/oci/marketplace_publisher/models/product_collection.py index 6531c3ad03..8eb6225ac2 100644 --- a/src/oci/marketplace_publisher/models/product_collection.py +++ b/src/oci/marketplace_publisher/models/product_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/product_summary.py b/src/oci/marketplace_publisher/models/product_summary.py index f448d70032..01d5baa595 100644 --- a/src/oci/marketplace_publisher/models/product_summary.py +++ b/src/oci/marketplace_publisher/models/product_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/publish_listing_revision_as_private_details.py b/src/oci/marketplace_publisher/models/publish_listing_revision_as_private_details.py index 14fb13ce61..6f63383895 100644 --- a/src/oci/marketplace_publisher/models/publish_listing_revision_as_private_details.py +++ b/src/oci/marketplace_publisher/models/publish_listing_revision_as_private_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/publisher.py b/src/oci/marketplace_publisher/models/publisher.py index 5d976bd3f3..c1d1b2b21c 100644 --- a/src/oci/marketplace_publisher/models/publisher.py +++ b/src/oci/marketplace_publisher/models/publisher.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/publisher_collection.py b/src/oci/marketplace_publisher/models/publisher_collection.py index 748a93d4d9..7d10866909 100644 --- a/src/oci/marketplace_publisher/models/publisher_collection.py +++ b/src/oci/marketplace_publisher/models/publisher_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/publisher_summary.py b/src/oci/marketplace_publisher/models/publisher_summary.py index afffd82a3f..68db73ac02 100644 --- a/src/oci/marketplace_publisher/models/publisher_summary.py +++ b/src/oci/marketplace_publisher/models/publisher_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/related_document_attachment.py b/src/oci/marketplace_publisher/models/related_document_attachment.py index c4ab8cf3b5..4fb3fb0176 100644 --- a/src/oci/marketplace_publisher/models/related_document_attachment.py +++ b/src/oci/marketplace_publisher/models/related_document_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/resource_bundle.py b/src/oci/marketplace_publisher/models/resource_bundle.py index 58fe716b58..0c4b9a16d0 100644 --- a/src/oci/marketplace_publisher/models/resource_bundle.py +++ b/src/oci/marketplace_publisher/models/resource_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/screen_shot_attachment.py b/src/oci/marketplace_publisher/models/screen_shot_attachment.py index 83dadf050f..b65bdaf78c 100644 --- a/src/oci/marketplace_publisher/models/screen_shot_attachment.py +++ b/src/oci/marketplace_publisher/models/screen_shot_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/seller_information.py b/src/oci/marketplace_publisher/models/seller_information.py index e3fda0c00c..8ac579e752 100644 --- a/src/oci/marketplace_publisher/models/seller_information.py +++ b/src/oci/marketplace_publisher/models/seller_information.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/submit_listing_revision_for_review_details.py b/src/oci/marketplace_publisher/models/submit_listing_revision_for_review_details.py index cb2e02fdc8..9f5899216f 100644 --- a/src/oci/marketplace_publisher/models/submit_listing_revision_for_review_details.py +++ b/src/oci/marketplace_publisher/models/submit_listing_revision_for_review_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/support_contact.py b/src/oci/marketplace_publisher/models/support_contact.py index 06a9cd66df..1e9baec76b 100644 --- a/src/oci/marketplace_publisher/models/support_contact.py +++ b/src/oci/marketplace_publisher/models/support_contact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/term.py b/src/oci/marketplace_publisher/models/term.py index 8de82539ef..37318a2be6 100644 --- a/src/oci/marketplace_publisher/models/term.py +++ b/src/oci/marketplace_publisher/models/term.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/term_collection.py b/src/oci/marketplace_publisher/models/term_collection.py index f892700e72..a9faa876db 100644 --- a/src/oci/marketplace_publisher/models/term_collection.py +++ b/src/oci/marketplace_publisher/models/term_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/term_summary.py b/src/oci/marketplace_publisher/models/term_summary.py index 6293592774..5ec848a278 100644 --- a/src/oci/marketplace_publisher/models/term_summary.py +++ b/src/oci/marketplace_publisher/models/term_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/term_version.py b/src/oci/marketplace_publisher/models/term_version.py index 85d7750440..3f5d4dd6a8 100644 --- a/src/oci/marketplace_publisher/models/term_version.py +++ b/src/oci/marketplace_publisher/models/term_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/term_version_attachment.py b/src/oci/marketplace_publisher/models/term_version_attachment.py index 5db26e52ca..fb029bdc9a 100644 --- a/src/oci/marketplace_publisher/models/term_version_attachment.py +++ b/src/oci/marketplace_publisher/models/term_version_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/term_version_collection.py b/src/oci/marketplace_publisher/models/term_version_collection.py index 6d85922a55..ca027f7651 100644 --- a/src/oci/marketplace_publisher/models/term_version_collection.py +++ b/src/oci/marketplace_publisher/models/term_version_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/term_version_summary.py b/src/oci/marketplace_publisher/models/term_version_summary.py index 4c7ae4bfe1..d7006fb3e8 100644 --- a/src/oci/marketplace_publisher/models/term_version_summary.py +++ b/src/oci/marketplace_publisher/models/term_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_artifact_details.py b/src/oci/marketplace_publisher/models/update_artifact_details.py index 1d8283f875..3b03f62d91 100644 --- a/src/oci/marketplace_publisher/models/update_artifact_details.py +++ b/src/oci/marketplace_publisher/models/update_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_container_image_artifact_details.py b/src/oci/marketplace_publisher/models/update_container_image_artifact_details.py index 3c7b5790a8..aeb6afea51 100644 --- a/src/oci/marketplace_publisher/models/update_container_image_artifact_details.py +++ b/src/oci/marketplace_publisher/models/update_container_image_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_container_image_details.py b/src/oci/marketplace_publisher/models/update_container_image_details.py index 2b0374bf6f..72893e4018 100644 --- a/src/oci/marketplace_publisher/models/update_container_image_details.py +++ b/src/oci/marketplace_publisher/models/update_container_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_helm_chart_image_details.py b/src/oci/marketplace_publisher/models/update_helm_chart_image_details.py index 2c83a545cb..94ae4ac3c8 100644 --- a/src/oci/marketplace_publisher/models/update_helm_chart_image_details.py +++ b/src/oci/marketplace_publisher/models/update_helm_chart_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_kubernetes_image_artifact_details.py b/src/oci/marketplace_publisher/models/update_kubernetes_image_artifact_details.py index f1c16f8dca..e537652821 100644 --- a/src/oci/marketplace_publisher/models/update_kubernetes_image_artifact_details.py +++ b/src/oci/marketplace_publisher/models/update_kubernetes_image_artifact_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_listing_details.py b/src/oci/marketplace_publisher/models/update_listing_details.py index 9cc2199854..d8ea8a54aa 100644 --- a/src/oci/marketplace_publisher/models/update_listing_details.py +++ b/src/oci/marketplace_publisher/models/update_listing_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_listing_revision_attachment_details.py b/src/oci/marketplace_publisher/models/update_listing_revision_attachment_details.py index 371929915f..baf2a2b158 100644 --- a/src/oci/marketplace_publisher/models/update_listing_revision_attachment_details.py +++ b/src/oci/marketplace_publisher/models/update_listing_revision_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_listing_revision_details.py b/src/oci/marketplace_publisher/models/update_listing_revision_details.py index c4a08c9dca..92719ed15b 100644 --- a/src/oci/marketplace_publisher/models/update_listing_revision_details.py +++ b/src/oci/marketplace_publisher/models/update_listing_revision_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_listing_revision_package_details.py b/src/oci/marketplace_publisher/models/update_listing_revision_package_details.py index d802cf14c9..7919aeb558 100644 --- a/src/oci/marketplace_publisher/models/update_listing_revision_package_details.py +++ b/src/oci/marketplace_publisher/models/update_listing_revision_package_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_offer_details.py b/src/oci/marketplace_publisher/models/update_offer_details.py index e2f3eba7e9..7f7fa94508 100644 --- a/src/oci/marketplace_publisher/models/update_offer_details.py +++ b/src/oci/marketplace_publisher/models/update_offer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_related_document_attachment_details.py b/src/oci/marketplace_publisher/models/update_related_document_attachment_details.py index c573f9fa33..4c8d4b60c5 100644 --- a/src/oci/marketplace_publisher/models/update_related_document_attachment_details.py +++ b/src/oci/marketplace_publisher/models/update_related_document_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_screen_shot_attachment_details.py b/src/oci/marketplace_publisher/models/update_screen_shot_attachment_details.py index 1505f81d85..56d4eda0ea 100644 --- a/src/oci/marketplace_publisher/models/update_screen_shot_attachment_details.py +++ b/src/oci/marketplace_publisher/models/update_screen_shot_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_term_details.py b/src/oci/marketplace_publisher/models/update_term_details.py index 87e3442de5..35d25f4093 100644 --- a/src/oci/marketplace_publisher/models/update_term_details.py +++ b/src/oci/marketplace_publisher/models/update_term_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_term_version_details.py b/src/oci/marketplace_publisher/models/update_term_version_details.py index df6938f2d7..35f4f36fa5 100644 --- a/src/oci/marketplace_publisher/models/update_term_version_details.py +++ b/src/oci/marketplace_publisher/models/update_term_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/update_video_attachment_details.py b/src/oci/marketplace_publisher/models/update_video_attachment_details.py index fab6e7c690..26631ed800 100644 --- a/src/oci/marketplace_publisher/models/update_video_attachment_details.py +++ b/src/oci/marketplace_publisher/models/update_video_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/upload_data.py b/src/oci/marketplace_publisher/models/upload_data.py index e356997b82..f18a6c2b2b 100644 --- a/src/oci/marketplace_publisher/models/upload_data.py +++ b/src/oci/marketplace_publisher/models/upload_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/version_details.py b/src/oci/marketplace_publisher/models/version_details.py index 9159b6b6d4..542e9f2c53 100644 --- a/src/oci/marketplace_publisher/models/version_details.py +++ b/src/oci/marketplace_publisher/models/version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/video_attachment.py b/src/oci/marketplace_publisher/models/video_attachment.py index a2f46b6af6..96db1c6e0b 100644 --- a/src/oci/marketplace_publisher/models/video_attachment.py +++ b/src/oci/marketplace_publisher/models/video_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/work_request.py b/src/oci/marketplace_publisher/models/work_request.py index 80f5120c6e..f28f008486 100644 --- a/src/oci/marketplace_publisher/models/work_request.py +++ b/src/oci/marketplace_publisher/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/work_request_error.py b/src/oci/marketplace_publisher/models/work_request_error.py index b3cb0d6c71..aba6e9a05a 100644 --- a/src/oci/marketplace_publisher/models/work_request_error.py +++ b/src/oci/marketplace_publisher/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/work_request_error_collection.py b/src/oci/marketplace_publisher/models/work_request_error_collection.py index 7f6f87cf08..ca9942749d 100644 --- a/src/oci/marketplace_publisher/models/work_request_error_collection.py +++ b/src/oci/marketplace_publisher/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/work_request_log_entry.py b/src/oci/marketplace_publisher/models/work_request_log_entry.py index bf415f0ca7..21f5296aa3 100644 --- a/src/oci/marketplace_publisher/models/work_request_log_entry.py +++ b/src/oci/marketplace_publisher/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/work_request_log_entry_collection.py b/src/oci/marketplace_publisher/models/work_request_log_entry_collection.py index 918e9be5c2..4bb4b74414 100644 --- a/src/oci/marketplace_publisher/models/work_request_log_entry_collection.py +++ b/src/oci/marketplace_publisher/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/work_request_resource.py b/src/oci/marketplace_publisher/models/work_request_resource.py index 06c51ae787..e3e6ff4a62 100644 --- a/src/oci/marketplace_publisher/models/work_request_resource.py +++ b/src/oci/marketplace_publisher/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/work_request_summary.py b/src/oci/marketplace_publisher/models/work_request_summary.py index 2ff5a0a972..293186942d 100644 --- a/src/oci/marketplace_publisher/models/work_request_summary.py +++ b/src/oci/marketplace_publisher/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/models/work_request_summary_collection.py b/src/oci/marketplace_publisher/models/work_request_summary_collection.py index ee43afb624..dce6e48341 100644 --- a/src/oci/marketplace_publisher/models/work_request_summary_collection.py +++ b/src/oci/marketplace_publisher/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/offer_client.py b/src/oci/marketplace_publisher/offer_client.py index 21afa930f7..86605bc85a 100644 --- a/src/oci/marketplace_publisher/offer_client.py +++ b/src/oci/marketplace_publisher/offer_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/marketplace_publisher/offer_client_composite_operations.py b/src/oci/marketplace_publisher/offer_client_composite_operations.py index da058add7c..02cd5f8a5f 100644 --- a/src/oci/marketplace_publisher/offer_client_composite_operations.py +++ b/src/oci/marketplace_publisher/offer_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/media_services/__init__.py b/src/oci/media_services/__init__.py index ff3f111b83..a1417841c1 100644 --- a/src/oci/media_services/__init__.py +++ b/src/oci/media_services/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/media_services_client.py b/src/oci/media_services/media_services_client.py index dfe6a99773..a5eaa91439 100644 --- a/src/oci/media_services/media_services_client.py +++ b/src/oci/media_services/media_services_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/media_services_client_composite_operations.py b/src/oci/media_services/media_services_client_composite_operations.py index a5886dc4d2..8f99c86214 100644 --- a/src/oci/media_services/media_services_client_composite_operations.py +++ b/src/oci/media_services/media_services_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/media_stream_client.py b/src/oci/media_services/media_stream_client.py index 75fc4f6b7f..21a8af6377 100644 --- a/src/oci/media_services/media_stream_client.py +++ b/src/oci/media_services/media_stream_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/media_stream_client_composite_operations.py b/src/oci/media_services/media_stream_client_composite_operations.py index 1634a16bc2..d568a732c9 100644 --- a/src/oci/media_services/media_stream_client_composite_operations.py +++ b/src/oci/media_services/media_stream_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/__init__.py b/src/oci/media_services/models/__init__.py index 133ad0a3ae..530139952a 100644 --- a/src/oci/media_services/models/__init__.py +++ b/src/oci/media_services/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/add_lock_details.py b/src/oci/media_services/models/add_lock_details.py index 8512418f9f..f7f2504f3f 100644 --- a/src/oci/media_services/models/add_lock_details.py +++ b/src/oci/media_services/models/add_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/akamai_manual_stream_cdn_config.py b/src/oci/media_services/models/akamai_manual_stream_cdn_config.py index 698bf71bb9..ab9b7766fb 100644 --- a/src/oci/media_services/models/akamai_manual_stream_cdn_config.py +++ b/src/oci/media_services/models/akamai_manual_stream_cdn_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/asset_metadata_entry_details.py b/src/oci/media_services/models/asset_metadata_entry_details.py index 3cc4c43f5a..2f3a3e63a6 100644 --- a/src/oci/media_services/models/asset_metadata_entry_details.py +++ b/src/oci/media_services/models/asset_metadata_entry_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/change_media_asset_compartment_details.py b/src/oci/media_services/models/change_media_asset_compartment_details.py index 1c299a8550..7b7aa15a2a 100644 --- a/src/oci/media_services/models/change_media_asset_compartment_details.py +++ b/src/oci/media_services/models/change_media_asset_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/change_media_workflow_compartment_details.py b/src/oci/media_services/models/change_media_workflow_compartment_details.py index 83524e7ee5..a50c5c9609 100644 --- a/src/oci/media_services/models/change_media_workflow_compartment_details.py +++ b/src/oci/media_services/models/change_media_workflow_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/change_media_workflow_configuration_compartment_details.py b/src/oci/media_services/models/change_media_workflow_configuration_compartment_details.py index ee5b5a13f0..4be4f61b0b 100644 --- a/src/oci/media_services/models/change_media_workflow_configuration_compartment_details.py +++ b/src/oci/media_services/models/change_media_workflow_configuration_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/change_media_workflow_job_compartment_details.py b/src/oci/media_services/models/change_media_workflow_job_compartment_details.py index c755cca4aa..6af4808e31 100644 --- a/src/oci/media_services/models/change_media_workflow_job_compartment_details.py +++ b/src/oci/media_services/models/change_media_workflow_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/change_stream_distribution_channel_compartment_details.py b/src/oci/media_services/models/change_stream_distribution_channel_compartment_details.py index dbed51d8cb..21a7b4a520 100644 --- a/src/oci/media_services/models/change_stream_distribution_channel_compartment_details.py +++ b/src/oci/media_services/models/change_stream_distribution_channel_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/create_media_asset_details.py b/src/oci/media_services/models/create_media_asset_details.py index 1b0ade9606..0ed00408d7 100644 --- a/src/oci/media_services/models/create_media_asset_details.py +++ b/src/oci/media_services/models/create_media_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/create_media_workflow_configuration_details.py b/src/oci/media_services/models/create_media_workflow_configuration_details.py index c295568b14..d9b8a6fd0e 100644 --- a/src/oci/media_services/models/create_media_workflow_configuration_details.py +++ b/src/oci/media_services/models/create_media_workflow_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/create_media_workflow_details.py b/src/oci/media_services/models/create_media_workflow_details.py index a2c5224968..9f937eaa08 100644 --- a/src/oci/media_services/models/create_media_workflow_details.py +++ b/src/oci/media_services/models/create_media_workflow_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/create_media_workflow_job_by_id_details.py b/src/oci/media_services/models/create_media_workflow_job_by_id_details.py index 2596d1458f..c66520ab8e 100644 --- a/src/oci/media_services/models/create_media_workflow_job_by_id_details.py +++ b/src/oci/media_services/models/create_media_workflow_job_by_id_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/create_media_workflow_job_by_name_details.py b/src/oci/media_services/models/create_media_workflow_job_by_name_details.py index 0f1d225dc2..fc6bc297e5 100644 --- a/src/oci/media_services/models/create_media_workflow_job_by_name_details.py +++ b/src/oci/media_services/models/create_media_workflow_job_by_name_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/create_media_workflow_job_details.py b/src/oci/media_services/models/create_media_workflow_job_details.py index 3e30db14d8..53c798a810 100644 --- a/src/oci/media_services/models/create_media_workflow_job_details.py +++ b/src/oci/media_services/models/create_media_workflow_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/create_stream_cdn_config_details.py b/src/oci/media_services/models/create_stream_cdn_config_details.py index 3268a81419..ee2dc2428a 100644 --- a/src/oci/media_services/models/create_stream_cdn_config_details.py +++ b/src/oci/media_services/models/create_stream_cdn_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/create_stream_distribution_channel_details.py b/src/oci/media_services/models/create_stream_distribution_channel_details.py index 225c6b5875..c365961e40 100644 --- a/src/oci/media_services/models/create_stream_distribution_channel_details.py +++ b/src/oci/media_services/models/create_stream_distribution_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/create_stream_packaging_config_details.py b/src/oci/media_services/models/create_stream_packaging_config_details.py index 29abf0bcc9..01c101b1e6 100644 --- a/src/oci/media_services/models/create_stream_packaging_config_details.py +++ b/src/oci/media_services/models/create_stream_packaging_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/dash_stream_packaging_config.py b/src/oci/media_services/models/dash_stream_packaging_config.py index 85a3c92f5a..b0cf6a1440 100644 --- a/src/oci/media_services/models/dash_stream_packaging_config.py +++ b/src/oci/media_services/models/dash_stream_packaging_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/edge_stream_cdn_config.py b/src/oci/media_services/models/edge_stream_cdn_config.py index 07200eef44..544f2bfee3 100644 --- a/src/oci/media_services/models/edge_stream_cdn_config.py +++ b/src/oci/media_services/models/edge_stream_cdn_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/generate_session_token_details.py b/src/oci/media_services/models/generate_session_token_details.py index 282b65a532..b90cbd858e 100644 --- a/src/oci/media_services/models/generate_session_token_details.py +++ b/src/oci/media_services/models/generate_session_token_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/hls_stream_packaging_config.py b/src/oci/media_services/models/hls_stream_packaging_config.py index 6fe56fdd77..5a0eb22e0e 100644 --- a/src/oci/media_services/models/hls_stream_packaging_config.py +++ b/src/oci/media_services/models/hls_stream_packaging_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/ingest_stream_distribution_channel_details.py b/src/oci/media_services/models/ingest_stream_distribution_channel_details.py index c770b6895a..745f425da2 100644 --- a/src/oci/media_services/models/ingest_stream_distribution_channel_details.py +++ b/src/oci/media_services/models/ingest_stream_distribution_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/ingest_stream_distribution_channel_result.py b/src/oci/media_services/models/ingest_stream_distribution_channel_result.py index 760af1b880..00a6de9b5c 100644 --- a/src/oci/media_services/models/ingest_stream_distribution_channel_result.py +++ b/src/oci/media_services/models/ingest_stream_distribution_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/job_output.py b/src/oci/media_services/models/job_output.py index e0d7db18cd..41947dbbbf 100644 --- a/src/oci/media_services/models/job_output.py +++ b/src/oci/media_services/models/job_output.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_asset.py b/src/oci/media_services/models/media_asset.py index f54e830c4e..64b0999a18 100644 --- a/src/oci/media_services/models/media_asset.py +++ b/src/oci/media_services/models/media_asset.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_asset_collection.py b/src/oci/media_services/models/media_asset_collection.py index 124d9a84fb..0a1c3d93ce 100644 --- a/src/oci/media_services/models/media_asset_collection.py +++ b/src/oci/media_services/models/media_asset_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_asset_distribution_channel_attachment.py b/src/oci/media_services/models/media_asset_distribution_channel_attachment.py index 198688ff92..082e273a75 100644 --- a/src/oci/media_services/models/media_asset_distribution_channel_attachment.py +++ b/src/oci/media_services/models/media_asset_distribution_channel_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_asset_distribution_channel_attachment_collection.py b/src/oci/media_services/models/media_asset_distribution_channel_attachment_collection.py index d1eb6b8d1c..ffb46bbf3b 100644 --- a/src/oci/media_services/models/media_asset_distribution_channel_attachment_collection.py +++ b/src/oci/media_services/models/media_asset_distribution_channel_attachment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_asset_distribution_channel_attachment_summary.py b/src/oci/media_services/models/media_asset_distribution_channel_attachment_summary.py index 0f680a56a4..966147c88c 100644 --- a/src/oci/media_services/models/media_asset_distribution_channel_attachment_summary.py +++ b/src/oci/media_services/models/media_asset_distribution_channel_attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_asset_summary.py b/src/oci/media_services/models/media_asset_summary.py index ac5e642e3a..e534907aad 100644 --- a/src/oci/media_services/models/media_asset_summary.py +++ b/src/oci/media_services/models/media_asset_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_asset_tag.py b/src/oci/media_services/models/media_asset_tag.py index 72ca0791f8..1dcfa47e5e 100644 --- a/src/oci/media_services/models/media_asset_tag.py +++ b/src/oci/media_services/models/media_asset_tag.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow.py b/src/oci/media_services/models/media_workflow.py index 820af6e738..3bb758018a 100644 --- a/src/oci/media_services/models/media_workflow.py +++ b/src/oci/media_services/models/media_workflow.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_collection.py b/src/oci/media_services/models/media_workflow_collection.py index 833d567500..57b27628b8 100644 --- a/src/oci/media_services/models/media_workflow_collection.py +++ b/src/oci/media_services/models/media_workflow_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_configuration.py b/src/oci/media_services/models/media_workflow_configuration.py index 4ceb3eab6e..61a567ad45 100644 --- a/src/oci/media_services/models/media_workflow_configuration.py +++ b/src/oci/media_services/models/media_workflow_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_configuration_collection.py b/src/oci/media_services/models/media_workflow_configuration_collection.py index 7964fd6c2b..be084f3ed5 100644 --- a/src/oci/media_services/models/media_workflow_configuration_collection.py +++ b/src/oci/media_services/models/media_workflow_configuration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_configuration_summary.py b/src/oci/media_services/models/media_workflow_configuration_summary.py index dbe726d918..186c75009f 100644 --- a/src/oci/media_services/models/media_workflow_configuration_summary.py +++ b/src/oci/media_services/models/media_workflow_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_job.py b/src/oci/media_services/models/media_workflow_job.py index fd50902a24..51eee9cc1a 100644 --- a/src/oci/media_services/models/media_workflow_job.py +++ b/src/oci/media_services/models/media_workflow_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_job_collection.py b/src/oci/media_services/models/media_workflow_job_collection.py index efbef655a0..5c714edca0 100644 --- a/src/oci/media_services/models/media_workflow_job_collection.py +++ b/src/oci/media_services/models/media_workflow_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_job_summary.py b/src/oci/media_services/models/media_workflow_job_summary.py index 45a5451db5..6924b23e1d 100644 --- a/src/oci/media_services/models/media_workflow_job_summary.py +++ b/src/oci/media_services/models/media_workflow_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_summary.py b/src/oci/media_services/models/media_workflow_summary.py index c457e2f2f5..4bf2d1d931 100644 --- a/src/oci/media_services/models/media_workflow_summary.py +++ b/src/oci/media_services/models/media_workflow_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_task.py b/src/oci/media_services/models/media_workflow_task.py index ddb78173af..f87737e96e 100644 --- a/src/oci/media_services/models/media_workflow_task.py +++ b/src/oci/media_services/models/media_workflow_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_task_declaration.py b/src/oci/media_services/models/media_workflow_task_declaration.py index 40ee3fb1e0..3a4474ddb4 100644 --- a/src/oci/media_services/models/media_workflow_task_declaration.py +++ b/src/oci/media_services/models/media_workflow_task_declaration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_task_declaration_collection.py b/src/oci/media_services/models/media_workflow_task_declaration_collection.py index 9c5a2e4f10..0020fef5f7 100644 --- a/src/oci/media_services/models/media_workflow_task_declaration_collection.py +++ b/src/oci/media_services/models/media_workflow_task_declaration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/media_workflow_task_state.py b/src/oci/media_services/models/media_workflow_task_state.py index 98178d719a..b097733ca8 100644 --- a/src/oci/media_services/models/media_workflow_task_state.py +++ b/src/oci/media_services/models/media_workflow_task_state.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/metadata.py b/src/oci/media_services/models/metadata.py index 995b8cc6f4..f80ffda6d8 100644 --- a/src/oci/media_services/models/metadata.py +++ b/src/oci/media_services/models/metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/remove_lock_details.py b/src/oci/media_services/models/remove_lock_details.py index ec5163b65b..1ba8fef1ac 100644 --- a/src/oci/media_services/models/remove_lock_details.py +++ b/src/oci/media_services/models/remove_lock_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/resource_lock.py b/src/oci/media_services/models/resource_lock.py index 74b830ffd6..122247f1bd 100644 --- a/src/oci/media_services/models/resource_lock.py +++ b/src/oci/media_services/models/resource_lock.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/session_token.py b/src/oci/media_services/models/session_token.py index 60c630272b..61eea5c8f8 100644 --- a/src/oci/media_services/models/session_token.py +++ b/src/oci/media_services/models/session_token.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_cdn_config.py b/src/oci/media_services/models/stream_cdn_config.py index 84873b47bd..a3bc4d3ce8 100644 --- a/src/oci/media_services/models/stream_cdn_config.py +++ b/src/oci/media_services/models/stream_cdn_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_cdn_config_collection.py b/src/oci/media_services/models/stream_cdn_config_collection.py index fe8adaffd7..2c01a91b1d 100644 --- a/src/oci/media_services/models/stream_cdn_config_collection.py +++ b/src/oci/media_services/models/stream_cdn_config_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_cdn_config_section.py b/src/oci/media_services/models/stream_cdn_config_section.py index 3e8beb26c2..e1ef759792 100644 --- a/src/oci/media_services/models/stream_cdn_config_section.py +++ b/src/oci/media_services/models/stream_cdn_config_section.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_cdn_config_summary.py b/src/oci/media_services/models/stream_cdn_config_summary.py index bf07d6521a..44b86a2c2f 100644 --- a/src/oci/media_services/models/stream_cdn_config_summary.py +++ b/src/oci/media_services/models/stream_cdn_config_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_distribution_channel.py b/src/oci/media_services/models/stream_distribution_channel.py index 2b5af0ce01..f2d3e37f0d 100644 --- a/src/oci/media_services/models/stream_distribution_channel.py +++ b/src/oci/media_services/models/stream_distribution_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_distribution_channel_collection.py b/src/oci/media_services/models/stream_distribution_channel_collection.py index 9b8216e79a..027b22a3c2 100644 --- a/src/oci/media_services/models/stream_distribution_channel_collection.py +++ b/src/oci/media_services/models/stream_distribution_channel_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_distribution_channel_summary.py b/src/oci/media_services/models/stream_distribution_channel_summary.py index cfdcd2ab24..7fb108bc32 100644 --- a/src/oci/media_services/models/stream_distribution_channel_summary.py +++ b/src/oci/media_services/models/stream_distribution_channel_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_packaging_config.py b/src/oci/media_services/models/stream_packaging_config.py index 03ebdbfdde..775173e3dd 100644 --- a/src/oci/media_services/models/stream_packaging_config.py +++ b/src/oci/media_services/models/stream_packaging_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_packaging_config_collection.py b/src/oci/media_services/models/stream_packaging_config_collection.py index 07dca43664..848924eb6b 100644 --- a/src/oci/media_services/models/stream_packaging_config_collection.py +++ b/src/oci/media_services/models/stream_packaging_config_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_packaging_config_encryption.py b/src/oci/media_services/models/stream_packaging_config_encryption.py index f6c26bfca2..7487c2ad3a 100644 --- a/src/oci/media_services/models/stream_packaging_config_encryption.py +++ b/src/oci/media_services/models/stream_packaging_config_encryption.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_packaging_config_encryption_aes128.py b/src/oci/media_services/models/stream_packaging_config_encryption_aes128.py index ee1f80c9dc..2517534265 100644 --- a/src/oci/media_services/models/stream_packaging_config_encryption_aes128.py +++ b/src/oci/media_services/models/stream_packaging_config_encryption_aes128.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_packaging_config_encryption_none.py b/src/oci/media_services/models/stream_packaging_config_encryption_none.py index f300f22d4b..f0900c4e98 100644 --- a/src/oci/media_services/models/stream_packaging_config_encryption_none.py +++ b/src/oci/media_services/models/stream_packaging_config_encryption_none.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/stream_packaging_config_summary.py b/src/oci/media_services/models/stream_packaging_config_summary.py index d7689d49cb..806b643572 100644 --- a/src/oci/media_services/models/stream_packaging_config_summary.py +++ b/src/oci/media_services/models/stream_packaging_config_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/system_media_workflow.py b/src/oci/media_services/models/system_media_workflow.py index 5fc211d859..be31d14122 100644 --- a/src/oci/media_services/models/system_media_workflow.py +++ b/src/oci/media_services/models/system_media_workflow.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/system_media_workflow_collection.py b/src/oci/media_services/models/system_media_workflow_collection.py index 9aa4e18a21..94e1d956e4 100644 --- a/src/oci/media_services/models/system_media_workflow_collection.py +++ b/src/oci/media_services/models/system_media_workflow_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/update_media_asset_details.py b/src/oci/media_services/models/update_media_asset_details.py index 195633aee0..d40a2324b7 100644 --- a/src/oci/media_services/models/update_media_asset_details.py +++ b/src/oci/media_services/models/update_media_asset_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/update_media_workflow_configuration_details.py b/src/oci/media_services/models/update_media_workflow_configuration_details.py index e0f7c44d8c..7fb6c8ae99 100644 --- a/src/oci/media_services/models/update_media_workflow_configuration_details.py +++ b/src/oci/media_services/models/update_media_workflow_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/update_media_workflow_details.py b/src/oci/media_services/models/update_media_workflow_details.py index 2b8d7f63c5..271d7abac7 100644 --- a/src/oci/media_services/models/update_media_workflow_details.py +++ b/src/oci/media_services/models/update_media_workflow_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/update_media_workflow_job_details.py b/src/oci/media_services/models/update_media_workflow_job_details.py index d3fd70b426..41b7a45752 100644 --- a/src/oci/media_services/models/update_media_workflow_job_details.py +++ b/src/oci/media_services/models/update_media_workflow_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/update_stream_cdn_config_details.py b/src/oci/media_services/models/update_stream_cdn_config_details.py index 40b2b8eae0..ef47cfaabd 100644 --- a/src/oci/media_services/models/update_stream_cdn_config_details.py +++ b/src/oci/media_services/models/update_stream_cdn_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/update_stream_distribution_channel_details.py b/src/oci/media_services/models/update_stream_distribution_channel_details.py index be33fefff6..7cbdb2f985 100644 --- a/src/oci/media_services/models/update_stream_distribution_channel_details.py +++ b/src/oci/media_services/models/update_stream_distribution_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/media_services/models/update_stream_packaging_config_details.py b/src/oci/media_services/models/update_stream_packaging_config_details.py index 27f7fcc454..98716dd5da 100644 --- a/src/oci/media_services/models/update_stream_packaging_config_details.py +++ b/src/oci/media_services/models/update_stream_packaging_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211101 diff --git a/src/oci/monitoring/__init__.py b/src/oci/monitoring/__init__.py index c44b386dae..aecb71a58a 100644 --- a/src/oci/monitoring/__init__.py +++ b/src/oci/monitoring/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/__init__.py b/src/oci/monitoring/models/__init__.py index 08465743d3..2a4cc93fd8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/aggregated_datapoint.py b/src/oci/monitoring/models/aggregated_datapoint.py index 1c37a4ee5c..89dc5e2e6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm.py b/src/oci/monitoring/models/alarm.py index b5ecebe311..cdfe53c380 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_dimension_states_collection.py b/src/oci/monitoring/models/alarm_dimension_states_collection.py index d0b2e345d7..361289f9c5 100644 --- a/src/oci/monitoring/models/alarm_dimension_states_collection.py +++ b/src/oci/monitoring/models/alarm_dimension_states_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_dimension_states_entry.py b/src/oci/monitoring/models/alarm_dimension_states_entry.py index 9956029909..31af763b9e 100644 --- a/src/oci/monitoring/models/alarm_dimension_states_entry.py +++ b/src/oci/monitoring/models/alarm_dimension_states_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_history_collection.py b/src/oci/monitoring/models/alarm_history_collection.py index 043fa4a662..b2bc1ddecc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_history_entry.py b/src/oci/monitoring/models/alarm_history_entry.py index 9785ce8c76..c1653341d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_override.py b/src/oci/monitoring/models/alarm_override.py index 6af0ba7f78..242c4c2afb 100644 --- a/src/oci/monitoring/models/alarm_override.py +++ b/src/oci/monitoring/models/alarm_override.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_status_summary.py b/src/oci/monitoring/models/alarm_status_summary.py index 1f0f0e098d..bf13bb650f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_summary.py b/src/oci/monitoring/models/alarm_summary.py index ec42bc6f5f..91dbdea243 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_suppression.py b/src/oci/monitoring/models/alarm_suppression.py index fb2db62b6f..e18bcb29be 100644 --- a/src/oci/monitoring/models/alarm_suppression.py +++ b/src/oci/monitoring/models/alarm_suppression.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_suppression_alarm_target.py b/src/oci/monitoring/models/alarm_suppression_alarm_target.py index 70f7fb3dcc..3ba447c199 100644 --- a/src/oci/monitoring/models/alarm_suppression_alarm_target.py +++ b/src/oci/monitoring/models/alarm_suppression_alarm_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_suppression_collection.py b/src/oci/monitoring/models/alarm_suppression_collection.py index e0eb30f09f..02b0422c6f 100644 --- a/src/oci/monitoring/models/alarm_suppression_collection.py +++ b/src/oci/monitoring/models/alarm_suppression_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_suppression_compartment_target.py b/src/oci/monitoring/models/alarm_suppression_compartment_target.py index 3d3cda8665..7b96cfa350 100644 --- a/src/oci/monitoring/models/alarm_suppression_compartment_target.py +++ b/src/oci/monitoring/models/alarm_suppression_compartment_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_suppression_history_item.py b/src/oci/monitoring/models/alarm_suppression_history_item.py index 07c95e70ab..2f74822c9e 100644 --- a/src/oci/monitoring/models/alarm_suppression_history_item.py +++ b/src/oci/monitoring/models/alarm_suppression_history_item.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_suppression_history_item_collection.py b/src/oci/monitoring/models/alarm_suppression_history_item_collection.py index 5a88013fd3..bec773eddc 100644 --- a/src/oci/monitoring/models/alarm_suppression_history_item_collection.py +++ b/src/oci/monitoring/models/alarm_suppression_history_item_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_suppression_summary.py b/src/oci/monitoring/models/alarm_suppression_summary.py index 1c315cbbf7..0becd9bb39 100644 --- a/src/oci/monitoring/models/alarm_suppression_summary.py +++ b/src/oci/monitoring/models/alarm_suppression_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/alarm_suppression_target.py b/src/oci/monitoring/models/alarm_suppression_target.py index 35a79691ea..3bb146a2f0 100644 --- a/src/oci/monitoring/models/alarm_suppression_target.py +++ b/src/oci/monitoring/models/alarm_suppression_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/change_alarm_compartment_details.py b/src/oci/monitoring/models/change_alarm_compartment_details.py index 0b75c7ea5a..66a0cef4f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/create_alarm_details.py b/src/oci/monitoring/models/create_alarm_details.py index f9ae43c232..127b48fc2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/create_alarm_suppression_details.py b/src/oci/monitoring/models/create_alarm_suppression_details.py index 1876be6f5d..041cf37d33 100644 --- a/src/oci/monitoring/models/create_alarm_suppression_details.py +++ b/src/oci/monitoring/models/create_alarm_suppression_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/datapoint.py b/src/oci/monitoring/models/datapoint.py index 73157ad9ab..db3cbc575a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/failed_metric_record.py b/src/oci/monitoring/models/failed_metric_record.py index fe048baff4..ab1aee9090 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/list_metrics_details.py b/src/oci/monitoring/models/list_metrics_details.py index ba114d2ea3..ce5e72511a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/metric.py b/src/oci/monitoring/models/metric.py index ee935d2e1a..c756cc364c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/metric_data.py b/src/oci/monitoring/models/metric_data.py index bc5ff8894d..a2844d0b05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/metric_data_details.py b/src/oci/monitoring/models/metric_data_details.py index cac26efd15..461b5e19fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/post_metric_data_details.py b/src/oci/monitoring/models/post_metric_data_details.py index ad3b57b6d9..723fecbf1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 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 eba5692de0..bec3eee919 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/recurrence.py b/src/oci/monitoring/models/recurrence.py index a646688a3b..856c59fca9 100644 --- a/src/oci/monitoring/models/recurrence.py +++ b/src/oci/monitoring/models/recurrence.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/retrieve_dimension_states_details.py b/src/oci/monitoring/models/retrieve_dimension_states_details.py index f02e835064..428b9a532f 100644 --- a/src/oci/monitoring/models/retrieve_dimension_states_details.py +++ b/src/oci/monitoring/models/retrieve_dimension_states_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/summarize_alarm_suppression_history_details.py b/src/oci/monitoring/models/summarize_alarm_suppression_history_details.py index 067d235463..fa32f6a9ac 100644 --- a/src/oci/monitoring/models/summarize_alarm_suppression_history_details.py +++ b/src/oci/monitoring/models/summarize_alarm_suppression_history_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/summarize_metrics_data_details.py b/src/oci/monitoring/models/summarize_metrics_data_details.py index 0559de1d5b..4dc99d119b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/suppression.py b/src/oci/monitoring/models/suppression.py index 684fcf97ae..da524bbb9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/suppression_condition.py b/src/oci/monitoring/models/suppression_condition.py index f979b54181..0d4c138aa4 100644 --- a/src/oci/monitoring/models/suppression_condition.py +++ b/src/oci/monitoring/models/suppression_condition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/models/update_alarm_details.py b/src/oci/monitoring/models/update_alarm_details.py index df73225824..ac7134f287 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/monitoring_client.py b/src/oci/monitoring/monitoring_client.py index 9eaebdac50..e7c004c626 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/monitoring/monitoring_client_composite_operations.py b/src/oci/monitoring/monitoring_client_composite_operations.py index 3490e9b214..7c54a22f99 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180401 diff --git a/src/oci/mysql/__init__.py b/src/oci/mysql/__init__.py index 3b79831486..1cc60d0678 100644 --- a/src/oci/mysql/__init__.py +++ b/src/oci/mysql/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/channels_client.py b/src/oci/mysql/channels_client.py index 845af182d0..4e2051f1d1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/channels_client_composite_operations.py b/src/oci/mysql/channels_client_composite_operations.py index 7bc5fc6118..329c09a1a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/db_backups_client.py b/src/oci/mysql/db_backups_client.py index 596fa68eaf..0022f85f5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/db_backups_client_composite_operations.py b/src/oci/mysql/db_backups_client_composite_operations.py index af5ab96d95..1e66d76102 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/db_system_client.py b/src/oci/mysql/db_system_client.py index 8ab47725f4..b6795b52c7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/db_system_client_composite_operations.py b/src/oci/mysql/db_system_client_composite_operations.py index d01b39215a..c1d28663c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/__init__.py b/src/oci/mysql/models/__init__.py index 7224d96746..4c529aba60 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 fefd7e3f2e..d039e74ee6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/anonymous_transactions_handling.py b/src/oci/mysql/models/anonymous_transactions_handling.py index ac9867ce39..e6ebda4466 100644 --- a/src/oci/mysql/models/anonymous_transactions_handling.py +++ b/src/oci/mysql/models/anonymous_transactions_handling.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/assign_manual_uuid_handling.py b/src/oci/mysql/models/assign_manual_uuid_handling.py index c6c85f0fc6..8e1096ceef 100644 --- a/src/oci/mysql/models/assign_manual_uuid_handling.py +++ b/src/oci/mysql/models/assign_manual_uuid_handling.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/assign_target_uuid_handling.py b/src/oci/mysql/models/assign_target_uuid_handling.py index 6c7ad0c7e7..7f76f7027b 100644 --- a/src/oci/mysql/models/assign_target_uuid_handling.py +++ b/src/oci/mysql/models/assign_target_uuid_handling.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/backup.py b/src/oci/mysql/models/backup.py index 361553275e..f4b663f680 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/backup_policy.py b/src/oci/mysql/models/backup_policy.py index e993561b87..b0a3bc6abe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/backup_summary.py b/src/oci/mysql/models/backup_summary.py index 1c4a6a0b93..e7bcf11f4c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/ca_certificate.py b/src/oci/mysql/models/ca_certificate.py index 0f3616a0c2..5b9d456b26 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/change_backup_compartment_details.py b/src/oci/mysql/models/change_backup_compartment_details.py index 96218f0c09..9278d5f477 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/channel.py b/src/oci/mysql/models/channel.py index 89084242f5..531e42ace3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/channel_filter.py b/src/oci/mysql/models/channel_filter.py index 543878ee15..3ff1ad25d3 100644 --- a/src/oci/mysql/models/channel_filter.py +++ b/src/oci/mysql/models/channel_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/channel_source.py b/src/oci/mysql/models/channel_source.py index 683ff46425..2a3178caa0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/channel_source_mysql.py b/src/oci/mysql/models/channel_source_mysql.py index 06b97001d8..b70a80f366 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/channel_summary.py b/src/oci/mysql/models/channel_summary.py index 01baa658f5..83786f2bf2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/channel_target.py b/src/oci/mysql/models/channel_target.py index 3ea2b91ea5..8147b05fd7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/channel_target_db_system.py b/src/oci/mysql/models/channel_target_db_system.py index 57603316a6..283635b96f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/configuration.py b/src/oci/mysql/models/configuration.py index 82a059b833..685395f5ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/configuration_summary.py b/src/oci/mysql/models/configuration_summary.py index f620cec4a9..012af7d822 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/configuration_variables.py b/src/oci/mysql/models/configuration_variables.py index 65da36fb44..3bafc19106 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/copy_backup_details.py b/src/oci/mysql/models/copy_backup_details.py index 5bbd75d54a..74b98e8998 100644 --- a/src/oci/mysql/models/copy_backup_details.py +++ b/src/oci/mysql/models/copy_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_backup_details.py b/src/oci/mysql/models/create_backup_details.py index caba8a369b..428fccc7c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_backup_policy_details.py b/src/oci/mysql/models/create_backup_policy_details.py index 0a5d797507..b9fc500843 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_channel_details.py b/src/oci/mysql/models/create_channel_details.py index ce915c9bcf..50417258d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_channel_source_details.py b/src/oci/mysql/models/create_channel_source_details.py index 0b1f8bc3a1..4d43fec734 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 16c0a2f0f5..2da4750ae6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_channel_target_details.py b/src/oci/mysql/models/create_channel_target_details.py index 209d21253a..b0fe613228 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 c152a192d1..d2a0e3f5bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_configuration_details.py b/src/oci/mysql/models/create_configuration_details.py index 3d66a528e7..8df129b923 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_db_system_details.py b/src/oci/mysql/models/create_db_system_details.py index 73d3a74d68..83807dedeb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 e3451b06ae..c434ad91a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 44cb33312b..9a68a7db2e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 f0097dc48f..f7ac64ea4f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_db_system_source_from_pitr_details.py b/src/oci/mysql/models/create_db_system_source_from_pitr_details.py index 896dd8bac8..00a640fc94 100644 --- a/src/oci/mysql/models/create_db_system_source_from_pitr_details.py +++ b/src/oci/mysql/models/create_db_system_source_from_pitr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 1019c7cfcc..9983b7c83e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_deletion_policy_details.py b/src/oci/mysql/models/create_deletion_policy_details.py index d74ea3a71d..9bbb9677d9 100644 --- a/src/oci/mysql/models/create_deletion_policy_details.py +++ b/src/oci/mysql/models/create_deletion_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_maintenance_details.py b/src/oci/mysql/models/create_maintenance_details.py index 9200b63daf..9ed4b9045d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/create_replica_details.py b/src/oci/mysql/models/create_replica_details.py index b4dfe62ae5..a140680904 100644 --- a/src/oci/mysql/models/create_replica_details.py +++ b/src/oci/mysql/models/create_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/customer_contact.py b/src/oci/mysql/models/customer_contact.py index 75d34236f0..9cd7d6abb8 100644 --- a/src/oci/mysql/models/customer_contact.py +++ b/src/oci/mysql/models/customer_contact.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/data_storage.py b/src/oci/mysql/models/data_storage.py index fada857364..cbffbe3a63 100644 --- a/src/oci/mysql/models/data_storage.py +++ b/src/oci/mysql/models/data_storage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/data_storage_details.py b/src/oci/mysql/models/data_storage_details.py index 1309f4dec1..04567cc79a 100644 --- a/src/oci/mysql/models/data_storage_details.py +++ b/src/oci/mysql/models/data_storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/db_system.py b/src/oci/mysql/models/db_system.py index 7ac5dc4d76..093a606f22 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/db_system_endpoint.py b/src/oci/mysql/models/db_system_endpoint.py index b6ed443b0b..c290ac1fe0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/db_system_placement.py b/src/oci/mysql/models/db_system_placement.py index cfed453f61..96a0c76c05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/db_system_snapshot.py b/src/oci/mysql/models/db_system_snapshot.py index 42050b6ca7..694d02a019 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/db_system_snapshot_summary.py b/src/oci/mysql/models/db_system_snapshot_summary.py index 56f5fff9c2..33a9c21108 100644 --- a/src/oci/mysql/models/db_system_snapshot_summary.py +++ b/src/oci/mysql/models/db_system_snapshot_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/db_system_source.py b/src/oci/mysql/models/db_system_source.py index b4164aa162..86fe7f376d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 fbba3c5b93..8810668327 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 929a98a248..4278c920fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/db_system_source_from_pitr.py b/src/oci/mysql/models/db_system_source_from_pitr.py index 45977c1006..653b3794e7 100644 --- a/src/oci/mysql/models/db_system_source_from_pitr.py +++ b/src/oci/mysql/models/db_system_source_from_pitr.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 b0c8e49204..e827fad942 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/db_system_summary.py b/src/oci/mysql/models/db_system_summary.py index c08f270318..4fdb6ef109 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/deletion_policy_details.py b/src/oci/mysql/models/deletion_policy_details.py index 65cfd53ad7..68023cfda8 100644 --- a/src/oci/mysql/models/deletion_policy_details.py +++ b/src/oci/mysql/models/deletion_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/error_on_anonymous_handling.py b/src/oci/mysql/models/error_on_anonymous_handling.py index 1c93d4046f..4a5203c5f1 100644 --- a/src/oci/mysql/models/error_on_anonymous_handling.py +++ b/src/oci/mysql/models/error_on_anonymous_handling.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/heat_wave_cluster.py b/src/oci/mysql/models/heat_wave_cluster.py index 1596144465..6b0e9cca7e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 88076ea5c4..c05ff66812 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 d133053e13..31828d84df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/heat_wave_cluster_summary.py b/src/oci/mysql/models/heat_wave_cluster_summary.py index 02fe7e47db..c3c99da832 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 5032032489..da16632742 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/heat_wave_node.py b/src/oci/mysql/models/heat_wave_node.py index 1a046cd8e6..a91206bfc0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/initialization_variables.py b/src/oci/mysql/models/initialization_variables.py index 8ffbae46fa..be4eac2c10 100644 --- a/src/oci/mysql/models/initialization_variables.py +++ b/src/oci/mysql/models/initialization_variables.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/maintenance_details.py b/src/oci/mysql/models/maintenance_details.py index b62b186986..a0e3e15f6f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/pem_ca_certificate.py b/src/oci/mysql/models/pem_ca_certificate.py index c52ebf81e7..9808bafe93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/pitr_policy.py b/src/oci/mysql/models/pitr_policy.py index a5b5110530..a0eb3050ac 100644 --- a/src/oci/mysql/models/pitr_policy.py +++ b/src/oci/mysql/models/pitr_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/point_in_time_recovery_details.py b/src/oci/mysql/models/point_in_time_recovery_details.py index 35458b160b..35c900f5be 100644 --- a/src/oci/mysql/models/point_in_time_recovery_details.py +++ b/src/oci/mysql/models/point_in_time_recovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/replica.py b/src/oci/mysql/models/replica.py index 898bbed5e0..b106762514 100644 --- a/src/oci/mysql/models/replica.py +++ b/src/oci/mysql/models/replica.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/replica_overrides.py b/src/oci/mysql/models/replica_overrides.py index 426cecc622..fe64d47be1 100644 --- a/src/oci/mysql/models/replica_overrides.py +++ b/src/oci/mysql/models/replica_overrides.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/replica_summary.py b/src/oci/mysql/models/replica_summary.py index f73623d7b7..0483b00459 100644 --- a/src/oci/mysql/models/replica_summary.py +++ b/src/oci/mysql/models/replica_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/restart_db_system_details.py b/src/oci/mysql/models/restart_db_system_details.py index c50f5fbd46..4ced3c7968 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/secure_connection_details.py b/src/oci/mysql/models/secure_connection_details.py index 355263e026..5930952b04 100644 --- a/src/oci/mysql/models/secure_connection_details.py +++ b/src/oci/mysql/models/secure_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/shape_summary.py b/src/oci/mysql/models/shape_summary.py index bdaf3c09c8..a0098eb4ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/stop_db_system_details.py b/src/oci/mysql/models/stop_db_system_details.py index 015ef015e9..2088ee1e66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_backup_details.py b/src/oci/mysql/models/update_backup_details.py index 5be71a193a..38a1f4bd97 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_backup_policy_details.py b/src/oci/mysql/models/update_backup_policy_details.py index 78d1678d66..3c0295f451 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_channel_details.py b/src/oci/mysql/models/update_channel_details.py index a05eddf37e..c38e5fa2e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_channel_source_details.py b/src/oci/mysql/models/update_channel_source_details.py index dc22b700aa..9e36ddcac7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 d1bbaf130e..e118630f33 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_channel_target_details.py b/src/oci/mysql/models/update_channel_target_details.py index 8dc85a3990..d87482ea93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 f244b5adbb..d00fbb6a36 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_configuration_details.py b/src/oci/mysql/models/update_configuration_details.py index d7cd555318..2d08d6ba4e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_db_system_details.py b/src/oci/mysql/models/update_db_system_details.py index 201730067b..1b1edaa2bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_deletion_policy_details.py b/src/oci/mysql/models/update_deletion_policy_details.py index 36902f72d5..9346ee3aa2 100644 --- a/src/oci/mysql/models/update_deletion_policy_details.py +++ b/src/oci/mysql/models/update_deletion_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 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 21537443c9..99d6f0cf56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_maintenance_details.py b/src/oci/mysql/models/update_maintenance_details.py index 75e4cf1b52..b4b3fabf2b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/update_replica_details.py b/src/oci/mysql/models/update_replica_details.py index 7c951e26d8..892dcfe8fb 100644 --- a/src/oci/mysql/models/update_replica_details.py +++ b/src/oci/mysql/models/update_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/version.py b/src/oci/mysql/models/version.py index 0b9feb7371..76e9463c49 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/version_summary.py b/src/oci/mysql/models/version_summary.py index e952e23b3c..0c0ac44971 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/work_request.py b/src/oci/mysql/models/work_request.py index b17acd5204..f5a2ec8573 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/work_request_error.py b/src/oci/mysql/models/work_request_error.py index 0ecfb48683..0f456d9b2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/work_request_log_entry.py b/src/oci/mysql/models/work_request_log_entry.py index 1e3d5fd990..1b64f960dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/work_request_resource.py b/src/oci/mysql/models/work_request_resource.py index 7c793b040b..cf3e44ed84 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/models/work_request_summary.py b/src/oci/mysql/models/work_request_summary.py index 8be195cee9..6735cf9486 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/mysqlaas_client.py b/src/oci/mysql/mysqlaas_client.py index 649260025e..1fe02f9431 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/mysqlaas_client_composite_operations.py b/src/oci/mysql/mysqlaas_client_composite_operations.py index 43a6f779f7..64177efa92 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/replicas_client.py b/src/oci/mysql/replicas_client.py index 8b89ebc2eb..4592a94d77 100644 --- a/src/oci/mysql/replicas_client.py +++ b/src/oci/mysql/replicas_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/replicas_client_composite_operations.py b/src/oci/mysql/replicas_client_composite_operations.py index 70bbf9f373..564d6da165 100644 --- a/src/oci/mysql/replicas_client_composite_operations.py +++ b/src/oci/mysql/replicas_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/work_requests_client.py b/src/oci/mysql/work_requests_client.py index f05f80b350..b37a91f9ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/mysql/work_requests_client_composite_operations.py b/src/oci/mysql/work_requests_client_composite_operations.py index a5b4b071fc..ebe0ba010d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190415 diff --git a/src/oci/network_firewall/__init__.py b/src/oci/network_firewall/__init__.py index 4763daa9bd..8dcdce7327 100644 --- a/src/oci/network_firewall/__init__.py +++ b/src/oci/network_firewall/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/__init__.py b/src/oci/network_firewall/models/__init__.py index 33ce1e0ef3..6d8a87def8 100644 --- a/src/oci/network_firewall/models/__init__.py +++ b/src/oci/network_firewall/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/address_list.py b/src/oci/network_firewall/models/address_list.py index a640636209..47fe76c714 100644 --- a/src/oci/network_firewall/models/address_list.py +++ b/src/oci/network_firewall/models/address_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/address_list_summary.py b/src/oci/network_firewall/models/address_list_summary.py index f63c717d04..5a91f9de82 100644 --- a/src/oci/network_firewall/models/address_list_summary.py +++ b/src/oci/network_firewall/models/address_list_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/address_list_summary_collection.py b/src/oci/network_firewall/models/address_list_summary_collection.py index 9573f0c0fc..37b704b2cf 100644 --- a/src/oci/network_firewall/models/address_list_summary_collection.py +++ b/src/oci/network_firewall/models/address_list_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/application.py b/src/oci/network_firewall/models/application.py index 3d412620e2..59101f2da3 100644 --- a/src/oci/network_firewall/models/application.py +++ b/src/oci/network_firewall/models/application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/application_group.py b/src/oci/network_firewall/models/application_group.py index 0b371c7871..47ded0a5a4 100644 --- a/src/oci/network_firewall/models/application_group.py +++ b/src/oci/network_firewall/models/application_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/application_group_summary.py b/src/oci/network_firewall/models/application_group_summary.py index 53354a022d..6f1a785e83 100644 --- a/src/oci/network_firewall/models/application_group_summary.py +++ b/src/oci/network_firewall/models/application_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/application_group_summary_collection.py b/src/oci/network_firewall/models/application_group_summary_collection.py index b3be5be00b..05a9770d5e 100644 --- a/src/oci/network_firewall/models/application_group_summary_collection.py +++ b/src/oci/network_firewall/models/application_group_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/application_summary.py b/src/oci/network_firewall/models/application_summary.py index 23f487f414..43904e42da 100644 --- a/src/oci/network_firewall/models/application_summary.py +++ b/src/oci/network_firewall/models/application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/application_summary_collection.py b/src/oci/network_firewall/models/application_summary_collection.py index 09a538030f..8bc902c772 100644 --- a/src/oci/network_firewall/models/application_summary_collection.py +++ b/src/oci/network_firewall/models/application_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/apply_network_firewall_policy_details.py b/src/oci/network_firewall/models/apply_network_firewall_policy_details.py index a18a65681f..3e927440f5 100644 --- a/src/oci/network_firewall/models/apply_network_firewall_policy_details.py +++ b/src/oci/network_firewall/models/apply_network_firewall_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/change_network_firewall_compartment_details.py b/src/oci/network_firewall/models/change_network_firewall_compartment_details.py index 1998c0fff9..541136c6f1 100644 --- a/src/oci/network_firewall/models/change_network_firewall_compartment_details.py +++ b/src/oci/network_firewall/models/change_network_firewall_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/change_network_firewall_policy_compartment_details.py b/src/oci/network_firewall/models/change_network_firewall_policy_compartment_details.py index 183138f8da..7e24c896e7 100644 --- a/src/oci/network_firewall/models/change_network_firewall_policy_compartment_details.py +++ b/src/oci/network_firewall/models/change_network_firewall_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/clone_network_firewall_policy_details.py b/src/oci/network_firewall/models/clone_network_firewall_policy_details.py index 7801dd6d61..3583e8c373 100644 --- a/src/oci/network_firewall/models/clone_network_firewall_policy_details.py +++ b/src/oci/network_firewall/models/clone_network_firewall_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_address_list_details.py b/src/oci/network_firewall/models/create_address_list_details.py index 187ba35267..9876d9bfb8 100644 --- a/src/oci/network_firewall/models/create_address_list_details.py +++ b/src/oci/network_firewall/models/create_address_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_application_details.py b/src/oci/network_firewall/models/create_application_details.py index 6d94a145e5..4ca551bb31 100644 --- a/src/oci/network_firewall/models/create_application_details.py +++ b/src/oci/network_firewall/models/create_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_application_group_details.py b/src/oci/network_firewall/models/create_application_group_details.py index 758dcd2526..ba43812479 100644 --- a/src/oci/network_firewall/models/create_application_group_details.py +++ b/src/oci/network_firewall/models/create_application_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_decryption_profile_details.py b/src/oci/network_firewall/models/create_decryption_profile_details.py index 1af97d4e80..09e0e0d6b5 100644 --- a/src/oci/network_firewall/models/create_decryption_profile_details.py +++ b/src/oci/network_firewall/models/create_decryption_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_decryption_rule_details.py b/src/oci/network_firewall/models/create_decryption_rule_details.py index d47995ac79..1113037d44 100644 --- a/src/oci/network_firewall/models/create_decryption_rule_details.py +++ b/src/oci/network_firewall/models/create_decryption_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_icmp6_application_details.py b/src/oci/network_firewall/models/create_icmp6_application_details.py index 403848e194..c0c40bb668 100644 --- a/src/oci/network_firewall/models/create_icmp6_application_details.py +++ b/src/oci/network_firewall/models/create_icmp6_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_icmp_application_details.py b/src/oci/network_firewall/models/create_icmp_application_details.py index 5a46eb462f..53161e2ed5 100644 --- a/src/oci/network_firewall/models/create_icmp_application_details.py +++ b/src/oci/network_firewall/models/create_icmp_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_mapped_secret_details.py b/src/oci/network_firewall/models/create_mapped_secret_details.py index 4596fa83e9..0f1ec58901 100644 --- a/src/oci/network_firewall/models/create_mapped_secret_details.py +++ b/src/oci/network_firewall/models/create_mapped_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_network_firewall_details.py b/src/oci/network_firewall/models/create_network_firewall_details.py index 8f0487ae4c..e84ea58d81 100644 --- a/src/oci/network_firewall/models/create_network_firewall_details.py +++ b/src/oci/network_firewall/models/create_network_firewall_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_network_firewall_policy_details.py b/src/oci/network_firewall/models/create_network_firewall_policy_details.py index b615204488..b62899cdbc 100644 --- a/src/oci/network_firewall/models/create_network_firewall_policy_details.py +++ b/src/oci/network_firewall/models/create_network_firewall_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_security_rule_details.py b/src/oci/network_firewall/models/create_security_rule_details.py index 833f4adb7e..bde8d974da 100644 --- a/src/oci/network_firewall/models/create_security_rule_details.py +++ b/src/oci/network_firewall/models/create_security_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_service_details.py b/src/oci/network_firewall/models/create_service_details.py index 35c1e1f793..cb73e38650 100644 --- a/src/oci/network_firewall/models/create_service_details.py +++ b/src/oci/network_firewall/models/create_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_service_list_details.py b/src/oci/network_firewall/models/create_service_list_details.py index 4c15c616e9..b16a8f0288 100644 --- a/src/oci/network_firewall/models/create_service_list_details.py +++ b/src/oci/network_firewall/models/create_service_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_ssl_forward_proxy_profile_details.py b/src/oci/network_firewall/models/create_ssl_forward_proxy_profile_details.py index e2e287d72b..162419ae1d 100644 --- a/src/oci/network_firewall/models/create_ssl_forward_proxy_profile_details.py +++ b/src/oci/network_firewall/models/create_ssl_forward_proxy_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_ssl_inbound_inspection_profile_details.py b/src/oci/network_firewall/models/create_ssl_inbound_inspection_profile_details.py index 4990da0904..13fb0be0a7 100644 --- a/src/oci/network_firewall/models/create_ssl_inbound_inspection_profile_details.py +++ b/src/oci/network_firewall/models/create_ssl_inbound_inspection_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_tcp_service_details.py b/src/oci/network_firewall/models/create_tcp_service_details.py index 437ce6589c..ec754f7ade 100644 --- a/src/oci/network_firewall/models/create_tcp_service_details.py +++ b/src/oci/network_firewall/models/create_tcp_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_tunnel_inspection_rule_details.py b/src/oci/network_firewall/models/create_tunnel_inspection_rule_details.py index e8d8f10dd9..8644126232 100644 --- a/src/oci/network_firewall/models/create_tunnel_inspection_rule_details.py +++ b/src/oci/network_firewall/models/create_tunnel_inspection_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_udp_service_details.py b/src/oci/network_firewall/models/create_udp_service_details.py index 160d858226..d97bfbf1d6 100644 --- a/src/oci/network_firewall/models/create_udp_service_details.py +++ b/src/oci/network_firewall/models/create_udp_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_url_list_details.py b/src/oci/network_firewall/models/create_url_list_details.py index 8ec287c998..dfbdbd202e 100644 --- a/src/oci/network_firewall/models/create_url_list_details.py +++ b/src/oci/network_firewall/models/create_url_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_vault_mapped_secret_details.py b/src/oci/network_firewall/models/create_vault_mapped_secret_details.py index 0c417db01b..458c272f75 100644 --- a/src/oci/network_firewall/models/create_vault_mapped_secret_details.py +++ b/src/oci/network_firewall/models/create_vault_mapped_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/create_vxlan_inspection_rule_details.py b/src/oci/network_firewall/models/create_vxlan_inspection_rule_details.py index e7385d32fc..42ca364e9e 100644 --- a/src/oci/network_firewall/models/create_vxlan_inspection_rule_details.py +++ b/src/oci/network_firewall/models/create_vxlan_inspection_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/decryption_profile.py b/src/oci/network_firewall/models/decryption_profile.py index eca2abcae9..c4a2b75b39 100644 --- a/src/oci/network_firewall/models/decryption_profile.py +++ b/src/oci/network_firewall/models/decryption_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/decryption_profile_summary.py b/src/oci/network_firewall/models/decryption_profile_summary.py index 0569756de5..72d825b236 100644 --- a/src/oci/network_firewall/models/decryption_profile_summary.py +++ b/src/oci/network_firewall/models/decryption_profile_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/decryption_profile_summary_collection.py b/src/oci/network_firewall/models/decryption_profile_summary_collection.py index 947e1bfa93..045241bebf 100644 --- a/src/oci/network_firewall/models/decryption_profile_summary_collection.py +++ b/src/oci/network_firewall/models/decryption_profile_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/decryption_rule.py b/src/oci/network_firewall/models/decryption_rule.py index 6418a740d4..314baebcf4 100644 --- a/src/oci/network_firewall/models/decryption_rule.py +++ b/src/oci/network_firewall/models/decryption_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/decryption_rule_match_criteria.py b/src/oci/network_firewall/models/decryption_rule_match_criteria.py index 1260fb5e99..c21640d4e2 100644 --- a/src/oci/network_firewall/models/decryption_rule_match_criteria.py +++ b/src/oci/network_firewall/models/decryption_rule_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/decryption_rule_summary.py b/src/oci/network_firewall/models/decryption_rule_summary.py index 793f544ca5..f341dcd28c 100644 --- a/src/oci/network_firewall/models/decryption_rule_summary.py +++ b/src/oci/network_firewall/models/decryption_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/decryption_rule_summary_collection.py b/src/oci/network_firewall/models/decryption_rule_summary_collection.py index 18794b9520..c76399f052 100644 --- a/src/oci/network_firewall/models/decryption_rule_summary_collection.py +++ b/src/oci/network_firewall/models/decryption_rule_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/icmp6_application.py b/src/oci/network_firewall/models/icmp6_application.py index b7ad99dbf4..593234ccb4 100644 --- a/src/oci/network_firewall/models/icmp6_application.py +++ b/src/oci/network_firewall/models/icmp6_application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/icmp6_application_summary.py b/src/oci/network_firewall/models/icmp6_application_summary.py index b165827535..23dd62e11f 100644 --- a/src/oci/network_firewall/models/icmp6_application_summary.py +++ b/src/oci/network_firewall/models/icmp6_application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/icmp_application.py b/src/oci/network_firewall/models/icmp_application.py index 34c4d5b38f..43fc64ff45 100644 --- a/src/oci/network_firewall/models/icmp_application.py +++ b/src/oci/network_firewall/models/icmp_application.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/icmp_application_summary.py b/src/oci/network_firewall/models/icmp_application_summary.py index 5fcef74a88..0568bf1090 100644 --- a/src/oci/network_firewall/models/icmp_application_summary.py +++ b/src/oci/network_firewall/models/icmp_application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/mapped_secret.py b/src/oci/network_firewall/models/mapped_secret.py index a884625e40..ee1aea0788 100644 --- a/src/oci/network_firewall/models/mapped_secret.py +++ b/src/oci/network_firewall/models/mapped_secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/mapped_secret_summary.py b/src/oci/network_firewall/models/mapped_secret_summary.py index b3aaa54412..808980a44c 100644 --- a/src/oci/network_firewall/models/mapped_secret_summary.py +++ b/src/oci/network_firewall/models/mapped_secret_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/mapped_secret_summary_collection.py b/src/oci/network_firewall/models/mapped_secret_summary_collection.py index ffd2421ef0..3b4c9c9ee9 100644 --- a/src/oci/network_firewall/models/mapped_secret_summary_collection.py +++ b/src/oci/network_firewall/models/mapped_secret_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/network_firewall.py b/src/oci/network_firewall/models/network_firewall.py index 5c7ada18dc..d393e2f72e 100644 --- a/src/oci/network_firewall/models/network_firewall.py +++ b/src/oci/network_firewall/models/network_firewall.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/network_firewall_collection.py b/src/oci/network_firewall/models/network_firewall_collection.py index 6dfd9e0a57..97252c3704 100644 --- a/src/oci/network_firewall/models/network_firewall_collection.py +++ b/src/oci/network_firewall/models/network_firewall_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/network_firewall_policy.py b/src/oci/network_firewall/models/network_firewall_policy.py index 5a633a03b2..52f7948c46 100644 --- a/src/oci/network_firewall/models/network_firewall_policy.py +++ b/src/oci/network_firewall/models/network_firewall_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/network_firewall_policy_summary.py b/src/oci/network_firewall/models/network_firewall_policy_summary.py index 7b727d2c82..0f42ac6615 100644 --- a/src/oci/network_firewall/models/network_firewall_policy_summary.py +++ b/src/oci/network_firewall/models/network_firewall_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/network_firewall_policy_summary_collection.py b/src/oci/network_firewall/models/network_firewall_policy_summary_collection.py index 050fb9d721..7cd67a7d25 100644 --- a/src/oci/network_firewall/models/network_firewall_policy_summary_collection.py +++ b/src/oci/network_firewall/models/network_firewall_policy_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/network_firewall_summary.py b/src/oci/network_firewall/models/network_firewall_summary.py index 7026558a41..f51c8f3864 100644 --- a/src/oci/network_firewall/models/network_firewall_summary.py +++ b/src/oci/network_firewall/models/network_firewall_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/port_range.py b/src/oci/network_firewall/models/port_range.py index ed1d25cbc7..140da632ad 100644 --- a/src/oci/network_firewall/models/port_range.py +++ b/src/oci/network_firewall/models/port_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/rule_position.py b/src/oci/network_firewall/models/rule_position.py index 0888e33646..a73177872f 100644 --- a/src/oci/network_firewall/models/rule_position.py +++ b/src/oci/network_firewall/models/rule_position.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/security_rule.py b/src/oci/network_firewall/models/security_rule.py index 3cbb1f7524..dd52787a61 100644 --- a/src/oci/network_firewall/models/security_rule.py +++ b/src/oci/network_firewall/models/security_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/security_rule_match_criteria.py b/src/oci/network_firewall/models/security_rule_match_criteria.py index 297fe03f80..68accf28ab 100644 --- a/src/oci/network_firewall/models/security_rule_match_criteria.py +++ b/src/oci/network_firewall/models/security_rule_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/security_rule_summary.py b/src/oci/network_firewall/models/security_rule_summary.py index 9e91a70191..442a40e44d 100644 --- a/src/oci/network_firewall/models/security_rule_summary.py +++ b/src/oci/network_firewall/models/security_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/security_rule_summary_collection.py b/src/oci/network_firewall/models/security_rule_summary_collection.py index 5b2fd97967..85d43616c3 100644 --- a/src/oci/network_firewall/models/security_rule_summary_collection.py +++ b/src/oci/network_firewall/models/security_rule_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/service.py b/src/oci/network_firewall/models/service.py index 5157ec50b7..fc7715bdb7 100644 --- a/src/oci/network_firewall/models/service.py +++ b/src/oci/network_firewall/models/service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/service_list.py b/src/oci/network_firewall/models/service_list.py index e259ffb5a5..4f0c5cdfc9 100644 --- a/src/oci/network_firewall/models/service_list.py +++ b/src/oci/network_firewall/models/service_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/service_list_summary.py b/src/oci/network_firewall/models/service_list_summary.py index 70e0e4702b..029c7d82c6 100644 --- a/src/oci/network_firewall/models/service_list_summary.py +++ b/src/oci/network_firewall/models/service_list_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/service_list_summary_collection.py b/src/oci/network_firewall/models/service_list_summary_collection.py index a70748da8f..f6494a7102 100644 --- a/src/oci/network_firewall/models/service_list_summary_collection.py +++ b/src/oci/network_firewall/models/service_list_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/service_summary.py b/src/oci/network_firewall/models/service_summary.py index f22d0a05ec..098c69dca0 100644 --- a/src/oci/network_firewall/models/service_summary.py +++ b/src/oci/network_firewall/models/service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/service_summary_collection.py b/src/oci/network_firewall/models/service_summary_collection.py index a0171d07a3..d65b94e6da 100644 --- a/src/oci/network_firewall/models/service_summary_collection.py +++ b/src/oci/network_firewall/models/service_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/simple_url_pattern.py b/src/oci/network_firewall/models/simple_url_pattern.py index c100377176..6b86d8d353 100644 --- a/src/oci/network_firewall/models/simple_url_pattern.py +++ b/src/oci/network_firewall/models/simple_url_pattern.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/ssl_forward_proxy_profile.py b/src/oci/network_firewall/models/ssl_forward_proxy_profile.py index d192e33ca1..797944bb7d 100644 --- a/src/oci/network_firewall/models/ssl_forward_proxy_profile.py +++ b/src/oci/network_firewall/models/ssl_forward_proxy_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/ssl_inbound_inspection_profile.py b/src/oci/network_firewall/models/ssl_inbound_inspection_profile.py index 54c08093ba..473a5033cc 100644 --- a/src/oci/network_firewall/models/ssl_inbound_inspection_profile.py +++ b/src/oci/network_firewall/models/ssl_inbound_inspection_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/tcp_service.py b/src/oci/network_firewall/models/tcp_service.py index a9639ea035..8ce56f3b14 100644 --- a/src/oci/network_firewall/models/tcp_service.py +++ b/src/oci/network_firewall/models/tcp_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/tunnel_inspection_rule.py b/src/oci/network_firewall/models/tunnel_inspection_rule.py index 636f3f131b..7dba33feb9 100644 --- a/src/oci/network_firewall/models/tunnel_inspection_rule.py +++ b/src/oci/network_firewall/models/tunnel_inspection_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/tunnel_inspection_rule_summary.py b/src/oci/network_firewall/models/tunnel_inspection_rule_summary.py index 817778335d..2a42ab0e78 100644 --- a/src/oci/network_firewall/models/tunnel_inspection_rule_summary.py +++ b/src/oci/network_firewall/models/tunnel_inspection_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/tunnel_inspection_rule_summary_collection.py b/src/oci/network_firewall/models/tunnel_inspection_rule_summary_collection.py index 94a42ec4f7..2ebcd6090b 100644 --- a/src/oci/network_firewall/models/tunnel_inspection_rule_summary_collection.py +++ b/src/oci/network_firewall/models/tunnel_inspection_rule_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/udp_service.py b/src/oci/network_firewall/models/udp_service.py index dd0ee4cb85..5fb86b50b5 100644 --- a/src/oci/network_firewall/models/udp_service.py +++ b/src/oci/network_firewall/models/udp_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_address_list_details.py b/src/oci/network_firewall/models/update_address_list_details.py index 469ddadc58..81adc1b873 100644 --- a/src/oci/network_firewall/models/update_address_list_details.py +++ b/src/oci/network_firewall/models/update_address_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_application_details.py b/src/oci/network_firewall/models/update_application_details.py index 8a7133076d..d718fc27c1 100644 --- a/src/oci/network_firewall/models/update_application_details.py +++ b/src/oci/network_firewall/models/update_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_application_group_details.py b/src/oci/network_firewall/models/update_application_group_details.py index fa32673e93..fcc0c535be 100644 --- a/src/oci/network_firewall/models/update_application_group_details.py +++ b/src/oci/network_firewall/models/update_application_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_decryption_profile_details.py b/src/oci/network_firewall/models/update_decryption_profile_details.py index 382b938df3..423448d93a 100644 --- a/src/oci/network_firewall/models/update_decryption_profile_details.py +++ b/src/oci/network_firewall/models/update_decryption_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_decryption_rule_details.py b/src/oci/network_firewall/models/update_decryption_rule_details.py index 704417dacb..2771a7caa9 100644 --- a/src/oci/network_firewall/models/update_decryption_rule_details.py +++ b/src/oci/network_firewall/models/update_decryption_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_fqdn_address_list_details.py b/src/oci/network_firewall/models/update_fqdn_address_list_details.py index 37fa73204a..9e64042502 100644 --- a/src/oci/network_firewall/models/update_fqdn_address_list_details.py +++ b/src/oci/network_firewall/models/update_fqdn_address_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_icmp6_application_details.py b/src/oci/network_firewall/models/update_icmp6_application_details.py index bb47ac4e3d..94a5e28266 100644 --- a/src/oci/network_firewall/models/update_icmp6_application_details.py +++ b/src/oci/network_firewall/models/update_icmp6_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_icmp_application_details.py b/src/oci/network_firewall/models/update_icmp_application_details.py index 90881919b5..94a1e455b6 100644 --- a/src/oci/network_firewall/models/update_icmp_application_details.py +++ b/src/oci/network_firewall/models/update_icmp_application_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_ip_address_list_details.py b/src/oci/network_firewall/models/update_ip_address_list_details.py index efcd2f69b3..f7e0e2e73b 100644 --- a/src/oci/network_firewall/models/update_ip_address_list_details.py +++ b/src/oci/network_firewall/models/update_ip_address_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_mapped_secret_details.py b/src/oci/network_firewall/models/update_mapped_secret_details.py index 52fc0c8780..bc1730eaa2 100644 --- a/src/oci/network_firewall/models/update_mapped_secret_details.py +++ b/src/oci/network_firewall/models/update_mapped_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_network_firewall_details.py b/src/oci/network_firewall/models/update_network_firewall_details.py index 7d64e5d8f4..ca4556749d 100644 --- a/src/oci/network_firewall/models/update_network_firewall_details.py +++ b/src/oci/network_firewall/models/update_network_firewall_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_network_firewall_policy_details.py b/src/oci/network_firewall/models/update_network_firewall_policy_details.py index ff464ebfc6..4cfce4086c 100644 --- a/src/oci/network_firewall/models/update_network_firewall_policy_details.py +++ b/src/oci/network_firewall/models/update_network_firewall_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_security_rule_details.py b/src/oci/network_firewall/models/update_security_rule_details.py index 2d93c59f98..023dbb198e 100644 --- a/src/oci/network_firewall/models/update_security_rule_details.py +++ b/src/oci/network_firewall/models/update_security_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_service_details.py b/src/oci/network_firewall/models/update_service_details.py index ad8084cac0..3913e4166e 100644 --- a/src/oci/network_firewall/models/update_service_details.py +++ b/src/oci/network_firewall/models/update_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_service_list_details.py b/src/oci/network_firewall/models/update_service_list_details.py index 3e077655f7..398ec110cf 100644 --- a/src/oci/network_firewall/models/update_service_list_details.py +++ b/src/oci/network_firewall/models/update_service_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_ssl_forward_proxy_profile_details.py b/src/oci/network_firewall/models/update_ssl_forward_proxy_profile_details.py index 2e67173274..0a1a83e958 100644 --- a/src/oci/network_firewall/models/update_ssl_forward_proxy_profile_details.py +++ b/src/oci/network_firewall/models/update_ssl_forward_proxy_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_ssl_inbound_inspection_profile_details.py b/src/oci/network_firewall/models/update_ssl_inbound_inspection_profile_details.py index 9c3a99a607..fb58f20396 100644 --- a/src/oci/network_firewall/models/update_ssl_inbound_inspection_profile_details.py +++ b/src/oci/network_firewall/models/update_ssl_inbound_inspection_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_tcp_service_details.py b/src/oci/network_firewall/models/update_tcp_service_details.py index 0335134faa..d3f10f9685 100644 --- a/src/oci/network_firewall/models/update_tcp_service_details.py +++ b/src/oci/network_firewall/models/update_tcp_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_tunnel_inspection_rule_details.py b/src/oci/network_firewall/models/update_tunnel_inspection_rule_details.py index 8b352a535b..d6de93410d 100644 --- a/src/oci/network_firewall/models/update_tunnel_inspection_rule_details.py +++ b/src/oci/network_firewall/models/update_tunnel_inspection_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_udp_service_details.py b/src/oci/network_firewall/models/update_udp_service_details.py index f798391dce..da9fa3ffb8 100644 --- a/src/oci/network_firewall/models/update_udp_service_details.py +++ b/src/oci/network_firewall/models/update_udp_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_url_list_details.py b/src/oci/network_firewall/models/update_url_list_details.py index b805318477..a3e1218d61 100644 --- a/src/oci/network_firewall/models/update_url_list_details.py +++ b/src/oci/network_firewall/models/update_url_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_vault_mapped_secret_details.py b/src/oci/network_firewall/models/update_vault_mapped_secret_details.py index a2f3c6c863..b30615a9a9 100644 --- a/src/oci/network_firewall/models/update_vault_mapped_secret_details.py +++ b/src/oci/network_firewall/models/update_vault_mapped_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/update_vxlan_inspection_rule_details.py b/src/oci/network_firewall/models/update_vxlan_inspection_rule_details.py index 3ee941e869..3395f05517 100644 --- a/src/oci/network_firewall/models/update_vxlan_inspection_rule_details.py +++ b/src/oci/network_firewall/models/update_vxlan_inspection_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/url_list.py b/src/oci/network_firewall/models/url_list.py index a1e653a34d..3dae5af8ad 100644 --- a/src/oci/network_firewall/models/url_list.py +++ b/src/oci/network_firewall/models/url_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/url_list_summary.py b/src/oci/network_firewall/models/url_list_summary.py index e6be4dd5b6..446e3629ea 100644 --- a/src/oci/network_firewall/models/url_list_summary.py +++ b/src/oci/network_firewall/models/url_list_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/url_list_summary_collection.py b/src/oci/network_firewall/models/url_list_summary_collection.py index f1642ec094..6b05f225fb 100644 --- a/src/oci/network_firewall/models/url_list_summary_collection.py +++ b/src/oci/network_firewall/models/url_list_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/url_pattern.py b/src/oci/network_firewall/models/url_pattern.py index 9a8fad3c0d..9193ec2e41 100644 --- a/src/oci/network_firewall/models/url_pattern.py +++ b/src/oci/network_firewall/models/url_pattern.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/vault_mapped_secret.py b/src/oci/network_firewall/models/vault_mapped_secret.py index 558cfcbfc0..3a7aa3a742 100644 --- a/src/oci/network_firewall/models/vault_mapped_secret.py +++ b/src/oci/network_firewall/models/vault_mapped_secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/vxlan_inspection_rule.py b/src/oci/network_firewall/models/vxlan_inspection_rule.py index b4dc68028a..d14de8d215 100644 --- a/src/oci/network_firewall/models/vxlan_inspection_rule.py +++ b/src/oci/network_firewall/models/vxlan_inspection_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/vxlan_inspection_rule_match_criteria.py b/src/oci/network_firewall/models/vxlan_inspection_rule_match_criteria.py index 2dded962b3..61353dea0c 100644 --- a/src/oci/network_firewall/models/vxlan_inspection_rule_match_criteria.py +++ b/src/oci/network_firewall/models/vxlan_inspection_rule_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/vxlan_inspection_rule_profile.py b/src/oci/network_firewall/models/vxlan_inspection_rule_profile.py index 00730ee779..a4fdc79ff3 100644 --- a/src/oci/network_firewall/models/vxlan_inspection_rule_profile.py +++ b/src/oci/network_firewall/models/vxlan_inspection_rule_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/vxlan_inspection_rule_summary.py b/src/oci/network_firewall/models/vxlan_inspection_rule_summary.py index 81dac1fb74..e347f524ec 100644 --- a/src/oci/network_firewall/models/vxlan_inspection_rule_summary.py +++ b/src/oci/network_firewall/models/vxlan_inspection_rule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/work_request.py b/src/oci/network_firewall/models/work_request.py index 07f645ea5b..e909e00404 100644 --- a/src/oci/network_firewall/models/work_request.py +++ b/src/oci/network_firewall/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/work_request_error.py b/src/oci/network_firewall/models/work_request_error.py index 2f3cd19ad4..39eef6c725 100644 --- a/src/oci/network_firewall/models/work_request_error.py +++ b/src/oci/network_firewall/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/work_request_error_collection.py b/src/oci/network_firewall/models/work_request_error_collection.py index e80069eeec..680ca60f5a 100644 --- a/src/oci/network_firewall/models/work_request_error_collection.py +++ b/src/oci/network_firewall/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/work_request_log_entry.py b/src/oci/network_firewall/models/work_request_log_entry.py index a785895ae9..bd2b52a454 100644 --- a/src/oci/network_firewall/models/work_request_log_entry.py +++ b/src/oci/network_firewall/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/work_request_log_entry_collection.py b/src/oci/network_firewall/models/work_request_log_entry_collection.py index f8778324ab..258d8f5c84 100644 --- a/src/oci/network_firewall/models/work_request_log_entry_collection.py +++ b/src/oci/network_firewall/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/work_request_resource.py b/src/oci/network_firewall/models/work_request_resource.py index af89575925..0644e7d538 100644 --- a/src/oci/network_firewall/models/work_request_resource.py +++ b/src/oci/network_firewall/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/work_request_summary.py b/src/oci/network_firewall/models/work_request_summary.py index c618e4e57c..c55dd2d161 100644 --- a/src/oci/network_firewall/models/work_request_summary.py +++ b/src/oci/network_firewall/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/models/work_request_summary_collection.py b/src/oci/network_firewall/models/work_request_summary_collection.py index 44f1458628..1ea25ec0a6 100644 --- a/src/oci/network_firewall/models/work_request_summary_collection.py +++ b/src/oci/network_firewall/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/network_firewall_client.py b/src/oci/network_firewall/network_firewall_client.py index ccbfb1d9e9..43e18fbfe2 100644 --- a/src/oci/network_firewall/network_firewall_client.py +++ b/src/oci/network_firewall/network_firewall_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_firewall/network_firewall_client_composite_operations.py b/src/oci/network_firewall/network_firewall_client_composite_operations.py index 4f9bd4169f..04448fcb55 100644 --- a/src/oci/network_firewall/network_firewall_client_composite_operations.py +++ b/src/oci/network_firewall/network_firewall_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230501 diff --git a/src/oci/network_load_balancer/__init__.py b/src/oci/network_load_balancer/__init__.py index 9eaa7b29cd..27baee3952 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/__init__.py b/src/oci/network_load_balancer/models/__init__.py index 037af0aeb8..fe0a8de64e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/backend.py b/src/oci/network_load_balancer/models/backend.py index 3c4e349c05..1a0d817886 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/backend_collection.py b/src/oci/network_load_balancer/models/backend_collection.py index b83a3741cc..7b67545672 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/backend_details.py b/src/oci/network_load_balancer/models/backend_details.py index 958973e621..88e75282aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/backend_health.py b/src/oci/network_load_balancer/models/backend_health.py index ea63f3c85b..30ca601455 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/backend_set.py b/src/oci/network_load_balancer/models/backend_set.py index 1ff59ba425..6a1d386654 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 0e2fd6c70b..6b38928ce2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 eea3f28ac2..7e12ab4156 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 67155ea012..f34acb3f3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 b8b2a96f8e..494f969b5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/backend_summary.py b/src/oci/network_load_balancer/models/backend_summary.py index 35b67d0875..f647e80da1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 b24bc6d3d7..a152119a6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 1b7467edf4..3e66578218 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 7249d192bd..3ce08be76a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 01307fa9a1..78bbf8d53d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 2b61ae3030..e23e05c2f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/dns_health_checker_details.py b/src/oci/network_load_balancer/models/dns_health_checker_details.py index bde6649069..8db14f0be6 100644 --- a/src/oci/network_load_balancer/models/dns_health_checker_details.py +++ b/src/oci/network_load_balancer/models/dns_health_checker_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 ffd4d09e5b..0845091677 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/health_checker.py b/src/oci/network_load_balancer/models/health_checker.py index a15e161c24..142a0f29cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 8c058f5183..964b03005e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/ip_address.py b/src/oci/network_load_balancer/models/ip_address.py index 420dfa3fad..ffe5ac736a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/listener.py b/src/oci/network_load_balancer/models/listener.py index f0e29ef6dc..c002e4d1bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/listener_collection.py b/src/oci/network_load_balancer/models/listener_collection.py index 3c0b39b0c5..57c9f2700b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/listener_details.py b/src/oci/network_load_balancer/models/listener_details.py index cb1006cbff..b922746f68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/listener_summary.py b/src/oci/network_load_balancer/models/listener_summary.py index 1c77505d1e..2df4e4e1a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 55f14356c7..226d1dbe41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 f8ff0b8a78..87c87a81fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 066a45deca..07d1d16983 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 34b6303064..7c734c3323 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 e2d43b7fdb..7d2b9426bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 4c62ef5e41..912e6798f1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 a68e5e8b63..ec96c0c224 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 53b08392a9..f09e3d50be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/reserved_ip.py b/src/oci/network_load_balancer/models/reserved_ip.py index b4c417f22f..94ab93a6b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 4afae6d5d4..f5c029b9cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 43e634a0ee..d5076ea741 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 11c832f1c8..e8ae68044d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 6eb1cae834..9ccc6412dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 c6357e4a23..0638062ff9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 2de454ba42..2c096867e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/network_load_balancer/models/work_request.py b/src/oci/network_load_balancer/models/work_request.py index 237c616604..10de9ced7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 1c47b1f501..3685631cae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 fd000387d8..d3fe39a75a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 c1f4bb6ed3..370df18221 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 8ba0d18470..a1f2b786ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 9a9b5854f3..b0135c983e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 09c577ace5..04aa22726e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 88f05361af..a081f825d7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 144bcdf182..a8df9443c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 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 99db4f1833..099e00cf1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200501 diff --git a/src/oci/nosql/__init__.py b/src/oci/nosql/__init__.py index 6185d6873d..031a29c1af 100644 --- a/src/oci/nosql/__init__.py +++ b/src/oci/nosql/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/__init__.py b/src/oci/nosql/models/__init__.py index 3ee83786f1..fc07405fd8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/change_table_compartment_details.py b/src/oci/nosql/models/change_table_compartment_details.py index 6313283a38..612a0d3294 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/column.py b/src/oci/nosql/models/column.py index eb8b071141..6d6663be34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/create_index_details.py b/src/oci/nosql/models/create_index_details.py index c17e3fc3c7..e8dab39112 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/create_replica_details.py b/src/oci/nosql/models/create_replica_details.py index b6a35ac0f5..eda1fef396 100644 --- a/src/oci/nosql/models/create_replica_details.py +++ b/src/oci/nosql/models/create_replica_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/create_table_details.py b/src/oci/nosql/models/create_table_details.py index 39e1ab90cb..57762ef7fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/delete_row_result.py b/src/oci/nosql/models/delete_row_result.py index 66ff5f1a13..ceb5a5cb87 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/identity.py b/src/oci/nosql/models/identity.py index e10b22c376..2529333a23 100644 --- a/src/oci/nosql/models/identity.py +++ b/src/oci/nosql/models/identity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/index.py b/src/oci/nosql/models/index.py index 72c4731958..e2abb842bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/index_collection.py b/src/oci/nosql/models/index_collection.py index 08fc42ae11..4a5c4027b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/index_key.py b/src/oci/nosql/models/index_key.py index 164f2c7448..1db4970504 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/index_summary.py b/src/oci/nosql/models/index_summary.py index c0feaa4e97..146358938f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/prepared_statement.py b/src/oci/nosql/models/prepared_statement.py index 7599bb00b8..85af1f1cc6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/query_details.py b/src/oci/nosql/models/query_details.py index a39b407288..e899f42ad4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/query_result_collection.py b/src/oci/nosql/models/query_result_collection.py index e07d62087c..7c4aacd595 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/replica.py b/src/oci/nosql/models/replica.py index fb836ad47c..e47d7b8617 100644 --- a/src/oci/nosql/models/replica.py +++ b/src/oci/nosql/models/replica.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/request_usage.py b/src/oci/nosql/models/request_usage.py index e5ce959672..42021ae0be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/row.py b/src/oci/nosql/models/row.py index 355caa37f8..417da2ce21 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/schema.py b/src/oci/nosql/models/schema.py index 278a421723..0d19be7c05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/statement_summary.py b/src/oci/nosql/models/statement_summary.py index a11fb88ef3..6e3b145c7d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/table.py b/src/oci/nosql/models/table.py index a5afabd4dc..64172b5c60 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/table_collection.py b/src/oci/nosql/models/table_collection.py index 159313fcf9..56996862a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/table_limits.py b/src/oci/nosql/models/table_limits.py index ac29179ed1..f7c35fb213 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/table_summary.py b/src/oci/nosql/models/table_summary.py index 887ea92c97..1fda040acc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/table_usage_collection.py b/src/oci/nosql/models/table_usage_collection.py index 360e31e9f6..b4c0a3dc50 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/table_usage_summary.py b/src/oci/nosql/models/table_usage_summary.py index 6bfa57b04c..fe0f8793fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/update_row_details.py b/src/oci/nosql/models/update_row_details.py index 2d0ef16bd1..d06f4d5d9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/update_row_result.py b/src/oci/nosql/models/update_row_result.py index dce210bba8..87d0c1272f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/update_table_details.py b/src/oci/nosql/models/update_table_details.py index 16f76d7abb..25134a115c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/work_request.py b/src/oci/nosql/models/work_request.py index acd44e5623..65a64b9303 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/work_request_collection.py b/src/oci/nosql/models/work_request_collection.py index a257d4d1ad..6995558fe5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/work_request_error.py b/src/oci/nosql/models/work_request_error.py index d03b89a147..3401fb1052 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/work_request_error_collection.py b/src/oci/nosql/models/work_request_error_collection.py index 85633c2a70..181bb90ac5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/work_request_log_entry.py b/src/oci/nosql/models/work_request_log_entry.py index 06b9300977..dd8c73f602 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 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 e84cb6a89c..296c6c9e2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/work_request_resource.py b/src/oci/nosql/models/work_request_resource.py index fd88e2b6d3..6c9ef7a802 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/models/work_request_summary.py b/src/oci/nosql/models/work_request_summary.py index 5579fa7f09..5741f325ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/nosql_client.py b/src/oci/nosql/nosql_client.py index b0d997893f..db77cc6e28 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/nosql/nosql_client_composite_operations.py b/src/oci/nosql/nosql_client_composite_operations.py index f21f57bd8c..580be2e9e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190828 diff --git a/src/oci/object_storage/__init__.py b/src/oci/object_storage/__init__.py index c23f183157..7d58c1ae00 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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 9abdcfb42d..59a02201f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/access_target_details.py b/src/oci/object_storage/models/access_target_details.py index 5dfff14551..50ec7cbfd7 100644 --- a/src/oci/object_storage/models/access_target_details.py +++ b/src/oci/object_storage/models/access_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/bucket.py b/src/oci/object_storage/models/bucket.py index 4a28a778b0..862e84157d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/bucket_summary.py b/src/oci/object_storage/models/bucket_summary.py index 5bc2bc8625..ed009e5c67 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 e501191cd3..5f28585adc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 14dad7be04..eec97073e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/copy_object_details.py b/src/oci/object_storage/models/copy_object_details.py index 605e6ec771..7278f66605 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/create_bucket_details.py b/src/oci/object_storage/models/create_bucket_details.py index 6d530def76..452cee740c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 998d5de6d5..9ba66c5fe8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 baf2a2dba0..a790b41d9d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/create_private_endpoint_details.py b/src/oci/object_storage/models/create_private_endpoint_details.py index be0c3538f1..189a2153e7 100644 --- a/src/oci/object_storage/models/create_private_endpoint_details.py +++ b/src/oci/object_storage/models/create_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1d0995f795..277758bf2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 7bd3da3de9..40d1d821e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/duration.py b/src/oci/object_storage/models/duration.py index e337d53468..3ab421ce6a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/fqdns.py b/src/oci/object_storage/models/fqdns.py index 10d28a67fe..3247fef042 100644 --- a/src/oci/object_storage/models/fqdns.py +++ b/src/oci/object_storage/models/fqdns.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/list_objects.py b/src/oci/object_storage/models/list_objects.py index 0c45a03fc4..b9178f0919 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/multipart_upload.py b/src/oci/object_storage/models/multipart_upload.py index 4943928174..84313f8e8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 69ca35b77d..25f91826bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/namespace_metadata.py b/src/oci/object_storage/models/namespace_metadata.py index de6f703306..5101ab6177 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/object_lifecycle_policy.py b/src/oci/object_storage/models/object_lifecycle_policy.py index 12eb04ecde..b68daa0890 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/object_lifecycle_rule.py b/src/oci/object_storage/models/object_lifecycle_rule.py index d28c8cef2a..6f29ba695c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/object_name_filter.py b/src/oci/object_storage/models/object_name_filter.py index 1b738c3708..a919aba448 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/object_summary.py b/src/oci/object_storage/models/object_summary.py index eafa2b897a..865334c082 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/object_version_collection.py b/src/oci/object_storage/models/object_version_collection.py index 93fbe22d39..801b31c6a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/object_version_summary.py b/src/oci/object_storage/models/object_version_summary.py index bf3f942597..7db17fb52a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/pattern_details.py b/src/oci/object_storage/models/pattern_details.py index 1f53478498..254f2f50e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/preauthenticated_request.py b/src/oci/object_storage/models/preauthenticated_request.py index b92370f7a1..35f9e67a9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/preauthenticated_request_summary.py b/src/oci/object_storage/models/preauthenticated_request_summary.py index fbe224ed5a..53e81f540a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/prefix_fqdns.py b/src/oci/object_storage/models/prefix_fqdns.py index d3e2f8ca20..8bde253989 100644 --- a/src/oci/object_storage/models/prefix_fqdns.py +++ b/src/oci/object_storage/models/prefix_fqdns.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/private_endpoint.py b/src/oci/object_storage/models/private_endpoint.py index b37389d690..0630ce2338 100644 --- a/src/oci/object_storage/models/private_endpoint.py +++ b/src/oci/object_storage/models/private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/private_endpoint_summary.py b/src/oci/object_storage/models/private_endpoint_summary.py index 5ccbf0b022..893c6c56f0 100644 --- a/src/oci/object_storage/models/private_endpoint_summary.py +++ b/src/oci/object_storage/models/private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 1e31214bc8..0c0898d857 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/reencrypt_object_details.py b/src/oci/object_storage/models/reencrypt_object_details.py index 3dbb27ab6e..1396475cf5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/rename_object_details.py b/src/oci/object_storage/models/rename_object_details.py index 8a984293fe..2c6c47176b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/replication_policy.py b/src/oci/object_storage/models/replication_policy.py index de7857743a..84a9db2657 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/replication_policy_summary.py b/src/oci/object_storage/models/replication_policy_summary.py index 2f293b03d7..cb434b5263 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/replication_source.py b/src/oci/object_storage/models/replication_source.py index 3b2295f638..2656b00eb2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/restore_objects_details.py b/src/oci/object_storage/models/restore_objects_details.py index 69aabe7245..1921b4f8a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/retention_rule.py b/src/oci/object_storage/models/retention_rule.py index c3867b7442..051d8ece82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/retention_rule_collection.py b/src/oci/object_storage/models/retention_rule_collection.py index 7ceab928eb..007445224a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/retention_rule_details.py b/src/oci/object_storage/models/retention_rule_details.py index 1984ff535e..211d881a86 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/retention_rule_summary.py b/src/oci/object_storage/models/retention_rule_summary.py index d60ab0acbf..b40011082e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b78255a23a..b2ec10e730 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/update_bucket_details.py b/src/oci/object_storage/models/update_bucket_details.py index 2b8664770c..2394c6601d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 c9962a6a03..3d16f9152c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 2436eedac9..cd006b68d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/update_private_endpoint_details.py b/src/oci/object_storage/models/update_private_endpoint_details.py index f1b0094188..8fe68bb538 100644 --- a/src/oci/object_storage/models/update_private_endpoint_details.py +++ b/src/oci/object_storage/models/update_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 df0c96ec71..4f656fc37d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/work_request.py b/src/oci/object_storage/models/work_request.py index 20c55e4f6c..5114499291 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/work_request_error.py b/src/oci/object_storage/models/work_request_error.py index f4b863236a..3382e93825 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 342202d63e..ed626fe109 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/work_request_resource.py b/src/oci/object_storage/models/work_request_resource.py index 86aa7bed7f..97042a5e5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/models/work_request_summary.py b/src/oci/object_storage/models/work_request_summary.py index c80f38e139..a165526d9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/object_storage_client.py b/src/oci/object_storage/object_storage_client.py index 553af77cd8..35196e0bab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b558717b89..df501a2951 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/object_storage/transfer/__init__.py b/src/oci/object_storage/transfer/__init__.py index 2155b27ed9..2791888dbc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 0be9ab767a..0cfdec5545 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 2155b27ed9..2791888dbc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 49578c2400..1ffe59f34c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/download/DownloadConfiguration.py b/src/oci/object_storage/transfer/internal/download/DownloadConfiguration.py index 21ad8003af..ce1f9e8c34 100644 --- a/src/oci/object_storage/transfer/internal/download/DownloadConfiguration.py +++ b/src/oci/object_storage/transfer/internal/download/DownloadConfiguration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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.object_storage.transfer.constants import MEBIBYTE diff --git a/src/oci/object_storage/transfer/internal/download/DownloadManager.py b/src/oci/object_storage/transfer/internal/download/DownloadManager.py index 4d115406d1..7fa3e20755 100644 --- a/src/oci/object_storage/transfer/internal/download/DownloadManager.py +++ b/src/oci/object_storage/transfer/internal/download/DownloadManager.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/download/DownloadThread.py b/src/oci/object_storage/transfer/internal/download/DownloadThread.py index 30b4867499..7662eb7d5b 100644 --- a/src/oci/object_storage/transfer/internal/download/DownloadThread.py +++ b/src/oci/object_storage/transfer/internal/download/DownloadThread.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 six diff --git a/src/oci/object_storage/transfer/internal/download/__init__.py b/src/oci/object_storage/transfer/internal/download/__init__.py index 2155b27ed9..2791888dbc 100644 --- a/src/oci/object_storage/transfer/internal/download/__init__.py +++ b/src/oci/object_storage/transfer/internal/download/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/file_read_callback_stream.py b/src/oci/object_storage/transfer/internal/file_read_callback_stream.py index cabf375bcc..ad9f391a20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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 80e527657d..a473b3684a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 e4eeef5ac2..8e50e39a7d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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/upload_manager.py b/src/oci/object_storage/transfer/upload_manager.py index 318a0483dd..c25fadef62 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 9c7586082c..1a03cbf4a5 100644 --- a/src/oci/oce/__init__.py +++ b/src/oci/oce/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/__init__.py b/src/oci/oce/models/__init__.py index 8ab1d6cead..a2da36dd1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 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 4618b0631d..be1b2acfd7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/create_oce_instance_details.py b/src/oci/oce/models/create_oce_instance_details.py index 6025f0034e..4222ada18d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/identity_stripe_details.py b/src/oci/oce/models/identity_stripe_details.py index 72cedd4b5c..ed042178a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/oce_instance.py b/src/oci/oce/models/oce_instance.py index ec2727f4ec..d513409eca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/oce_instance_summary.py b/src/oci/oce/models/oce_instance_summary.py index 24db2d0128..6317a1f81a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/update_oce_instance_details.py b/src/oci/oce/models/update_oce_instance_details.py index 6e083f835a..3a450cd7ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/work_request.py b/src/oci/oce/models/work_request.py index 7988db6818..231dfd4d46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/work_request_error.py b/src/oci/oce/models/work_request_error.py index 9cf67f00d2..3544419fd9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/work_request_log_entry.py b/src/oci/oce/models/work_request_log_entry.py index 070049c80b..87295444f3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/work_request_resource.py b/src/oci/oce/models/work_request_resource.py index 8e3fe64c14..4f89b81d4e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/workflow_monitor.py b/src/oci/oce/models/workflow_monitor.py index c65543a58a..4559e161fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/models/workflow_step.py b/src/oci/oce/models/workflow_step.py index 6be384e1d9..5f13bfdfb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/oce_instance_client.py b/src/oci/oce/oce_instance_client.py index ce7c2c31d5..ba0f4923a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oce/oce_instance_client_composite_operations.py b/src/oci/oce/oce_instance_client_composite_operations.py index 28c95efbb5..c5960ba324 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190912 diff --git a/src/oci/oci_control_center/__init__.py b/src/oci/oci_control_center/__init__.py index 149bd182d8..4b853ff2e3 100644 --- a/src/oci/oci_control_center/__init__.py +++ b/src/oci/oci_control_center/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/models/__init__.py b/src/oci/oci_control_center/models/__init__.py index f9b7233be0..ef5a72467a 100644 --- a/src/oci/oci_control_center/models/__init__.py +++ b/src/oci/oci_control_center/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/models/dimension_value.py b/src/oci/oci_control_center/models/dimension_value.py index e60260d384..2c4a28638a 100644 --- a/src/oci/oci_control_center/models/dimension_value.py +++ b/src/oci/oci_control_center/models/dimension_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/models/metric_property_collection.py b/src/oci/oci_control_center/models/metric_property_collection.py index f49fe7f8eb..b7426cfd1b 100644 --- a/src/oci/oci_control_center/models/metric_property_collection.py +++ b/src/oci/oci_control_center/models/metric_property_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/models/metric_property_summary.py b/src/oci/oci_control_center/models/metric_property_summary.py index 8f08cdb2f6..f78b8fe50d 100644 --- a/src/oci/oci_control_center/models/metric_property_summary.py +++ b/src/oci/oci_control_center/models/metric_property_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/models/namespace_collection.py b/src/oci/oci_control_center/models/namespace_collection.py index a63d013472..6310c634ea 100644 --- a/src/oci/oci_control_center/models/namespace_collection.py +++ b/src/oci/oci_control_center/models/namespace_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/models/namespace_summary.py b/src/oci/oci_control_center/models/namespace_summary.py index cb628922ab..56dfa28e45 100644 --- a/src/oci/oci_control_center/models/namespace_summary.py +++ b/src/oci/oci_control_center/models/namespace_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/models/request_summarized_metric_data_details.py b/src/oci/oci_control_center/models/request_summarized_metric_data_details.py index fde7c0576b..a7829b12c6 100644 --- a/src/oci/oci_control_center/models/request_summarized_metric_data_details.py +++ b/src/oci/oci_control_center/models/request_summarized_metric_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/models/summarized_metric_data.py b/src/oci/oci_control_center/models/summarized_metric_data.py index bf792a68f1..244fe526ba 100644 --- a/src/oci/oci_control_center/models/summarized_metric_data.py +++ b/src/oci/oci_control_center/models/summarized_metric_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/models/summarized_metric_data_collection.py b/src/oci/oci_control_center/models/summarized_metric_data_collection.py index 147c590588..e78c8104ff 100644 --- a/src/oci/oci_control_center/models/summarized_metric_data_collection.py +++ b/src/oci/oci_control_center/models/summarized_metric_data_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/occ_metrics_client.py b/src/oci/oci_control_center/occ_metrics_client.py index 4c171c240a..9644db6f2a 100644 --- a/src/oci/oci_control_center/occ_metrics_client.py +++ b/src/oci/oci_control_center/occ_metrics_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/oci_control_center/occ_metrics_client_composite_operations.py b/src/oci/oci_control_center/occ_metrics_client_composite_operations.py index 57b48e1704..8f369a158d 100644 --- a/src/oci/oci_control_center/occ_metrics_client_composite_operations.py +++ b/src/oci/oci_control_center/occ_metrics_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230515 diff --git a/src/oci/ocvp/__init__.py b/src/oci/ocvp/__init__.py index ee75b64abf..0df1d85f2d 100644 --- a/src/oci/ocvp/__init__.py +++ b/src/oci/ocvp/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/cluster_client.py b/src/oci/ocvp/cluster_client.py index 8ffd1ebaa4..08e60e3670 100644 --- a/src/oci/ocvp/cluster_client.py +++ b/src/oci/ocvp/cluster_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/cluster_client_composite_operations.py b/src/oci/ocvp/cluster_client_composite_operations.py index d4c84459ab..ac192c83ae 100644 --- a/src/oci/ocvp/cluster_client_composite_operations.py +++ b/src/oci/ocvp/cluster_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/esxi_host_client.py b/src/oci/ocvp/esxi_host_client.py index 5a286d13d8..67a2aa5cde 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/esxi_host_client_composite_operations.py b/src/oci/ocvp/esxi_host_client_composite_operations.py index 8c67e0195b..a8d98b921f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/__init__.py b/src/oci/ocvp/models/__init__.py index 2d2faef624..c2a45a5431 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/change_sddc_compartment_details.py b/src/oci/ocvp/models/change_sddc_compartment_details.py index 44834bd473..3f67f63192 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/cluster.py b/src/oci/ocvp/models/cluster.py index 9081656e96..684c8bb1be 100644 --- a/src/oci/ocvp/models/cluster.py +++ b/src/oci/ocvp/models/cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/cluster_collection.py b/src/oci/ocvp/models/cluster_collection.py index 4e8891e0af..90f9575d31 100644 --- a/src/oci/ocvp/models/cluster_collection.py +++ b/src/oci/ocvp/models/cluster_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/cluster_summary.py b/src/oci/ocvp/models/cluster_summary.py index 4c564759d9..b1d62a1f5d 100644 --- a/src/oci/ocvp/models/cluster_summary.py +++ b/src/oci/ocvp/models/cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/create_cluster_details.py b/src/oci/ocvp/models/create_cluster_details.py index 3fe7803949..8c8d0c753b 100644 --- a/src/oci/ocvp/models/create_cluster_details.py +++ b/src/oci/ocvp/models/create_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/create_esxi_host_details.py b/src/oci/ocvp/models/create_esxi_host_details.py index 0b7ee88c5a..02becefe48 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/create_sddc_details.py b/src/oci/ocvp/models/create_sddc_details.py index 948c90e097..44e2a380c7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/datastore_details.py b/src/oci/ocvp/models/datastore_details.py index 649975501b..442b2fa59d 100644 --- a/src/oci/ocvp/models/datastore_details.py +++ b/src/oci/ocvp/models/datastore_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/datastore_info.py b/src/oci/ocvp/models/datastore_info.py index 8fe149d3fb..8224cc3e74 100644 --- a/src/oci/ocvp/models/datastore_info.py +++ b/src/oci/ocvp/models/datastore_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/downgrade_hcx_details.py b/src/oci/ocvp/models/downgrade_hcx_details.py index bf00641a38..4b3bbd50fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/esxi_host.py b/src/oci/ocvp/models/esxi_host.py index 89ad52ce30..8a1dd0874b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/esxi_host_collection.py b/src/oci/ocvp/models/esxi_host_collection.py index 4b554daba5..fba13f4ac3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/esxi_host_summary.py b/src/oci/ocvp/models/esxi_host_summary.py index 339d3d30b6..cea98c9507 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/hcx_license_summary.py b/src/oci/ocvp/models/hcx_license_summary.py index eb9f025421..15ef6cf253 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/initial_cluster_configuration.py b/src/oci/ocvp/models/initial_cluster_configuration.py index 9d2b5e3f9e..ed904015ee 100644 --- a/src/oci/ocvp/models/initial_cluster_configuration.py +++ b/src/oci/ocvp/models/initial_cluster_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/initial_configuration.py b/src/oci/ocvp/models/initial_configuration.py index 42792eb8b4..4d496149b8 100644 --- a/src/oci/ocvp/models/initial_configuration.py +++ b/src/oci/ocvp/models/initial_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/network_configuration.py b/src/oci/ocvp/models/network_configuration.py index c103aa1fcc..1cebe92a1e 100644 --- a/src/oci/ocvp/models/network_configuration.py +++ b/src/oci/ocvp/models/network_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/replace_host_details.py b/src/oci/ocvp/models/replace_host_details.py index ac32f9a6c0..1f39f92584 100644 --- a/src/oci/ocvp/models/replace_host_details.py +++ b/src/oci/ocvp/models/replace_host_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/sddc.py b/src/oci/ocvp/models/sddc.py index fe43223775..d80372a253 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/sddc_collection.py b/src/oci/ocvp/models/sddc_collection.py index d732d6ddfb..6bb8570c74 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/sddc_password.py b/src/oci/ocvp/models/sddc_password.py index 04d2a38527..31740dac2c 100644 --- a/src/oci/ocvp/models/sddc_password.py +++ b/src/oci/ocvp/models/sddc_password.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/sddc_summary.py b/src/oci/ocvp/models/sddc_summary.py index bed9502c36..e2d3f5e86b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/supported_commitment_summary.py b/src/oci/ocvp/models/supported_commitment_summary.py index 8f7cf21b03..4c48fc8316 100644 --- a/src/oci/ocvp/models/supported_commitment_summary.py +++ b/src/oci/ocvp/models/supported_commitment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/supported_commitment_summary_collection.py b/src/oci/ocvp/models/supported_commitment_summary_collection.py index 7ac83af482..c012e18ebf 100644 --- a/src/oci/ocvp/models/supported_commitment_summary_collection.py +++ b/src/oci/ocvp/models/supported_commitment_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/supported_esxi_software_version_summary.py b/src/oci/ocvp/models/supported_esxi_software_version_summary.py index 850046a54c..81f8194ff9 100644 --- a/src/oci/ocvp/models/supported_esxi_software_version_summary.py +++ b/src/oci/ocvp/models/supported_esxi_software_version_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/supported_host_shape_collection.py b/src/oci/ocvp/models/supported_host_shape_collection.py index 06cc99de89..7428ea54c2 100644 --- a/src/oci/ocvp/models/supported_host_shape_collection.py +++ b/src/oci/ocvp/models/supported_host_shape_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/supported_host_shape_summary.py b/src/oci/ocvp/models/supported_host_shape_summary.py index 3f6d9f8494..147d640f97 100644 --- a/src/oci/ocvp/models/supported_host_shape_summary.py +++ b/src/oci/ocvp/models/supported_host_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 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 dbe40bd7c4..68601b08f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 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 800a0e8fc9..9f0bd87482 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/update_cluster_details.py b/src/oci/ocvp/models/update_cluster_details.py index 34e218a4ae..02589e38de 100644 --- a/src/oci/ocvp/models/update_cluster_details.py +++ b/src/oci/ocvp/models/update_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/update_esxi_host_details.py b/src/oci/ocvp/models/update_esxi_host_details.py index 89ffde6a1f..6283d670aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/update_sddc_details.py b/src/oci/ocvp/models/update_sddc_details.py index 6f6855f621..d2f5f1d740 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/vsphere_license.py b/src/oci/ocvp/models/vsphere_license.py index f18a302305..20292bdbed 100644 --- a/src/oci/ocvp/models/vsphere_license.py +++ b/src/oci/ocvp/models/vsphere_license.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/vsphere_upgrade_object.py b/src/oci/ocvp/models/vsphere_upgrade_object.py index 36cd3d3532..f4e052b9d0 100644 --- a/src/oci/ocvp/models/vsphere_upgrade_object.py +++ b/src/oci/ocvp/models/vsphere_upgrade_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/work_request.py b/src/oci/ocvp/models/work_request.py index 6b056d0bd6..78bb0104ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/work_request_collection.py b/src/oci/ocvp/models/work_request_collection.py index 106525ae1f..ee8fe774ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/work_request_error.py b/src/oci/ocvp/models/work_request_error.py index 6695b2b1d6..da1094fa98 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/work_request_error_collection.py b/src/oci/ocvp/models/work_request_error_collection.py index 563ea835a0..34ff8176ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/work_request_log_entry.py b/src/oci/ocvp/models/work_request_log_entry.py index 6cc477a77c..229d8b8655 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 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 f11a5fa63e..abd6b58ba0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/models/work_request_resource.py b/src/oci/ocvp/models/work_request_resource.py index 4296464e5e..991b34c96a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/sddc_client.py b/src/oci/ocvp/sddc_client.py index b650af90dd..41ae94fd1c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/sddc_client_composite_operations.py b/src/oci/ocvp/sddc_client_composite_operations.py index b5bfbc2d51..8d3a714e9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/work_request_client.py b/src/oci/ocvp/work_request_client.py index 81f2b0644f..65b9b1fda4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/ocvp/work_request_client_composite_operations.py b/src/oci/ocvp/work_request_client_composite_operations.py index 67fa653a43..b9c1fdc2bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230701 diff --git a/src/oci/oda/__init__.py b/src/oci/oda/__init__.py index 6543133d0c..671d97e3cd 100644 --- a/src/oci/oda/__init__.py +++ b/src/oci/oda/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/management_client.py b/src/oci/oda/management_client.py index 0b26533ecc..7fc939e968 100644 --- a/src/oci/oda/management_client.py +++ b/src/oci/oda/management_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/management_client_composite_operations.py b/src/oci/oda/management_client_composite_operations.py index 29ba018f35..278107a58b 100644 --- a/src/oci/oda/management_client_composite_operations.py +++ b/src/oci/oda/management_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/__init__.py b/src/oci/oda/models/__init__.py index 0d869881b8..a75e1c03f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/android_channel.py b/src/oci/oda/models/android_channel.py index 37f9035a90..8ee601d31a 100644 --- a/src/oci/oda/models/android_channel.py +++ b/src/oci/oda/models/android_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/app_event_channel.py b/src/oci/oda/models/app_event_channel.py index c98e846d8d..385d464ccd 100644 --- a/src/oci/oda/models/app_event_channel.py +++ b/src/oci/oda/models/app_event_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/application_channel.py b/src/oci/oda/models/application_channel.py index ea6f482ac8..7c89853a5a 100644 --- a/src/oci/oda/models/application_channel.py +++ b/src/oci/oda/models/application_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/authentication_provider.py b/src/oci/oda/models/authentication_provider.py index 8ae378e87c..1fe2e12313 100644 --- a/src/oci/oda/models/authentication_provider.py +++ b/src/oci/oda/models/authentication_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/authentication_provider_collection.py b/src/oci/oda/models/authentication_provider_collection.py index ca61e4e8f1..fec00ec680 100644 --- a/src/oci/oda/models/authentication_provider_collection.py +++ b/src/oci/oda/models/authentication_provider_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/authentication_provider_summary.py b/src/oci/oda/models/authentication_provider_summary.py index 5415421b38..dfccdd6445 100644 --- a/src/oci/oda/models/authentication_provider_summary.py +++ b/src/oci/oda/models/authentication_provider_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/bot.py b/src/oci/oda/models/bot.py index 7ae4240a8a..da3626b04e 100644 --- a/src/oci/oda/models/bot.py +++ b/src/oci/oda/models/bot.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/bulk_create_skill_entities_details.py b/src/oci/oda/models/bulk_create_skill_entities_details.py index d0d63dfd19..cefe3dadf7 100644 --- a/src/oci/oda/models/bulk_create_skill_entities_details.py +++ b/src/oci/oda/models/bulk_create_skill_entities_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 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 a435191b33..e4240aacd4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/change_oda_private_endpoint_compartment_details.py b/src/oci/oda/models/change_oda_private_endpoint_compartment_details.py index 1db7220f8f..68848457e5 100644 --- a/src/oci/oda/models/change_oda_private_endpoint_compartment_details.py +++ b/src/oci/oda/models/change_oda_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/channel.py b/src/oci/oda/models/channel.py index 53d2e72611..372e6dbe8a 100644 --- a/src/oci/oda/models/channel.py +++ b/src/oci/oda/models/channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/channel_collection.py b/src/oci/oda/models/channel_collection.py index 8e15286b18..3b27b978f9 100644 --- a/src/oci/oda/models/channel_collection.py +++ b/src/oci/oda/models/channel_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/channel_summary.py b/src/oci/oda/models/channel_summary.py index e13982cd8a..aaef2eebd9 100644 --- a/src/oci/oda/models/channel_summary.py +++ b/src/oci/oda/models/channel_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/clone_digital_assistant_details.py b/src/oci/oda/models/clone_digital_assistant_details.py index 317e0627a9..35e920751c 100644 --- a/src/oci/oda/models/clone_digital_assistant_details.py +++ b/src/oci/oda/models/clone_digital_assistant_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/clone_skill_details.py b/src/oci/oda/models/clone_skill_details.py index 37a08c54e3..76fee11d93 100644 --- a/src/oci/oda/models/clone_skill_details.py +++ b/src/oci/oda/models/clone_skill_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/composite_entity.py b/src/oci/oda/models/composite_entity.py index 29a12f2be5..e34298d43d 100644 --- a/src/oci/oda/models/composite_entity.py +++ b/src/oci/oda/models/composite_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/configure_digital_assistant_parameters_details.py b/src/oci/oda/models/configure_digital_assistant_parameters_details.py index 35819465a4..f557f5734b 100644 --- a/src/oci/oda/models/configure_digital_assistant_parameters_details.py +++ b/src/oci/oda/models/configure_digital_assistant_parameters_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/cortana_channel.py b/src/oci/oda/models/cortana_channel.py index 6a6e4ea4bf..c330229ee9 100644 --- a/src/oci/oda/models/cortana_channel.py +++ b/src/oci/oda/models/cortana_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_android_channel_details.py b/src/oci/oda/models/create_android_channel_details.py index d257ca9da5..c32ee31f8a 100644 --- a/src/oci/oda/models/create_android_channel_details.py +++ b/src/oci/oda/models/create_android_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_android_channel_result.py b/src/oci/oda/models/create_android_channel_result.py index fde98ee02f..dac85ab003 100644 --- a/src/oci/oda/models/create_android_channel_result.py +++ b/src/oci/oda/models/create_android_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_app_event_channel_details.py b/src/oci/oda/models/create_app_event_channel_details.py index 4da59f0a7b..ced645dd99 100644 --- a/src/oci/oda/models/create_app_event_channel_details.py +++ b/src/oci/oda/models/create_app_event_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_app_event_channel_result.py b/src/oci/oda/models/create_app_event_channel_result.py index 0c29c02098..67f95803f3 100644 --- a/src/oci/oda/models/create_app_event_channel_result.py +++ b/src/oci/oda/models/create_app_event_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_application_channel_details.py b/src/oci/oda/models/create_application_channel_details.py index e539edc66d..1f6c150a74 100644 --- a/src/oci/oda/models/create_application_channel_details.py +++ b/src/oci/oda/models/create_application_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_application_channel_result.py b/src/oci/oda/models/create_application_channel_result.py index c44b65af29..2c1ba3cdd4 100644 --- a/src/oci/oda/models/create_application_channel_result.py +++ b/src/oci/oda/models/create_application_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_authentication_provider_details.py b/src/oci/oda/models/create_authentication_provider_details.py index f526434589..bef0600cc6 100644 --- a/src/oci/oda/models/create_authentication_provider_details.py +++ b/src/oci/oda/models/create_authentication_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_channel_details.py b/src/oci/oda/models/create_channel_details.py index c77ae62cee..3f1d585e80 100644 --- a/src/oci/oda/models/create_channel_details.py +++ b/src/oci/oda/models/create_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_channel_result.py b/src/oci/oda/models/create_channel_result.py index a63076326f..2ca37d6ac8 100644 --- a/src/oci/oda/models/create_channel_result.py +++ b/src/oci/oda/models/create_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_cortana_channel_details.py b/src/oci/oda/models/create_cortana_channel_details.py index cc7679b3b5..ef629fcd7f 100644 --- a/src/oci/oda/models/create_cortana_channel_details.py +++ b/src/oci/oda/models/create_cortana_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_cortana_channel_result.py b/src/oci/oda/models/create_cortana_channel_result.py index 41b9d04595..465b40d1ce 100644 --- a/src/oci/oda/models/create_cortana_channel_result.py +++ b/src/oci/oda/models/create_cortana_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_digital_assistant_details.py b/src/oci/oda/models/create_digital_assistant_details.py index 98440f1afe..2108ccfb8d 100644 --- a/src/oci/oda/models/create_digital_assistant_details.py +++ b/src/oci/oda/models/create_digital_assistant_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_digital_assistant_version_details.py b/src/oci/oda/models/create_digital_assistant_version_details.py index d17b62a404..a077f242fd 100644 --- a/src/oci/oda/models/create_digital_assistant_version_details.py +++ b/src/oci/oda/models/create_digital_assistant_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_facebook_channel_details.py b/src/oci/oda/models/create_facebook_channel_details.py index 1526177abc..0dd9ff077e 100644 --- a/src/oci/oda/models/create_facebook_channel_details.py +++ b/src/oci/oda/models/create_facebook_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_facebook_channel_result.py b/src/oci/oda/models/create_facebook_channel_result.py index 19ec0ab68a..98d04ac473 100644 --- a/src/oci/oda/models/create_facebook_channel_result.py +++ b/src/oci/oda/models/create_facebook_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_imported_package_details.py b/src/oci/oda/models/create_imported_package_details.py index daa34d468b..9d54673179 100644 --- a/src/oci/oda/models/create_imported_package_details.py +++ b/src/oci/oda/models/create_imported_package_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_ios_channel_details.py b/src/oci/oda/models/create_ios_channel_details.py index 812af14807..51f95cae46 100644 --- a/src/oci/oda/models/create_ios_channel_details.py +++ b/src/oci/oda/models/create_ios_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_ios_channel_result.py b/src/oci/oda/models/create_ios_channel_result.py index cc95da0084..abbca9019c 100644 --- a/src/oci/oda/models/create_ios_channel_result.py +++ b/src/oci/oda/models/create_ios_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_ms_teams_channel_details.py b/src/oci/oda/models/create_ms_teams_channel_details.py index 3c7d7194bb..5bef95a137 100644 --- a/src/oci/oda/models/create_ms_teams_channel_details.py +++ b/src/oci/oda/models/create_ms_teams_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_ms_teams_channel_result.py b/src/oci/oda/models/create_ms_teams_channel_result.py index 383e547bf1..212c1e8842 100644 --- a/src/oci/oda/models/create_ms_teams_channel_result.py +++ b/src/oci/oda/models/create_ms_teams_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_new_digital_assistant_details.py b/src/oci/oda/models/create_new_digital_assistant_details.py index 824f05b53a..53956dc572 100644 --- a/src/oci/oda/models/create_new_digital_assistant_details.py +++ b/src/oci/oda/models/create_new_digital_assistant_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_new_skill_details.py b/src/oci/oda/models/create_new_skill_details.py index c5d5c31909..fae965e65f 100644 --- a/src/oci/oda/models/create_new_skill_details.py +++ b/src/oci/oda/models/create_new_skill_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_oda_instance_attachment_details.py b/src/oci/oda/models/create_oda_instance_attachment_details.py index 0a2e3801df..ec47a29247 100644 --- a/src/oci/oda/models/create_oda_instance_attachment_details.py +++ b/src/oci/oda/models/create_oda_instance_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_oda_instance_details.py b/src/oci/oda/models/create_oda_instance_details.py index ceebf52c9c..be180794f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_oda_private_endpoint_attachment_details.py b/src/oci/oda/models/create_oda_private_endpoint_attachment_details.py index 1920e02996..e9e6a6a2ed 100644 --- a/src/oci/oda/models/create_oda_private_endpoint_attachment_details.py +++ b/src/oci/oda/models/create_oda_private_endpoint_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_oda_private_endpoint_details.py b/src/oci/oda/models/create_oda_private_endpoint_details.py index 694fd000c6..4c89685258 100644 --- a/src/oci/oda/models/create_oda_private_endpoint_details.py +++ b/src/oci/oda/models/create_oda_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_oda_private_endpoint_scan_proxy_details.py b/src/oci/oda/models/create_oda_private_endpoint_scan_proxy_details.py index 496c2b09a3..3376cb4a7a 100644 --- a/src/oci/oda/models/create_oda_private_endpoint_scan_proxy_details.py +++ b/src/oci/oda/models/create_oda_private_endpoint_scan_proxy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_oss_channel_details.py b/src/oci/oda/models/create_oss_channel_details.py index 2a562bf5a2..044bdb337a 100644 --- a/src/oci/oda/models/create_oss_channel_details.py +++ b/src/oci/oda/models/create_oss_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_oss_channel_result.py b/src/oci/oda/models/create_oss_channel_result.py index eb23386f73..535929882a 100644 --- a/src/oci/oda/models/create_oss_channel_result.py +++ b/src/oci/oda/models/create_oss_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_osvc_channel_details.py b/src/oci/oda/models/create_osvc_channel_details.py index d8770abbfc..6fa7e1001c 100644 --- a/src/oci/oda/models/create_osvc_channel_details.py +++ b/src/oci/oda/models/create_osvc_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_osvc_channel_result.py b/src/oci/oda/models/create_osvc_channel_result.py index 26f1462205..ea1130ee81 100644 --- a/src/oci/oda/models/create_osvc_channel_result.py +++ b/src/oci/oda/models/create_osvc_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_service_cloud_channel_details.py b/src/oci/oda/models/create_service_cloud_channel_details.py index 6279f589d4..d107827b9a 100644 --- a/src/oci/oda/models/create_service_cloud_channel_details.py +++ b/src/oci/oda/models/create_service_cloud_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_service_cloud_channel_result.py b/src/oci/oda/models/create_service_cloud_channel_result.py index 72d4124e6c..d04ce923a2 100644 --- a/src/oci/oda/models/create_service_cloud_channel_result.py +++ b/src/oci/oda/models/create_service_cloud_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_skill_composite_entity_details.py b/src/oci/oda/models/create_skill_composite_entity_details.py index f8789492db..5f22ba8f8f 100644 --- a/src/oci/oda/models/create_skill_composite_entity_details.py +++ b/src/oci/oda/models/create_skill_composite_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_skill_details.py b/src/oci/oda/models/create_skill_details.py index 978ee23b42..5438d89f57 100644 --- a/src/oci/oda/models/create_skill_details.py +++ b/src/oci/oda/models/create_skill_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_skill_entity_details.py b/src/oci/oda/models/create_skill_entity_details.py index a05f79b92a..f549917b52 100644 --- a/src/oci/oda/models/create_skill_entity_details.py +++ b/src/oci/oda/models/create_skill_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_skill_parameter_details.py b/src/oci/oda/models/create_skill_parameter_details.py index 0c572409f6..bf3f705980 100644 --- a/src/oci/oda/models/create_skill_parameter_details.py +++ b/src/oci/oda/models/create_skill_parameter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_skill_value_list_entity_details.py b/src/oci/oda/models/create_skill_value_list_entity_details.py index ba0126322d..ddb4c05cd5 100644 --- a/src/oci/oda/models/create_skill_value_list_entity_details.py +++ b/src/oci/oda/models/create_skill_value_list_entity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_skill_version_details.py b/src/oci/oda/models/create_skill_version_details.py index 57c50d82d7..749b723449 100644 --- a/src/oci/oda/models/create_skill_version_details.py +++ b/src/oci/oda/models/create_skill_version_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_slack_channel_details.py b/src/oci/oda/models/create_slack_channel_details.py index 5deb33b9b5..f1690c7a19 100644 --- a/src/oci/oda/models/create_slack_channel_details.py +++ b/src/oci/oda/models/create_slack_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_slack_channel_result.py b/src/oci/oda/models/create_slack_channel_result.py index 5baadce843..bec4e4779b 100644 --- a/src/oci/oda/models/create_slack_channel_result.py +++ b/src/oci/oda/models/create_slack_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_test_channel_result.py b/src/oci/oda/models/create_test_channel_result.py index 2a3eee1722..3540b67e22 100644 --- a/src/oci/oda/models/create_test_channel_result.py +++ b/src/oci/oda/models/create_test_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_translator_details.py b/src/oci/oda/models/create_translator_details.py index c342a53b6f..c4fdcb069c 100644 --- a/src/oci/oda/models/create_translator_details.py +++ b/src/oci/oda/models/create_translator_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_twilio_channel_details.py b/src/oci/oda/models/create_twilio_channel_details.py index a1fcd80184..0c22f4ba1b 100644 --- a/src/oci/oda/models/create_twilio_channel_details.py +++ b/src/oci/oda/models/create_twilio_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_twilio_channel_result.py b/src/oci/oda/models/create_twilio_channel_result.py index 3017d17a94..3126a26fbe 100644 --- a/src/oci/oda/models/create_twilio_channel_result.py +++ b/src/oci/oda/models/create_twilio_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_web_channel_details.py b/src/oci/oda/models/create_web_channel_details.py index 735fae8ae3..d0f6a60a8f 100644 --- a/src/oci/oda/models/create_web_channel_details.py +++ b/src/oci/oda/models/create_web_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_web_channel_result.py b/src/oci/oda/models/create_web_channel_result.py index 24d29f6656..db456669bc 100644 --- a/src/oci/oda/models/create_web_channel_result.py +++ b/src/oci/oda/models/create_web_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_webhook_channel_details.py b/src/oci/oda/models/create_webhook_channel_details.py index 01e335f2cc..a4965d59bf 100644 --- a/src/oci/oda/models/create_webhook_channel_details.py +++ b/src/oci/oda/models/create_webhook_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/create_webhook_channel_result.py b/src/oci/oda/models/create_webhook_channel_result.py index 21fa247b21..1ce3685f23 100644 --- a/src/oci/oda/models/create_webhook_channel_result.py +++ b/src/oci/oda/models/create_webhook_channel_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/default_parameter_values.py b/src/oci/oda/models/default_parameter_values.py index 7415ffc4c3..486bea70b0 100644 --- a/src/oci/oda/models/default_parameter_values.py +++ b/src/oci/oda/models/default_parameter_values.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/digital_assistant.py b/src/oci/oda/models/digital_assistant.py index 41980e0278..d22d0e40d2 100644 --- a/src/oci/oda/models/digital_assistant.py +++ b/src/oci/oda/models/digital_assistant.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/digital_assistant_collection.py b/src/oci/oda/models/digital_assistant_collection.py index 22a76008cb..f183d48c02 100644 --- a/src/oci/oda/models/digital_assistant_collection.py +++ b/src/oci/oda/models/digital_assistant_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/digital_assistant_parameter.py b/src/oci/oda/models/digital_assistant_parameter.py index ccb3930b92..0f4b73f1d8 100644 --- a/src/oci/oda/models/digital_assistant_parameter.py +++ b/src/oci/oda/models/digital_assistant_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/digital_assistant_parameter_collection.py b/src/oci/oda/models/digital_assistant_parameter_collection.py index a40862ce59..0bcb65aca9 100644 --- a/src/oci/oda/models/digital_assistant_parameter_collection.py +++ b/src/oci/oda/models/digital_assistant_parameter_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/digital_assistant_parameter_summary.py b/src/oci/oda/models/digital_assistant_parameter_summary.py index 5cfa146d1e..a9ba8b89ee 100644 --- a/src/oci/oda/models/digital_assistant_parameter_summary.py +++ b/src/oci/oda/models/digital_assistant_parameter_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/digital_assistant_parameter_value.py b/src/oci/oda/models/digital_assistant_parameter_value.py index 4c791b2cca..881dbee514 100644 --- a/src/oci/oda/models/digital_assistant_parameter_value.py +++ b/src/oci/oda/models/digital_assistant_parameter_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/digital_assistant_summary.py b/src/oci/oda/models/digital_assistant_summary.py index 7a93de78f9..27594b03bb 100644 --- a/src/oci/oda/models/digital_assistant_summary.py +++ b/src/oci/oda/models/digital_assistant_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/entity.py b/src/oci/oda/models/entity.py index a40c2a64f4..19d338c650 100644 --- a/src/oci/oda/models/entity.py +++ b/src/oci/oda/models/entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/entity_action.py b/src/oci/oda/models/entity_action.py index 8b6e957bfe..ee3cb89548 100644 --- a/src/oci/oda/models/entity_action.py +++ b/src/oci/oda/models/entity_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/entity_action_argument.py b/src/oci/oda/models/entity_action_argument.py index f7bc141abc..2fb052063a 100644 --- a/src/oci/oda/models/entity_action_argument.py +++ b/src/oci/oda/models/entity_action_argument.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/entity_action_argument_natural_language_mapping.py b/src/oci/oda/models/entity_action_argument_natural_language_mapping.py index 94b4e7b324..c2423e7054 100644 --- a/src/oci/oda/models/entity_action_argument_natural_language_mapping.py +++ b/src/oci/oda/models/entity_action_argument_natural_language_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/entity_action_natural_language_mapping.py b/src/oci/oda/models/entity_action_natural_language_mapping.py index 95319aafa9..275c3070eb 100644 --- a/src/oci/oda/models/entity_action_natural_language_mapping.py +++ b/src/oci/oda/models/entity_action_natural_language_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/entity_attribute.py b/src/oci/oda/models/entity_attribute.py index 72599041ca..a12080274e 100644 --- a/src/oci/oda/models/entity_attribute.py +++ b/src/oci/oda/models/entity_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/entity_attribute_natural_language_mapping.py b/src/oci/oda/models/entity_attribute_natural_language_mapping.py index 153d884abf..a084ecd7d5 100644 --- a/src/oci/oda/models/entity_attribute_natural_language_mapping.py +++ b/src/oci/oda/models/entity_attribute_natural_language_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/entity_natural_language_mapping.py b/src/oci/oda/models/entity_natural_language_mapping.py index 471832eac6..1e9c06d602 100644 --- a/src/oci/oda/models/entity_natural_language_mapping.py +++ b/src/oci/oda/models/entity_natural_language_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/error_body.py b/src/oci/oda/models/error_body.py index 0a8e0f42dc..0279c41d8b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/export_bot_details.py b/src/oci/oda/models/export_bot_details.py index dba0499aea..df82a948ba 100644 --- a/src/oci/oda/models/export_bot_details.py +++ b/src/oci/oda/models/export_bot_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/export_digital_assistant_details.py b/src/oci/oda/models/export_digital_assistant_details.py index 02d4563d21..e4c6a8c628 100644 --- a/src/oci/oda/models/export_digital_assistant_details.py +++ b/src/oci/oda/models/export_digital_assistant_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/export_skill_details.py b/src/oci/oda/models/export_skill_details.py index 48637358ef..7a202f79e5 100644 --- a/src/oci/oda/models/export_skill_details.py +++ b/src/oci/oda/models/export_skill_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/extend_digital_assistant_details.py b/src/oci/oda/models/extend_digital_assistant_details.py index 662d7d2ce8..58b0bba842 100644 --- a/src/oci/oda/models/extend_digital_assistant_details.py +++ b/src/oci/oda/models/extend_digital_assistant_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/extend_skill_details.py b/src/oci/oda/models/extend_skill_details.py index b1c3ba9d79..9bdb3890e4 100644 --- a/src/oci/oda/models/extend_skill_details.py +++ b/src/oci/oda/models/extend_skill_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/facebook_channel.py b/src/oci/oda/models/facebook_channel.py index f823ea958a..4387b0ad0d 100644 --- a/src/oci/oda/models/facebook_channel.py +++ b/src/oci/oda/models/facebook_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/import_bot_details.py b/src/oci/oda/models/import_bot_details.py index 0b40c1c6f9..b79a1e6b9f 100644 --- a/src/oci/oda/models/import_bot_details.py +++ b/src/oci/oda/models/import_bot_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/import_contract.py b/src/oci/oda/models/import_contract.py index 0db45034fe..e45814e2b7 100644 --- a/src/oci/oda/models/import_contract.py +++ b/src/oci/oda/models/import_contract.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/imported_package.py b/src/oci/oda/models/imported_package.py index a65eeab99f..d02d591992 100644 --- a/src/oci/oda/models/imported_package.py +++ b/src/oci/oda/models/imported_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/imported_package_summary.py b/src/oci/oda/models/imported_package_summary.py index 1337159b87..493f7f32af 100644 --- a/src/oci/oda/models/imported_package_summary.py +++ b/src/oci/oda/models/imported_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/ios_channel.py b/src/oci/oda/models/ios_channel.py index 0cd8fa969c..ebe8bf89f2 100644 --- a/src/oci/oda/models/ios_channel.py +++ b/src/oci/oda/models/ios_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/language_mapping.py b/src/oci/oda/models/language_mapping.py index 42988b20ef..e99f520628 100644 --- a/src/oci/oda/models/language_mapping.py +++ b/src/oci/oda/models/language_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/metadata_property.py b/src/oci/oda/models/metadata_property.py index d4b20f9a75..ec1c648a49 100644 --- a/src/oci/oda/models/metadata_property.py +++ b/src/oci/oda/models/metadata_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/ms_teams_channel.py b/src/oci/oda/models/ms_teams_channel.py index bd9f8a49d7..4c274a3daa 100644 --- a/src/oci/oda/models/ms_teams_channel.py +++ b/src/oci/oda/models/ms_teams_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/name_mapping.py b/src/oci/oda/models/name_mapping.py index 39fcbe3cb3..032ee4f882 100644 --- a/src/oci/oda/models/name_mapping.py +++ b/src/oci/oda/models/name_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_instance.py b/src/oci/oda/models/oda_instance.py index f1b67b6e6c..5da5ca38e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_instance_attachment.py b/src/oci/oda/models/oda_instance_attachment.py index 7c7c69b595..ea6b8b0db1 100644 --- a/src/oci/oda/models/oda_instance_attachment.py +++ b/src/oci/oda/models/oda_instance_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_instance_attachment_collection.py b/src/oci/oda/models/oda_instance_attachment_collection.py index 39fc61ead5..f5db3a606a 100644 --- a/src/oci/oda/models/oda_instance_attachment_collection.py +++ b/src/oci/oda/models/oda_instance_attachment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_instance_attachment_owner.py b/src/oci/oda/models/oda_instance_attachment_owner.py index 9d631c1473..55e4b5a61a 100644 --- a/src/oci/oda/models/oda_instance_attachment_owner.py +++ b/src/oci/oda/models/oda_instance_attachment_owner.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_instance_attachment_summary.py b/src/oci/oda/models/oda_instance_attachment_summary.py index 510c491b8f..3babef8f1d 100644 --- a/src/oci/oda/models/oda_instance_attachment_summary.py +++ b/src/oci/oda/models/oda_instance_attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_instance_owner.py b/src/oci/oda/models/oda_instance_owner.py index 002f7a60bf..5bd1ba1d5b 100644 --- a/src/oci/oda/models/oda_instance_owner.py +++ b/src/oci/oda/models/oda_instance_owner.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_instance_summary.py b/src/oci/oda/models/oda_instance_summary.py index d0b7a38ce7..d94b2ab813 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_private_endpoint.py b/src/oci/oda/models/oda_private_endpoint.py index 1296af3724..90df05bd4a 100644 --- a/src/oci/oda/models/oda_private_endpoint.py +++ b/src/oci/oda/models/oda_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_private_endpoint_attachment.py b/src/oci/oda/models/oda_private_endpoint_attachment.py index 6dc36da42c..75f3528d9d 100644 --- a/src/oci/oda/models/oda_private_endpoint_attachment.py +++ b/src/oci/oda/models/oda_private_endpoint_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_private_endpoint_attachment_collection.py b/src/oci/oda/models/oda_private_endpoint_attachment_collection.py index e2d8489f5e..f3541e867f 100644 --- a/src/oci/oda/models/oda_private_endpoint_attachment_collection.py +++ b/src/oci/oda/models/oda_private_endpoint_attachment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_private_endpoint_attachment_summary.py b/src/oci/oda/models/oda_private_endpoint_attachment_summary.py index 93aaf2b65c..5c9fa26696 100644 --- a/src/oci/oda/models/oda_private_endpoint_attachment_summary.py +++ b/src/oci/oda/models/oda_private_endpoint_attachment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_private_endpoint_collection.py b/src/oci/oda/models/oda_private_endpoint_collection.py index a1c8a7d890..0249f531d2 100644 --- a/src/oci/oda/models/oda_private_endpoint_collection.py +++ b/src/oci/oda/models/oda_private_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_private_endpoint_scan_proxy.py b/src/oci/oda/models/oda_private_endpoint_scan_proxy.py index 389e9b91c0..f9578da293 100644 --- a/src/oci/oda/models/oda_private_endpoint_scan_proxy.py +++ b/src/oci/oda/models/oda_private_endpoint_scan_proxy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_private_endpoint_scan_proxy_collection.py b/src/oci/oda/models/oda_private_endpoint_scan_proxy_collection.py index 037be817c7..94f544550a 100644 --- a/src/oci/oda/models/oda_private_endpoint_scan_proxy_collection.py +++ b/src/oci/oda/models/oda_private_endpoint_scan_proxy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_private_endpoint_scan_proxy_summary.py b/src/oci/oda/models/oda_private_endpoint_scan_proxy_summary.py index 888845aba3..b03067e462 100644 --- a/src/oci/oda/models/oda_private_endpoint_scan_proxy_summary.py +++ b/src/oci/oda/models/oda_private_endpoint_scan_proxy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oda_private_endpoint_summary.py b/src/oci/oda/models/oda_private_endpoint_summary.py index 285272cd8e..ed3e6b47b9 100644 --- a/src/oci/oda/models/oda_private_endpoint_summary.py +++ b/src/oci/oda/models/oda_private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/oss_channel.py b/src/oci/oda/models/oss_channel.py index 33b07db2d7..f0d7761cc2 100644 --- a/src/oci/oda/models/oss_channel.py +++ b/src/oci/oda/models/oss_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/osvc_channel.py b/src/oci/oda/models/osvc_channel.py index e1b319aa12..b0d732d8c3 100644 --- a/src/oci/oda/models/osvc_channel.py +++ b/src/oci/oda/models/osvc_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/package.py b/src/oci/oda/models/package.py index c0ca635e4b..f7e3ef1051 100644 --- a/src/oci/oda/models/package.py +++ b/src/oci/oda/models/package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/package_summary.py b/src/oci/oda/models/package_summary.py index 8d037dcd8d..7db2cc185d 100644 --- a/src/oci/oda/models/package_summary.py +++ b/src/oci/oda/models/package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/parameter.py b/src/oci/oda/models/parameter.py index 3e7b20c16c..63a04591d6 100644 --- a/src/oci/oda/models/parameter.py +++ b/src/oci/oda/models/parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/parameter_definition.py b/src/oci/oda/models/parameter_definition.py index 8a4809d412..6606cc0f9d 100644 --- a/src/oci/oda/models/parameter_definition.py +++ b/src/oci/oda/models/parameter_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/resource_type_default_parameter_values.py b/src/oci/oda/models/resource_type_default_parameter_values.py index bbd99fbe56..b109ad8f13 100644 --- a/src/oci/oda/models/resource_type_default_parameter_values.py +++ b/src/oci/oda/models/resource_type_default_parameter_values.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/resource_type_import_contract.py b/src/oci/oda/models/resource_type_import_contract.py index a7d2bc1882..923d14dedd 100644 --- a/src/oci/oda/models/resource_type_import_contract.py +++ b/src/oci/oda/models/resource_type_import_contract.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/resource_type_metadata.py b/src/oci/oda/models/resource_type_metadata.py index 30ba95a890..5303ba77e0 100644 --- a/src/oci/oda/models/resource_type_metadata.py +++ b/src/oci/oda/models/resource_type_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/restricted_operation.py b/src/oci/oda/models/restricted_operation.py index 88c004a3cd..ce3d8bc58b 100644 --- a/src/oci/oda/models/restricted_operation.py +++ b/src/oci/oda/models/restricted_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/scan_listener_info.py b/src/oci/oda/models/scan_listener_info.py index 7de67c4388..577b24d50b 100644 --- a/src/oci/oda/models/scan_listener_info.py +++ b/src/oci/oda/models/scan_listener_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/service_cloud_channel.py b/src/oci/oda/models/service_cloud_channel.py index 561c5f6dd8..2facf4243f 100644 --- a/src/oci/oda/models/service_cloud_channel.py +++ b/src/oci/oda/models/service_cloud_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/skill.py b/src/oci/oda/models/skill.py index 87bc8cc991..41241012cf 100644 --- a/src/oci/oda/models/skill.py +++ b/src/oci/oda/models/skill.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/skill_collection.py b/src/oci/oda/models/skill_collection.py index 98f667e03e..b7738e08e5 100644 --- a/src/oci/oda/models/skill_collection.py +++ b/src/oci/oda/models/skill_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/skill_parameter.py b/src/oci/oda/models/skill_parameter.py index 99186fc4f8..bc0846a764 100644 --- a/src/oci/oda/models/skill_parameter.py +++ b/src/oci/oda/models/skill_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/skill_parameter_collection.py b/src/oci/oda/models/skill_parameter_collection.py index 5edaf28306..af657df0e9 100644 --- a/src/oci/oda/models/skill_parameter_collection.py +++ b/src/oci/oda/models/skill_parameter_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/skill_parameter_summary.py b/src/oci/oda/models/skill_parameter_summary.py index 11f66068cf..4864d8d6ea 100644 --- a/src/oci/oda/models/skill_parameter_summary.py +++ b/src/oci/oda/models/skill_parameter_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/skill_summary.py b/src/oci/oda/models/skill_summary.py index 944b7366b7..0b72a5e3fe 100644 --- a/src/oci/oda/models/skill_summary.py +++ b/src/oci/oda/models/skill_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/slack_channel.py b/src/oci/oda/models/slack_channel.py index 391cd4d47c..e4b4b63931 100644 --- a/src/oci/oda/models/slack_channel.py +++ b/src/oci/oda/models/slack_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/static_entity_value.py b/src/oci/oda/models/static_entity_value.py index ab4705f42f..9885ffe2d4 100644 --- a/src/oci/oda/models/static_entity_value.py +++ b/src/oci/oda/models/static_entity_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/static_entity_value_natural_language_mapping.py b/src/oci/oda/models/static_entity_value_natural_language_mapping.py index 6b32c30970..654861b4a3 100644 --- a/src/oci/oda/models/static_entity_value_natural_language_mapping.py +++ b/src/oci/oda/models/static_entity_value_natural_language_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/storage_location.py b/src/oci/oda/models/storage_location.py index d9982789d4..1ce6f1d00b 100644 --- a/src/oci/oda/models/storage_location.py +++ b/src/oci/oda/models/storage_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/test_channel.py b/src/oci/oda/models/test_channel.py index b3303c3f7d..764a4b84e0 100644 --- a/src/oci/oda/models/test_channel.py +++ b/src/oci/oda/models/test_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/train_skill_details.py b/src/oci/oda/models/train_skill_details.py index f909349f7d..a7beec1785 100644 --- a/src/oci/oda/models/train_skill_details.py +++ b/src/oci/oda/models/train_skill_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/train_skill_parameter.py b/src/oci/oda/models/train_skill_parameter.py index ab73751f9b..d0d9416dec 100644 --- a/src/oci/oda/models/train_skill_parameter.py +++ b/src/oci/oda/models/train_skill_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/train_skill_query_entity_parameter.py b/src/oci/oda/models/train_skill_query_entity_parameter.py index 0553de4229..5f259c1c7a 100644 --- a/src/oci/oda/models/train_skill_query_entity_parameter.py +++ b/src/oci/oda/models/train_skill_query_entity_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/translator.py b/src/oci/oda/models/translator.py index 5fc2f2f42a..bfbbbb70da 100644 --- a/src/oci/oda/models/translator.py +++ b/src/oci/oda/models/translator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/translator_collection.py b/src/oci/oda/models/translator_collection.py index 2fcf8ed8a7..2dc53e55d8 100644 --- a/src/oci/oda/models/translator_collection.py +++ b/src/oci/oda/models/translator_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/translator_summary.py b/src/oci/oda/models/translator_summary.py index 1709fde9d0..736ff30d77 100644 --- a/src/oci/oda/models/translator_summary.py +++ b/src/oci/oda/models/translator_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/twilio_channel.py b/src/oci/oda/models/twilio_channel.py index 6bd395594a..e9425023e6 100644 --- a/src/oci/oda/models/twilio_channel.py +++ b/src/oci/oda/models/twilio_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_android_channel_details.py b/src/oci/oda/models/update_android_channel_details.py index 6be5b14a06..10abfdbe49 100644 --- a/src/oci/oda/models/update_android_channel_details.py +++ b/src/oci/oda/models/update_android_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_app_event_channel_details.py b/src/oci/oda/models/update_app_event_channel_details.py index 68ad408bb3..01a5c7dcc4 100644 --- a/src/oci/oda/models/update_app_event_channel_details.py +++ b/src/oci/oda/models/update_app_event_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_application_channel_details.py b/src/oci/oda/models/update_application_channel_details.py index 71c738b73f..fd4d1c0037 100644 --- a/src/oci/oda/models/update_application_channel_details.py +++ b/src/oci/oda/models/update_application_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_authentication_provider_details.py b/src/oci/oda/models/update_authentication_provider_details.py index aa31f41d3b..ebce42a563 100644 --- a/src/oci/oda/models/update_authentication_provider_details.py +++ b/src/oci/oda/models/update_authentication_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_channel_details.py b/src/oci/oda/models/update_channel_details.py index 8b11fabdfa..9d18204833 100644 --- a/src/oci/oda/models/update_channel_details.py +++ b/src/oci/oda/models/update_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_cortana_channel_details.py b/src/oci/oda/models/update_cortana_channel_details.py index 5399b40439..7ea99aa714 100644 --- a/src/oci/oda/models/update_cortana_channel_details.py +++ b/src/oci/oda/models/update_cortana_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_digital_assistant_details.py b/src/oci/oda/models/update_digital_assistant_details.py index 97a0edd1fa..277204672a 100644 --- a/src/oci/oda/models/update_digital_assistant_details.py +++ b/src/oci/oda/models/update_digital_assistant_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_digital_assistant_parameter_details.py b/src/oci/oda/models/update_digital_assistant_parameter_details.py index 89ac577ad2..0b6628f93c 100644 --- a/src/oci/oda/models/update_digital_assistant_parameter_details.py +++ b/src/oci/oda/models/update_digital_assistant_parameter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_facebook_channel_details.py b/src/oci/oda/models/update_facebook_channel_details.py index 0f5a707886..db83d25ada 100644 --- a/src/oci/oda/models/update_facebook_channel_details.py +++ b/src/oci/oda/models/update_facebook_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_imported_package_details.py b/src/oci/oda/models/update_imported_package_details.py index e62b19faf0..afb5e4d4a3 100644 --- a/src/oci/oda/models/update_imported_package_details.py +++ b/src/oci/oda/models/update_imported_package_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_ios_channel_details.py b/src/oci/oda/models/update_ios_channel_details.py index 5debdf68b0..55b51f8be3 100644 --- a/src/oci/oda/models/update_ios_channel_details.py +++ b/src/oci/oda/models/update_ios_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_ms_teams_channel_details.py b/src/oci/oda/models/update_ms_teams_channel_details.py index c04119abd3..84a03d58f3 100644 --- a/src/oci/oda/models/update_ms_teams_channel_details.py +++ b/src/oci/oda/models/update_ms_teams_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_oda_instance_attachment_details.py b/src/oci/oda/models/update_oda_instance_attachment_details.py index 8999bd67e0..2ac07a54fc 100644 --- a/src/oci/oda/models/update_oda_instance_attachment_details.py +++ b/src/oci/oda/models/update_oda_instance_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_oda_instance_details.py b/src/oci/oda/models/update_oda_instance_details.py index 6f62b6690a..723667034c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_oda_private_endpoint_details.py b/src/oci/oda/models/update_oda_private_endpoint_details.py index a67feca5c2..3ca2d48fd3 100644 --- a/src/oci/oda/models/update_oda_private_endpoint_details.py +++ b/src/oci/oda/models/update_oda_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_oss_channel_details.py b/src/oci/oda/models/update_oss_channel_details.py index 35cbbe1293..336cdbb0c7 100644 --- a/src/oci/oda/models/update_oss_channel_details.py +++ b/src/oci/oda/models/update_oss_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_osvc_channel_details.py b/src/oci/oda/models/update_osvc_channel_details.py index d496823fea..8ee3edf361 100644 --- a/src/oci/oda/models/update_osvc_channel_details.py +++ b/src/oci/oda/models/update_osvc_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_service_cloud_channel_details.py b/src/oci/oda/models/update_service_cloud_channel_details.py index 4ae88f5b16..c3562c16e2 100644 --- a/src/oci/oda/models/update_service_cloud_channel_details.py +++ b/src/oci/oda/models/update_service_cloud_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_skill_details.py b/src/oci/oda/models/update_skill_details.py index 57a51b851c..8c551de7c2 100644 --- a/src/oci/oda/models/update_skill_details.py +++ b/src/oci/oda/models/update_skill_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_skill_parameter_details.py b/src/oci/oda/models/update_skill_parameter_details.py index c7b7397367..b018d808e2 100644 --- a/src/oci/oda/models/update_skill_parameter_details.py +++ b/src/oci/oda/models/update_skill_parameter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_slack_channel_details.py b/src/oci/oda/models/update_slack_channel_details.py index 4c81b1316b..3fa15de642 100644 --- a/src/oci/oda/models/update_slack_channel_details.py +++ b/src/oci/oda/models/update_slack_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_translator_details.py b/src/oci/oda/models/update_translator_details.py index 4bb6ed185d..65d3fb93ee 100644 --- a/src/oci/oda/models/update_translator_details.py +++ b/src/oci/oda/models/update_translator_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_twilio_channel_details.py b/src/oci/oda/models/update_twilio_channel_details.py index 4c883ac2c0..8dffcef8ca 100644 --- a/src/oci/oda/models/update_twilio_channel_details.py +++ b/src/oci/oda/models/update_twilio_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_web_channel_details.py b/src/oci/oda/models/update_web_channel_details.py index b2900b697f..7c1ad2fdcc 100644 --- a/src/oci/oda/models/update_web_channel_details.py +++ b/src/oci/oda/models/update_web_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/update_webhook_channel_details.py b/src/oci/oda/models/update_webhook_channel_details.py index 5be122bcca..f58e1b5478 100644 --- a/src/oci/oda/models/update_webhook_channel_details.py +++ b/src/oci/oda/models/update_webhook_channel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/value_list_entity.py b/src/oci/oda/models/value_list_entity.py index 725636ef44..e77e04c329 100644 --- a/src/oci/oda/models/value_list_entity.py +++ b/src/oci/oda/models/value_list_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/web_channel.py b/src/oci/oda/models/web_channel.py index 6e7d26b04c..49a0c3253e 100644 --- a/src/oci/oda/models/web_channel.py +++ b/src/oci/oda/models/web_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/webhook_channel.py b/src/oci/oda/models/webhook_channel.py index 901267fbe5..977180bfcc 100644 --- a/src/oci/oda/models/webhook_channel.py +++ b/src/oci/oda/models/webhook_channel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/work_request.py b/src/oci/oda/models/work_request.py index 33f646a15d..f3a809a6d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/work_request_error.py b/src/oci/oda/models/work_request_error.py index 1502671b4f..aa000462b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/work_request_log_entry.py b/src/oci/oda/models/work_request_log_entry.py index 2639515665..6ac74edd77 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/work_request_resource.py b/src/oci/oda/models/work_request_resource.py index 952da3e68c..22b4f4c1c8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/models/work_request_summary.py b/src/oci/oda/models/work_request_summary.py index e6aee239f0..67bf9b632a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/oda_client.py b/src/oci/oda/oda_client.py index eea657a6bb..0949fe49b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/oda_client_composite_operations.py b/src/oci/oda/oda_client_composite_operations.py index 5a9e35c46d..ae0585fb58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/odapackage_client.py b/src/oci/oda/odapackage_client.py index a3f50fff29..94b4bb3dc8 100644 --- a/src/oci/oda/odapackage_client.py +++ b/src/oci/oda/odapackage_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/oda/odapackage_client_composite_operations.py b/src/oci/oda/odapackage_client_composite_operations.py index ee4a459cb6..3dbae271a7 100644 --- a/src/oci/oda/odapackage_client_composite_operations.py +++ b/src/oci/oda/odapackage_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190506 diff --git a/src/oci/onesubscription/__init__.py b/src/oci/onesubscription/__init__.py index 5cb08cb895..fc39443107 100644 --- a/src/oci/onesubscription/__init__.py +++ b/src/oci/onesubscription/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/billing_schedule_client.py b/src/oci/onesubscription/billing_schedule_client.py index 8aae11be2b..d3e4b44aca 100644 --- a/src/oci/onesubscription/billing_schedule_client.py +++ b/src/oci/onesubscription/billing_schedule_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/billing_schedule_client_composite_operations.py b/src/oci/onesubscription/billing_schedule_client_composite_operations.py index 03634ce463..b9877511b0 100644 --- a/src/oci/onesubscription/billing_schedule_client_composite_operations.py +++ b/src/oci/onesubscription/billing_schedule_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/commitment_client.py b/src/oci/onesubscription/commitment_client.py index e793e3f9f4..1eba286164 100644 --- a/src/oci/onesubscription/commitment_client.py +++ b/src/oci/onesubscription/commitment_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/commitment_client_composite_operations.py b/src/oci/onesubscription/commitment_client_composite_operations.py index d5f090cc08..bfcda60fd8 100644 --- a/src/oci/onesubscription/commitment_client_composite_operations.py +++ b/src/oci/onesubscription/commitment_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/computed_usage_client.py b/src/oci/onesubscription/computed_usage_client.py index d30b2e5103..4bb59d288c 100644 --- a/src/oci/onesubscription/computed_usage_client.py +++ b/src/oci/onesubscription/computed_usage_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/computed_usage_client_composite_operations.py b/src/oci/onesubscription/computed_usage_client_composite_operations.py index 6a5c6fcb5a..2c0c8135f2 100644 --- a/src/oci/onesubscription/computed_usage_client_composite_operations.py +++ b/src/oci/onesubscription/computed_usage_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/invoice_summary_client.py b/src/oci/onesubscription/invoice_summary_client.py index 6c3cee92ef..13cc9fa1df 100644 --- a/src/oci/onesubscription/invoice_summary_client.py +++ b/src/oci/onesubscription/invoice_summary_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/invoice_summary_client_composite_operations.py b/src/oci/onesubscription/invoice_summary_client_composite_operations.py index 301d63bd91..f279b2f044 100644 --- a/src/oci/onesubscription/invoice_summary_client_composite_operations.py +++ b/src/oci/onesubscription/invoice_summary_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/__init__.py b/src/oci/onesubscription/models/__init__.py index 88b3807fdf..ed307ff611 100644 --- a/src/oci/onesubscription/models/__init__.py +++ b/src/oci/onesubscription/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/aggregated_computed_usage_summary.py b/src/oci/onesubscription/models/aggregated_computed_usage_summary.py index 4d2ad49405..7ba74b42ec 100644 --- a/src/oci/onesubscription/models/aggregated_computed_usage_summary.py +++ b/src/oci/onesubscription/models/aggregated_computed_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/billing_schedule_product.py b/src/oci/onesubscription/models/billing_schedule_product.py index 7f66c13d7e..f9c0cdfa87 100644 --- a/src/oci/onesubscription/models/billing_schedule_product.py +++ b/src/oci/onesubscription/models/billing_schedule_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/billing_schedule_summary.py b/src/oci/onesubscription/models/billing_schedule_summary.py index 4d2ccbec11..02cbb8599b 100644 --- a/src/oci/onesubscription/models/billing_schedule_summary.py +++ b/src/oci/onesubscription/models/billing_schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/commitment.py b/src/oci/onesubscription/models/commitment.py index 4df3bc408b..3229d3312d 100644 --- a/src/oci/onesubscription/models/commitment.py +++ b/src/oci/onesubscription/models/commitment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/commitment_service.py b/src/oci/onesubscription/models/commitment_service.py index 2f6f1b2b9b..58cfdbd8d5 100644 --- a/src/oci/onesubscription/models/commitment_service.py +++ b/src/oci/onesubscription/models/commitment_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/commitment_summary.py b/src/oci/onesubscription/models/commitment_summary.py index 994b1a4394..705b6bf26a 100644 --- a/src/oci/onesubscription/models/commitment_summary.py +++ b/src/oci/onesubscription/models/commitment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/computed_usage.py b/src/oci/onesubscription/models/computed_usage.py index e198ec533f..1785cc4b50 100644 --- a/src/oci/onesubscription/models/computed_usage.py +++ b/src/oci/onesubscription/models/computed_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/computed_usage_aggregation.py b/src/oci/onesubscription/models/computed_usage_aggregation.py index 889073aff1..2d8187e991 100644 --- a/src/oci/onesubscription/models/computed_usage_aggregation.py +++ b/src/oci/onesubscription/models/computed_usage_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/computed_usage_product.py b/src/oci/onesubscription/models/computed_usage_product.py index 5f276aeaf4..a585dba9f6 100644 --- a/src/oci/onesubscription/models/computed_usage_product.py +++ b/src/oci/onesubscription/models/computed_usage_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/computed_usage_summary.py b/src/oci/onesubscription/models/computed_usage_summary.py index ef1fefc819..139bac5293 100644 --- a/src/oci/onesubscription/models/computed_usage_summary.py +++ b/src/oci/onesubscription/models/computed_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoice_line_summary.py b/src/oci/onesubscription/models/invoice_line_summary.py index 462af00bbb..390348de9d 100644 --- a/src/oci/onesubscription/models/invoice_line_summary.py +++ b/src/oci/onesubscription/models/invoice_line_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoice_summary.py b/src/oci/onesubscription/models/invoice_summary.py index 61d6fe2593..2195fd207a 100644 --- a/src/oci/onesubscription/models/invoice_summary.py +++ b/src/oci/onesubscription/models/invoice_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoiceline_computed_usage_summary.py b/src/oci/onesubscription/models/invoiceline_computed_usage_summary.py index 3b00288b21..9e3b7cbb19 100644 --- a/src/oci/onesubscription/models/invoiceline_computed_usage_summary.py +++ b/src/oci/onesubscription/models/invoiceline_computed_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoicing_address.py b/src/oci/onesubscription/models/invoicing_address.py index b638c67a83..6f8c06ce0f 100644 --- a/src/oci/onesubscription/models/invoicing_address.py +++ b/src/oci/onesubscription/models/invoicing_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoicing_business_partner.py b/src/oci/onesubscription/models/invoicing_business_partner.py index b8006db5aa..53d8ac7b8f 100644 --- a/src/oci/onesubscription/models/invoicing_business_partner.py +++ b/src/oci/onesubscription/models/invoicing_business_partner.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoicing_currency.py b/src/oci/onesubscription/models/invoicing_currency.py index dd1fca653c..adf310cf05 100644 --- a/src/oci/onesubscription/models/invoicing_currency.py +++ b/src/oci/onesubscription/models/invoicing_currency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoicing_location.py b/src/oci/onesubscription/models/invoicing_location.py index 77badc2ac7..a06c23e4e8 100644 --- a/src/oci/onesubscription/models/invoicing_location.py +++ b/src/oci/onesubscription/models/invoicing_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoicing_organization.py b/src/oci/onesubscription/models/invoicing_organization.py index 36bd7b7b2d..cbcf9babb0 100644 --- a/src/oci/onesubscription/models/invoicing_organization.py +++ b/src/oci/onesubscription/models/invoicing_organization.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoicing_payment_term.py b/src/oci/onesubscription/models/invoicing_payment_term.py index ee76322a4a..0f2fcc39bf 100644 --- a/src/oci/onesubscription/models/invoicing_payment_term.py +++ b/src/oci/onesubscription/models/invoicing_payment_term.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoicing_product.py b/src/oci/onesubscription/models/invoicing_product.py index afd764e2c9..63eb7db04d 100644 --- a/src/oci/onesubscription/models/invoicing_product.py +++ b/src/oci/onesubscription/models/invoicing_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/invoicing_user.py b/src/oci/onesubscription/models/invoicing_user.py index 2c6d68b252..2fe977186f 100644 --- a/src/oci/onesubscription/models/invoicing_user.py +++ b/src/oci/onesubscription/models/invoicing_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/organization_subscription_summary.py b/src/oci/onesubscription/models/organization_subscription_summary.py index 110dab8fb6..d314336f58 100644 --- a/src/oci/onesubscription/models/organization_subscription_summary.py +++ b/src/oci/onesubscription/models/organization_subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/orgnization_subs_currency.py b/src/oci/onesubscription/models/orgnization_subs_currency.py index 7dd5f61f0f..7c2d7bac30 100644 --- a/src/oci/onesubscription/models/orgnization_subs_currency.py +++ b/src/oci/onesubscription/models/orgnization_subs_currency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/rate_card_product.py b/src/oci/onesubscription/models/rate_card_product.py index ccb8ca132c..417e13280d 100644 --- a/src/oci/onesubscription/models/rate_card_product.py +++ b/src/oci/onesubscription/models/rate_card_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/rate_card_summary.py b/src/oci/onesubscription/models/rate_card_summary.py index 047ea23260..51538ab281 100644 --- a/src/oci/onesubscription/models/rate_card_summary.py +++ b/src/oci/onesubscription/models/rate_card_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/rate_card_tier.py b/src/oci/onesubscription/models/rate_card_tier.py index ba3e2d66e5..e99916e08e 100644 --- a/src/oci/onesubscription/models/rate_card_tier.py +++ b/src/oci/onesubscription/models/rate_card_tier.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscribed_service.py b/src/oci/onesubscription/models/subscribed_service.py index 144603a00a..ab52a82d77 100644 --- a/src/oci/onesubscription/models/subscribed_service.py +++ b/src/oci/onesubscription/models/subscribed_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscribed_service_address.py b/src/oci/onesubscription/models/subscribed_service_address.py index 16d7417ba5..0776a3fb1b 100644 --- a/src/oci/onesubscription/models/subscribed_service_address.py +++ b/src/oci/onesubscription/models/subscribed_service_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscribed_service_business_partner.py b/src/oci/onesubscription/models/subscribed_service_business_partner.py index 3606ed3a17..f37879db18 100644 --- a/src/oci/onesubscription/models/subscribed_service_business_partner.py +++ b/src/oci/onesubscription/models/subscribed_service_business_partner.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscribed_service_location.py b/src/oci/onesubscription/models/subscribed_service_location.py index ab65240658..a405193e9a 100644 --- a/src/oci/onesubscription/models/subscribed_service_location.py +++ b/src/oci/onesubscription/models/subscribed_service_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscribed_service_payment_term.py b/src/oci/onesubscription/models/subscribed_service_payment_term.py index 5c3de1a927..90c6787323 100644 --- a/src/oci/onesubscription/models/subscribed_service_payment_term.py +++ b/src/oci/onesubscription/models/subscribed_service_payment_term.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscribed_service_summary.py b/src/oci/onesubscription/models/subscribed_service_summary.py index 3db44798ea..982b364daa 100644 --- a/src/oci/onesubscription/models/subscribed_service_summary.py +++ b/src/oci/onesubscription/models/subscribed_service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscribed_service_user.py b/src/oci/onesubscription/models/subscribed_service_user.py index 5db97a3c13..56240613c5 100644 --- a/src/oci/onesubscription/models/subscribed_service_user.py +++ b/src/oci/onesubscription/models/subscribed_service_user.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscription_currency.py b/src/oci/onesubscription/models/subscription_currency.py index de4da57935..fafe6fab14 100644 --- a/src/oci/onesubscription/models/subscription_currency.py +++ b/src/oci/onesubscription/models/subscription_currency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscription_product.py b/src/oci/onesubscription/models/subscription_product.py index 4db7ea5572..a6b8488289 100644 --- a/src/oci/onesubscription/models/subscription_product.py +++ b/src/oci/onesubscription/models/subscription_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscription_subscribed_service.py b/src/oci/onesubscription/models/subscription_subscribed_service.py index 0dc7d5ecc9..68bcc82174 100644 --- a/src/oci/onesubscription/models/subscription_subscribed_service.py +++ b/src/oci/onesubscription/models/subscription_subscribed_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/models/subscription_summary.py b/src/oci/onesubscription/models/subscription_summary.py index 00fdf7fb84..e7ab346d3c 100644 --- a/src/oci/onesubscription/models/subscription_summary.py +++ b/src/oci/onesubscription/models/subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/organization_subscription_client.py b/src/oci/onesubscription/organization_subscription_client.py index 89b6900755..022e6f3987 100644 --- a/src/oci/onesubscription/organization_subscription_client.py +++ b/src/oci/onesubscription/organization_subscription_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/organization_subscription_client_composite_operations.py b/src/oci/onesubscription/organization_subscription_client_composite_operations.py index 07697649b8..b603e67949 100644 --- a/src/oci/onesubscription/organization_subscription_client_composite_operations.py +++ b/src/oci/onesubscription/organization_subscription_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/ratecard_client.py b/src/oci/onesubscription/ratecard_client.py index 46b0fba65f..2def329a04 100644 --- a/src/oci/onesubscription/ratecard_client.py +++ b/src/oci/onesubscription/ratecard_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/ratecard_client_composite_operations.py b/src/oci/onesubscription/ratecard_client_composite_operations.py index d53b93ade3..9df0ef3a36 100644 --- a/src/oci/onesubscription/ratecard_client_composite_operations.py +++ b/src/oci/onesubscription/ratecard_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/subscribed_service_client.py b/src/oci/onesubscription/subscribed_service_client.py index 86edbcacc7..9b1543c6cc 100644 --- a/src/oci/onesubscription/subscribed_service_client.py +++ b/src/oci/onesubscription/subscribed_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/subscribed_service_client_composite_operations.py b/src/oci/onesubscription/subscribed_service_client_composite_operations.py index 84fe0358a2..efa5ef89b1 100644 --- a/src/oci/onesubscription/subscribed_service_client_composite_operations.py +++ b/src/oci/onesubscription/subscribed_service_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/subscription_client.py b/src/oci/onesubscription/subscription_client.py index 10059a9de2..c0cfbd52a2 100644 --- a/src/oci/onesubscription/subscription_client.py +++ b/src/oci/onesubscription/subscription_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/onesubscription/subscription_client_composite_operations.py b/src/oci/onesubscription/subscription_client_composite_operations.py index e05d4e1a3e..0690809fc5 100644 --- a/src/oci/onesubscription/subscription_client_composite_operations.py +++ b/src/oci/onesubscription/subscription_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/ons/__init__.py b/src/oci/ons/__init__.py index 69139895db..30f9111b5d 100644 --- a/src/oci/ons/__init__.py +++ b/src/oci/ons/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/__init__.py b/src/oci/ons/models/__init__.py index 80405c4616..fe7b9c4c07 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/backoff_retry_policy.py b/src/oci/ons/models/backoff_retry_policy.py index d0dfad8f21..c4e244fe01 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/change_compartment_details.py b/src/oci/ons/models/change_compartment_details.py index 3d51b27208..41cd09dde5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/confirmation_result.py b/src/oci/ons/models/confirmation_result.py index 2e115bab88..70da424900 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/create_subscription_details.py b/src/oci/ons/models/create_subscription_details.py index 6cb4867659..3d54dd238c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/create_topic_details.py b/src/oci/ons/models/create_topic_details.py index 71c5e69176..c85d39caf1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/delivery_policy.py b/src/oci/ons/models/delivery_policy.py index 106b9baeb4..287636f46c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/message_details.py b/src/oci/ons/models/message_details.py index bada494abf..47e4ba08eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/notification_topic.py b/src/oci/ons/models/notification_topic.py index f866f5fa92..c3b9b9f0ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/notification_topic_summary.py b/src/oci/ons/models/notification_topic_summary.py index e98c5614f0..22934573ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/publish_result.py b/src/oci/ons/models/publish_result.py index be34fa1f0c..ec6213a4f3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/subscription.py b/src/oci/ons/models/subscription.py index 71f0ce387c..f002be3291 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/subscription_summary.py b/src/oci/ons/models/subscription_summary.py index 409f8bac50..1c6025593b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/topic_attributes_details.py b/src/oci/ons/models/topic_attributes_details.py index 7b42c01517..06225e71d5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/models/update_subscription_details.py b/src/oci/ons/models/update_subscription_details.py index 285d0d4e84..b4456fa7d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/notification_control_plane_client.py b/src/oci/ons/notification_control_plane_client.py index 8dbd8b95ca..2f862712d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 74230f04df..b639dd44f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/ons/notification_data_plane_client.py b/src/oci/ons/notification_data_plane_client.py index 10ba68c122..3df6966ec8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 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 0d2a7229ec..1f78f0c41e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181201 diff --git a/src/oci/opa/__init__.py b/src/oci/opa/__init__.py index f8eddb445e..17fea8e60c 100644 --- a/src/oci/opa/__init__.py +++ b/src/oci/opa/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/__init__.py b/src/oci/opa/models/__init__.py index 4daa365bbc..73fb6bf1a9 100644 --- a/src/oci/opa/models/__init__.py +++ b/src/oci/opa/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/attachment_details.py b/src/oci/opa/models/attachment_details.py index 786d744788..dd23d933f2 100644 --- a/src/oci/opa/models/attachment_details.py +++ b/src/oci/opa/models/attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/change_opa_instance_compartment_details.py b/src/oci/opa/models/change_opa_instance_compartment_details.py index 02c720305e..471ac9de6d 100644 --- a/src/oci/opa/models/change_opa_instance_compartment_details.py +++ b/src/oci/opa/models/change_opa_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/create_opa_instance_details.py b/src/oci/opa/models/create_opa_instance_details.py index dfc891d96d..d558b75c41 100644 --- a/src/oci/opa/models/create_opa_instance_details.py +++ b/src/oci/opa/models/create_opa_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/opa_instance.py b/src/oci/opa/models/opa_instance.py index 52a62ea67f..bdbda4802b 100644 --- a/src/oci/opa/models/opa_instance.py +++ b/src/oci/opa/models/opa_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/opa_instance_collection.py b/src/oci/opa/models/opa_instance_collection.py index 8373af00f6..171a7bb04c 100644 --- a/src/oci/opa/models/opa_instance_collection.py +++ b/src/oci/opa/models/opa_instance_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/opa_instance_summary.py b/src/oci/opa/models/opa_instance_summary.py index ef6ddecbaf..6574aa71b2 100644 --- a/src/oci/opa/models/opa_instance_summary.py +++ b/src/oci/opa/models/opa_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/update_opa_instance_details.py b/src/oci/opa/models/update_opa_instance_details.py index 1dc3850759..f1063d37b9 100644 --- a/src/oci/opa/models/update_opa_instance_details.py +++ b/src/oci/opa/models/update_opa_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/work_request.py b/src/oci/opa/models/work_request.py index a548d13ac7..be25739bc6 100644 --- a/src/oci/opa/models/work_request.py +++ b/src/oci/opa/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/work_request_error.py b/src/oci/opa/models/work_request_error.py index e4c623e074..ff557b9553 100644 --- a/src/oci/opa/models/work_request_error.py +++ b/src/oci/opa/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/work_request_error_collection.py b/src/oci/opa/models/work_request_error_collection.py index e5db8b667d..85b227186f 100644 --- a/src/oci/opa/models/work_request_error_collection.py +++ b/src/oci/opa/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/work_request_log_entry.py b/src/oci/opa/models/work_request_log_entry.py index f24c69e842..8dbcf51d66 100644 --- a/src/oci/opa/models/work_request_log_entry.py +++ b/src/oci/opa/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/work_request_log_entry_collection.py b/src/oci/opa/models/work_request_log_entry_collection.py index 9e91d808dd..5d4129f212 100644 --- a/src/oci/opa/models/work_request_log_entry_collection.py +++ b/src/oci/opa/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/work_request_resource.py b/src/oci/opa/models/work_request_resource.py index bd93baf274..da878ad8e5 100644 --- a/src/oci/opa/models/work_request_resource.py +++ b/src/oci/opa/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/work_request_summary.py b/src/oci/opa/models/work_request_summary.py index ffdd088d23..ebb324a153 100644 --- a/src/oci/opa/models/work_request_summary.py +++ b/src/oci/opa/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/models/work_request_summary_collection.py b/src/oci/opa/models/work_request_summary_collection.py index 2d9f6fc841..0401d3284c 100644 --- a/src/oci/opa/models/work_request_summary_collection.py +++ b/src/oci/opa/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/opa_instance_client.py b/src/oci/opa/opa_instance_client.py index 44be9b90bd..cdc2e5aa8b 100644 --- a/src/oci/opa/opa_instance_client.py +++ b/src/oci/opa/opa_instance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opa/opa_instance_client_composite_operations.py b/src/oci/opa/opa_instance_client_composite_operations.py index ca1dd73546..f5e0dfcd0f 100644 --- a/src/oci/opa/opa_instance_client_composite_operations.py +++ b/src/oci/opa/opa_instance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210621 diff --git a/src/oci/opensearch/__init__.py b/src/oci/opensearch/__init__.py index 510fe40785..80ecf91057 100644 --- a/src/oci/opensearch/__init__.py +++ b/src/oci/opensearch/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/__init__.py b/src/oci/opensearch/models/__init__.py index ff90803923..05651dc29a 100644 --- a/src/oci/opensearch/models/__init__.py +++ b/src/oci/opensearch/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 @@ -8,28 +8,56 @@ from .backup_event_details import BackupEventDetails from .backup_opensearch_cluster_details import BackupOpensearchClusterDetails +from .backup_policy import BackupPolicy +from .benchmark_details import BenchmarkDetails from .change_opensearch_cluster_backup_compartment_details import ChangeOpensearchClusterBackupCompartmentDetails from .change_opensearch_cluster_compartment_details import ChangeOpensearchClusterCompartmentDetails +from .configure_outbound_cluster_details import ConfigureOutboundClusterDetails +from .create_maintenance_details import CreateMaintenanceDetails from .create_opensearch_cluster_details import CreateOpensearchClusterDetails +from .create_opensearch_cluster_pipeline_details import CreateOpensearchClusterPipelineDetails +from .customer_logging_details import CustomerLoggingDetails +from .delete_block_volumes_for_namespace_details import DeleteBlockVolumesForNamespaceDetails from .export_opensearch_cluster_backup_details import ExportOpensearchClusterBackupDetails +from .force_patch_cluster_details import ForcePatchClusterDetails from .get_manifest_response import GetManifestResponse +from .maintenance_details import MaintenanceDetails +from .maintenance_notification_details import MaintenanceNotificationDetails +from .maintenance_notification_failure import MaintenanceNotificationFailure +from .maintenance_notification_response import MaintenanceNotificationResponse from .opensearch_cluster import OpensearchCluster from .opensearch_cluster_backup import OpensearchClusterBackup from .opensearch_cluster_backup_collection import OpensearchClusterBackupCollection from .opensearch_cluster_backup_summary import OpensearchClusterBackupSummary from .opensearch_cluster_collection import OpensearchClusterCollection +from .opensearch_cluster_internal_details import OpensearchClusterInternalDetails +from .opensearch_cluster_pipeline import OpensearchClusterPipeline +from .opensearch_cluster_pipeline_collection import OpensearchClusterPipelineCollection +from .opensearch_cluster_pipeline_summary import OpensearchClusterPipelineSummary from .opensearch_cluster_summary import OpensearchClusterSummary +from .opensearch_pipeline_validation_response import OpensearchPipelineValidationResponse from .opensearch_versions_collection import OpensearchVersionsCollection from .opensearch_versions_summary import OpensearchVersionsSummary +from .outbound_cluster_config import OutboundClusterConfig +from .outbound_cluster_summary import OutboundClusterSummary +from .pipeline_validation_error_details import PipelineValidationErrorDetails +from .reclaim_cluster_details import ReclaimClusterDetails from .resize_opensearch_cluster_horizontal_details import ResizeOpensearchClusterHorizontalDetails from .resize_opensearch_cluster_vertical_details import ResizeOpensearchClusterVerticalDetails from .restore_opensearch_cluster_backup_details import RestoreOpensearchClusterBackupDetails from .restore_opensearch_cluster_details import RestoreOpensearchClusterDetails +from .reverse_connection_endpoint import ReverseConnectionEndpoint +from .security_saml_config import SecuritySamlConfig from .update_checkin_details import UpdateCheckinDetails from .update_cluster_hardened_image_details import UpdateClusterHardenedImageDetails +from .update_cluster_specs_details import UpdateClusterSpecsDetails from .update_cluster_status_details import UpdateClusterStatusDetails +from .update_maintenance_details import UpdateMaintenanceDetails from .update_opensearch_cluster_backup_details import UpdateOpensearchClusterBackupDetails from .update_opensearch_cluster_details import UpdateOpensearchClusterDetails +from .update_opensearch_cluster_pipeline_details import UpdateOpensearchClusterPipelineDetails +from .upgrade_open_search_cluster_details import UpgradeOpenSearchClusterDetails +from .validate_opensearch_pipeline_details import ValidateOpensearchPipelineDetails from .work_request import WorkRequest from .work_request_collection import WorkRequestCollection from .work_request_error import WorkRequestError @@ -42,28 +70,56 @@ opensearch_type_mapping = { "BackupEventDetails": BackupEventDetails, "BackupOpensearchClusterDetails": BackupOpensearchClusterDetails, + "BackupPolicy": BackupPolicy, + "BenchmarkDetails": BenchmarkDetails, "ChangeOpensearchClusterBackupCompartmentDetails": ChangeOpensearchClusterBackupCompartmentDetails, "ChangeOpensearchClusterCompartmentDetails": ChangeOpensearchClusterCompartmentDetails, + "ConfigureOutboundClusterDetails": ConfigureOutboundClusterDetails, + "CreateMaintenanceDetails": CreateMaintenanceDetails, "CreateOpensearchClusterDetails": CreateOpensearchClusterDetails, + "CreateOpensearchClusterPipelineDetails": CreateOpensearchClusterPipelineDetails, + "CustomerLoggingDetails": CustomerLoggingDetails, + "DeleteBlockVolumesForNamespaceDetails": DeleteBlockVolumesForNamespaceDetails, "ExportOpensearchClusterBackupDetails": ExportOpensearchClusterBackupDetails, + "ForcePatchClusterDetails": ForcePatchClusterDetails, "GetManifestResponse": GetManifestResponse, + "MaintenanceDetails": MaintenanceDetails, + "MaintenanceNotificationDetails": MaintenanceNotificationDetails, + "MaintenanceNotificationFailure": MaintenanceNotificationFailure, + "MaintenanceNotificationResponse": MaintenanceNotificationResponse, "OpensearchCluster": OpensearchCluster, "OpensearchClusterBackup": OpensearchClusterBackup, "OpensearchClusterBackupCollection": OpensearchClusterBackupCollection, "OpensearchClusterBackupSummary": OpensearchClusterBackupSummary, "OpensearchClusterCollection": OpensearchClusterCollection, + "OpensearchClusterInternalDetails": OpensearchClusterInternalDetails, + "OpensearchClusterPipeline": OpensearchClusterPipeline, + "OpensearchClusterPipelineCollection": OpensearchClusterPipelineCollection, + "OpensearchClusterPipelineSummary": OpensearchClusterPipelineSummary, "OpensearchClusterSummary": OpensearchClusterSummary, + "OpensearchPipelineValidationResponse": OpensearchPipelineValidationResponse, "OpensearchVersionsCollection": OpensearchVersionsCollection, "OpensearchVersionsSummary": OpensearchVersionsSummary, + "OutboundClusterConfig": OutboundClusterConfig, + "OutboundClusterSummary": OutboundClusterSummary, + "PipelineValidationErrorDetails": PipelineValidationErrorDetails, + "ReclaimClusterDetails": ReclaimClusterDetails, "ResizeOpensearchClusterHorizontalDetails": ResizeOpensearchClusterHorizontalDetails, "ResizeOpensearchClusterVerticalDetails": ResizeOpensearchClusterVerticalDetails, "RestoreOpensearchClusterBackupDetails": RestoreOpensearchClusterBackupDetails, "RestoreOpensearchClusterDetails": RestoreOpensearchClusterDetails, + "ReverseConnectionEndpoint": ReverseConnectionEndpoint, + "SecuritySamlConfig": SecuritySamlConfig, "UpdateCheckinDetails": UpdateCheckinDetails, "UpdateClusterHardenedImageDetails": UpdateClusterHardenedImageDetails, + "UpdateClusterSpecsDetails": UpdateClusterSpecsDetails, "UpdateClusterStatusDetails": UpdateClusterStatusDetails, + "UpdateMaintenanceDetails": UpdateMaintenanceDetails, "UpdateOpensearchClusterBackupDetails": UpdateOpensearchClusterBackupDetails, "UpdateOpensearchClusterDetails": UpdateOpensearchClusterDetails, + "UpdateOpensearchClusterPipelineDetails": UpdateOpensearchClusterPipelineDetails, + "UpgradeOpenSearchClusterDetails": UpgradeOpenSearchClusterDetails, + "ValidateOpensearchPipelineDetails": ValidateOpensearchPipelineDetails, "WorkRequest": WorkRequest, "WorkRequestCollection": WorkRequestCollection, "WorkRequestError": WorkRequestError, diff --git a/src/oci/opensearch/models/backup_event_details.py b/src/oci/opensearch/models/backup_event_details.py index 8b0e4cfd38..e8036a15ce 100644 --- a/src/oci/opensearch/models/backup_event_details.py +++ b/src/oci/opensearch/models/backup_event_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/backup_opensearch_cluster_details.py b/src/oci/opensearch/models/backup_opensearch_cluster_details.py index 01fbeba39e..49f718921a 100644 --- a/src/oci/opensearch/models/backup_opensearch_cluster_details.py +++ b/src/oci/opensearch/models/backup_opensearch_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/backup_policy.py b/src/oci/opensearch/models/backup_policy.py new file mode 100644 index 0000000000..3c0c9be0c4 --- /dev/null +++ b/src/oci/opensearch/models/backup_policy.py @@ -0,0 +1,134 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class BackupPolicy(object): + """ + Backup policy as optionally used for Opensearch cluster. + """ + + def __init__(self, **kwargs): + """ + Initializes a new BackupPolicy object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param is_enabled: + The value to assign to the is_enabled property of this BackupPolicy. + :type is_enabled: bool + + :param retention_in_days: + The value to assign to the retention_in_days property of this BackupPolicy. + :type retention_in_days: int + + :param frequency_in_hours: + The value to assign to the frequency_in_hours property of this BackupPolicy. + :type frequency_in_hours: int + + """ + self.swagger_types = { + 'is_enabled': 'bool', + 'retention_in_days': 'int', + 'frequency_in_hours': 'int' + } + + self.attribute_map = { + 'is_enabled': 'isEnabled', + 'retention_in_days': 'retentionInDays', + 'frequency_in_hours': 'frequencyInHours' + } + + self._is_enabled = None + self._retention_in_days = None + self._frequency_in_hours = None + + @property + def is_enabled(self): + """ + Gets the is_enabled of this BackupPolicy. + Specifies if automatic backups are enabled. + + + :return: The is_enabled of this BackupPolicy. + :rtype: bool + """ + return self._is_enabled + + @is_enabled.setter + def is_enabled(self, is_enabled): + """ + Sets the is_enabled of this BackupPolicy. + Specifies if automatic backups are enabled. + + + :param is_enabled: The is_enabled of this BackupPolicy. + :type: bool + """ + self._is_enabled = is_enabled + + @property + def retention_in_days(self): + """ + Gets the retention_in_days of this BackupPolicy. + Specifies how long backup copy should remain on Storage in days + + + :return: The retention_in_days of this BackupPolicy. + :rtype: int + """ + return self._retention_in_days + + @retention_in_days.setter + def retention_in_days(self, retention_in_days): + """ + Sets the retention_in_days of this BackupPolicy. + Specifies how long backup copy should remain on Storage in days + + + :param retention_in_days: The retention_in_days of this BackupPolicy. + :type: int + """ + self._retention_in_days = retention_in_days + + @property + def frequency_in_hours(self): + """ + Gets the frequency_in_hours of this BackupPolicy. + Specifies how often backup should be performed + + + :return: The frequency_in_hours of this BackupPolicy. + :rtype: int + """ + return self._frequency_in_hours + + @frequency_in_hours.setter + def frequency_in_hours(self, frequency_in_hours): + """ + Sets the frequency_in_hours of this BackupPolicy. + Specifies how often backup should be performed + + + :param frequency_in_hours: The frequency_in_hours of this BackupPolicy. + :type: int + """ + self._frequency_in_hours = frequency_in_hours + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/benchmark_details.py b/src/oci/opensearch/models/benchmark_details.py new file mode 100644 index 0000000000..78e8cbe644 --- /dev/null +++ b/src/oci/opensearch/models/benchmark_details.py @@ -0,0 +1,181 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class BenchmarkDetails(object): + """ + Benchmark test configuration detail. + """ + + #: A constant which can be used with the perf_test_length property of a BenchmarkDetails. + #: This constant has a value of "STANDARD" + PERF_TEST_LENGTH_STANDARD = "STANDARD" + + #: A constant which can be used with the perf_test_length property of a BenchmarkDetails. + #: This constant has a value of "LONG" + PERF_TEST_LENGTH_LONG = "LONG" + + def __init__(self, **kwargs): + """ + Initializes a new BenchmarkDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param perf_test_length: + The value to assign to the perf_test_length property of this BenchmarkDetails. + Allowed values for this property are: "STANDARD", "LONG" + :type perf_test_length: str + + :param control_cluster_id: + The value to assign to the control_cluster_id property of this BenchmarkDetails. + :type control_cluster_id: str + + :param test1_cluster_id: + The value to assign to the test1_cluster_id property of this BenchmarkDetails. + :type test1_cluster_id: str + + :param test2_cluster_id: + The value to assign to the test2_cluster_id property of this BenchmarkDetails. + :type test2_cluster_id: str + + """ + self.swagger_types = { + 'perf_test_length': 'str', + 'control_cluster_id': 'str', + 'test1_cluster_id': 'str', + 'test2_cluster_id': 'str' + } + + self.attribute_map = { + 'perf_test_length': 'perfTestLength', + 'control_cluster_id': 'controlClusterId', + 'test1_cluster_id': 'test1ClusterId', + 'test2_cluster_id': 'test2ClusterId' + } + + self._perf_test_length = None + self._control_cluster_id = None + self._test1_cluster_id = None + self._test2_cluster_id = None + + @property + def perf_test_length(self): + """ + **[Required]** Gets the perf_test_length of this BenchmarkDetails. + Execution Length of Perf Test (default set to STANDARD) + + Allowed values for this property are: "STANDARD", "LONG" + + + :return: The perf_test_length of this BenchmarkDetails. + :rtype: str + """ + return self._perf_test_length + + @perf_test_length.setter + def perf_test_length(self, perf_test_length): + """ + Sets the perf_test_length of this BenchmarkDetails. + Execution Length of Perf Test (default set to STANDARD) + + + :param perf_test_length: The perf_test_length of this BenchmarkDetails. + :type: str + """ + allowed_values = ["STANDARD", "LONG"] + if not value_allowed_none_or_none_sentinel(perf_test_length, allowed_values): + raise ValueError( + f"Invalid value for `perf_test_length`, must be None or one of {allowed_values}" + ) + self._perf_test_length = perf_test_length + + @property + def control_cluster_id(self): + """ + **[Required]** Gets the control_cluster_id of this BenchmarkDetails. + Control Cluster Id Information + + + :return: The control_cluster_id of this BenchmarkDetails. + :rtype: str + """ + return self._control_cluster_id + + @control_cluster_id.setter + def control_cluster_id(self, control_cluster_id): + """ + Sets the control_cluster_id of this BenchmarkDetails. + Control Cluster Id Information + + + :param control_cluster_id: The control_cluster_id of this BenchmarkDetails. + :type: str + """ + self._control_cluster_id = control_cluster_id + + @property + def test1_cluster_id(self): + """ + Gets the test1_cluster_id of this BenchmarkDetails. + Required Test Cluster Id needed to run perf test + + + :return: The test1_cluster_id of this BenchmarkDetails. + :rtype: str + """ + return self._test1_cluster_id + + @test1_cluster_id.setter + def test1_cluster_id(self, test1_cluster_id): + """ + Sets the test1_cluster_id of this BenchmarkDetails. + Required Test Cluster Id needed to run perf test + + + :param test1_cluster_id: The test1_cluster_id of this BenchmarkDetails. + :type: str + """ + self._test1_cluster_id = test1_cluster_id + + @property + def test2_cluster_id(self): + """ + Gets the test2_cluster_id of this BenchmarkDetails. + Optional Test Cluster Id needed to run perf test + + + :return: The test2_cluster_id of this BenchmarkDetails. + :rtype: str + """ + return self._test2_cluster_id + + @test2_cluster_id.setter + def test2_cluster_id(self, test2_cluster_id): + """ + Sets the test2_cluster_id of this BenchmarkDetails. + Optional Test Cluster Id needed to run perf test + + + :param test2_cluster_id: The test2_cluster_id of this BenchmarkDetails. + :type: str + """ + self._test2_cluster_id = test2_cluster_id + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/change_opensearch_cluster_backup_compartment_details.py b/src/oci/opensearch/models/change_opensearch_cluster_backup_compartment_details.py index 68fc08cd83..03ca6d870f 100644 --- a/src/oci/opensearch/models/change_opensearch_cluster_backup_compartment_details.py +++ b/src/oci/opensearch/models/change_opensearch_cluster_backup_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/change_opensearch_cluster_compartment_details.py b/src/oci/opensearch/models/change_opensearch_cluster_compartment_details.py index eed75b3bbd..277fefcf6e 100644 --- a/src/oci/opensearch/models/change_opensearch_cluster_compartment_details.py +++ b/src/oci/opensearch/models/change_opensearch_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/configure_outbound_cluster_details.py b/src/oci/opensearch/models/configure_outbound_cluster_details.py new file mode 100644 index 0000000000..4dfca11d21 --- /dev/null +++ b/src/oci/opensearch/models/configure_outbound_cluster_details.py @@ -0,0 +1,72 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class ConfigureOutboundClusterDetails(object): + """ + Details for configuring the cluster to work as an Outbound cluster + """ + + def __init__(self, **kwargs): + """ + Initializes a new ConfigureOutboundClusterDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param inbound_cluster_ids: + The value to assign to the inbound_cluster_ids property of this ConfigureOutboundClusterDetails. + :type inbound_cluster_ids: list[str] + + """ + self.swagger_types = { + 'inbound_cluster_ids': 'list[str]' + } + + self.attribute_map = { + 'inbound_cluster_ids': 'inboundClusterIds' + } + + self._inbound_cluster_ids = None + + @property + def inbound_cluster_ids(self): + """ + **[Required]** Gets the inbound_cluster_ids of this ConfigureOutboundClusterDetails. + List of inbound clusters that will be queried using cross cluster search + + + :return: The inbound_cluster_ids of this ConfigureOutboundClusterDetails. + :rtype: list[str] + """ + return self._inbound_cluster_ids + + @inbound_cluster_ids.setter + def inbound_cluster_ids(self, inbound_cluster_ids): + """ + Sets the inbound_cluster_ids of this ConfigureOutboundClusterDetails. + List of inbound clusters that will be queried using cross cluster search + + + :param inbound_cluster_ids: The inbound_cluster_ids of this ConfigureOutboundClusterDetails. + :type: list[str] + """ + self._inbound_cluster_ids = inbound_cluster_ids + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/create_maintenance_details.py b/src/oci/opensearch/models/create_maintenance_details.py new file mode 100644 index 0000000000..7501b8440e --- /dev/null +++ b/src/oci/opensearch/models/create_maintenance_details.py @@ -0,0 +1,72 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class CreateMaintenanceDetails(object): + """ + Details for creation of maintenance details + """ + + def __init__(self, **kwargs): + """ + Initializes a new CreateMaintenanceDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param notification_email_ids: + The value to assign to the notification_email_ids property of this CreateMaintenanceDetails. + :type notification_email_ids: list[str] + + """ + self.swagger_types = { + 'notification_email_ids': 'list[str]' + } + + self.attribute_map = { + 'notification_email_ids': 'notificationEmailIds' + } + + self._notification_email_ids = None + + @property + def notification_email_ids(self): + """ + Gets the notification_email_ids of this CreateMaintenanceDetails. + The Email IDs given by the customer to get notified about maintenance activities + + + :return: The notification_email_ids of this CreateMaintenanceDetails. + :rtype: list[str] + """ + return self._notification_email_ids + + @notification_email_ids.setter + def notification_email_ids(self, notification_email_ids): + """ + Sets the notification_email_ids of this CreateMaintenanceDetails. + The Email IDs given by the customer to get notified about maintenance activities + + + :param notification_email_ids: The notification_email_ids of this CreateMaintenanceDetails. + :type: list[str] + """ + self._notification_email_ids = notification_email_ids + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/create_opensearch_cluster_details.py b/src/oci/opensearch/models/create_opensearch_cluster_details.py index 2403cfde8f..27addc40d8 100644 --- a/src/oci/opensearch/models/create_opensearch_cluster_details.py +++ b/src/oci/opensearch/models/create_opensearch_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 @@ -147,6 +147,30 @@ def __init__(self, **kwargs): The value to assign to the security_master_user_password_hash property of this CreateOpensearchClusterDetails. :type security_master_user_password_hash: str + :param security_saml_config: + The value to assign to the security_saml_config property of this CreateOpensearchClusterDetails. + :type security_saml_config: oci.opensearch.models.SecuritySamlConfig + + :param backup_policy: + The value to assign to the backup_policy property of this CreateOpensearchClusterDetails. + :type backup_policy: oci.opensearch.models.BackupPolicy + + :param reverse_connection_endpoint_customer_ips: + The value to assign to the reverse_connection_endpoint_customer_ips property of this CreateOpensearchClusterDetails. + :type reverse_connection_endpoint_customer_ips: list[str] + + :param inbound_cluster_ids: + The value to assign to the inbound_cluster_ids property of this CreateOpensearchClusterDetails. + :type inbound_cluster_ids: list[str] + + :param outbound_cluster_config: + The value to assign to the outbound_cluster_config property of this CreateOpensearchClusterDetails. + :type outbound_cluster_config: oci.opensearch.models.OutboundClusterConfig + + :param maintenance_details: + The value to assign to the maintenance_details property of this CreateOpensearchClusterDetails. + :type maintenance_details: oci.opensearch.models.CreateMaintenanceDetails + :param freeform_tags: The value to assign to the freeform_tags property of this CreateOpensearchClusterDetails. :type freeform_tags: dict(str, str) @@ -185,6 +209,12 @@ def __init__(self, **kwargs): 'security_mode': 'str', 'security_master_user_name': 'str', 'security_master_user_password_hash': 'str', + 'security_saml_config': 'SecuritySamlConfig', + 'backup_policy': 'BackupPolicy', + 'reverse_connection_endpoint_customer_ips': 'list[str]', + 'inbound_cluster_ids': 'list[str]', + 'outbound_cluster_config': 'OutboundClusterConfig', + 'maintenance_details': 'CreateMaintenanceDetails', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))', 'system_tags': 'dict(str, dict(str, object))' @@ -215,6 +245,12 @@ def __init__(self, **kwargs): 'security_mode': 'securityMode', 'security_master_user_name': 'securityMasterUserName', 'security_master_user_password_hash': 'securityMasterUserPasswordHash', + 'security_saml_config': 'securitySamlConfig', + 'backup_policy': 'backupPolicy', + 'reverse_connection_endpoint_customer_ips': 'reverseConnectionEndpointCustomerIps', + 'inbound_cluster_ids': 'inboundClusterIds', + 'outbound_cluster_config': 'outboundClusterConfig', + 'maintenance_details': 'maintenanceDetails', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags', 'system_tags': 'systemTags' @@ -244,6 +280,12 @@ def __init__(self, **kwargs): self._security_mode = None self._security_master_user_name = None self._security_master_user_password_hash = None + self._security_saml_config = None + self._backup_policy = None + self._reverse_connection_endpoint_customer_ips = None + self._inbound_cluster_ids = None + self._outbound_cluster_config = None + self._maintenance_details = None self._freeform_tags = None self._defined_tags = None self._system_tags = None @@ -845,6 +887,134 @@ def security_master_user_password_hash(self, security_master_user_password_hash) """ self._security_master_user_password_hash = security_master_user_password_hash + @property + def security_saml_config(self): + """ + Gets the security_saml_config of this CreateOpensearchClusterDetails. + + :return: The security_saml_config of this CreateOpensearchClusterDetails. + :rtype: oci.opensearch.models.SecuritySamlConfig + """ + return self._security_saml_config + + @security_saml_config.setter + def security_saml_config(self, security_saml_config): + """ + Sets the security_saml_config of this CreateOpensearchClusterDetails. + + :param security_saml_config: The security_saml_config of this CreateOpensearchClusterDetails. + :type: oci.opensearch.models.SecuritySamlConfig + """ + self._security_saml_config = security_saml_config + + @property + def backup_policy(self): + """ + Gets the backup_policy of this CreateOpensearchClusterDetails. + + :return: The backup_policy of this CreateOpensearchClusterDetails. + :rtype: oci.opensearch.models.BackupPolicy + """ + return self._backup_policy + + @backup_policy.setter + def backup_policy(self, backup_policy): + """ + Sets the backup_policy of this CreateOpensearchClusterDetails. + + :param backup_policy: The backup_policy of this CreateOpensearchClusterDetails. + :type: oci.opensearch.models.BackupPolicy + """ + self._backup_policy = backup_policy + + @property + def reverse_connection_endpoint_customer_ips(self): + """ + Gets the reverse_connection_endpoint_customer_ips of this CreateOpensearchClusterDetails. + The customer IP addresses of the endpoint in customer VCN + + + :return: The reverse_connection_endpoint_customer_ips of this CreateOpensearchClusterDetails. + :rtype: list[str] + """ + return self._reverse_connection_endpoint_customer_ips + + @reverse_connection_endpoint_customer_ips.setter + def reverse_connection_endpoint_customer_ips(self, reverse_connection_endpoint_customer_ips): + """ + Sets the reverse_connection_endpoint_customer_ips of this CreateOpensearchClusterDetails. + The customer IP addresses of the endpoint in customer VCN + + + :param reverse_connection_endpoint_customer_ips: The reverse_connection_endpoint_customer_ips of this CreateOpensearchClusterDetails. + :type: list[str] + """ + self._reverse_connection_endpoint_customer_ips = reverse_connection_endpoint_customer_ips + + @property + def inbound_cluster_ids(self): + """ + Gets the inbound_cluster_ids of this CreateOpensearchClusterDetails. + List of inbound clusters that will be queried using cross cluster search + + + :return: The inbound_cluster_ids of this CreateOpensearchClusterDetails. + :rtype: list[str] + """ + return self._inbound_cluster_ids + + @inbound_cluster_ids.setter + def inbound_cluster_ids(self, inbound_cluster_ids): + """ + Sets the inbound_cluster_ids of this CreateOpensearchClusterDetails. + List of inbound clusters that will be queried using cross cluster search + + + :param inbound_cluster_ids: The inbound_cluster_ids of this CreateOpensearchClusterDetails. + :type: list[str] + """ + self._inbound_cluster_ids = inbound_cluster_ids + + @property + def outbound_cluster_config(self): + """ + Gets the outbound_cluster_config of this CreateOpensearchClusterDetails. + + :return: The outbound_cluster_config of this CreateOpensearchClusterDetails. + :rtype: oci.opensearch.models.OutboundClusterConfig + """ + return self._outbound_cluster_config + + @outbound_cluster_config.setter + def outbound_cluster_config(self, outbound_cluster_config): + """ + Sets the outbound_cluster_config of this CreateOpensearchClusterDetails. + + :param outbound_cluster_config: The outbound_cluster_config of this CreateOpensearchClusterDetails. + :type: oci.opensearch.models.OutboundClusterConfig + """ + self._outbound_cluster_config = outbound_cluster_config + + @property + def maintenance_details(self): + """ + Gets the maintenance_details of this CreateOpensearchClusterDetails. + + :return: The maintenance_details of this CreateOpensearchClusterDetails. + :rtype: oci.opensearch.models.CreateMaintenanceDetails + """ + return self._maintenance_details + + @maintenance_details.setter + def maintenance_details(self, maintenance_details): + """ + Sets the maintenance_details of this CreateOpensearchClusterDetails. + + :param maintenance_details: The maintenance_details of this CreateOpensearchClusterDetails. + :type: oci.opensearch.models.CreateMaintenanceDetails + """ + self._maintenance_details = maintenance_details + @property def freeform_tags(self): """ diff --git a/src/oci/opensearch/models/create_opensearch_cluster_pipeline_details.py b/src/oci/opensearch/models/create_opensearch_cluster_pipeline_details.py new file mode 100644 index 0000000000..f2d4887643 --- /dev/null +++ b/src/oci/opensearch/models/create_opensearch_cluster_pipeline_details.py @@ -0,0 +1,481 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class CreateOpensearchClusterPipelineDetails(object): + """ + The configuration details for a new OpenSearch cluster pipeline. + """ + + def __init__(self, **kwargs): + """ + Initializes a new CreateOpensearchClusterPipelineDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param display_name: + The value to assign to the display_name property of this CreateOpensearchClusterPipelineDetails. + :type display_name: str + + :param max_ocpu_count: + The value to assign to the max_ocpu_count property of this CreateOpensearchClusterPipelineDetails. + :type max_ocpu_count: int + + :param min_ocpu_count: + The value to assign to the min_ocpu_count property of this CreateOpensearchClusterPipelineDetails. + :type min_ocpu_count: int + + :param max_memory_gb: + The value to assign to the max_memory_gb property of this CreateOpensearchClusterPipelineDetails. + :type max_memory_gb: int + + :param min_memory_gb: + The value to assign to the min_memory_gb property of this CreateOpensearchClusterPipelineDetails. + :type min_memory_gb: int + + :param pipeline_configuration_body: + The value to assign to the pipeline_configuration_body property of this CreateOpensearchClusterPipelineDetails. + :type pipeline_configuration_body: str + + :param compartment_id: + The value to assign to the compartment_id property of this CreateOpensearchClusterPipelineDetails. + :type compartment_id: str + + :param vcn_id: + The value to assign to the vcn_id property of this CreateOpensearchClusterPipelineDetails. + :type vcn_id: str + + :param subnet_id: + The value to assign to the subnet_id property of this CreateOpensearchClusterPipelineDetails. + :type subnet_id: str + + :param vcn_compartment_id: + The value to assign to the vcn_compartment_id property of this CreateOpensearchClusterPipelineDetails. + :type vcn_compartment_id: str + + :param subnet_compartment_id: + The value to assign to the subnet_compartment_id property of this CreateOpensearchClusterPipelineDetails. + :type subnet_compartment_id: str + + :param freeform_tags: + The value to assign to the freeform_tags property of this CreateOpensearchClusterPipelineDetails. + :type freeform_tags: dict(str, str) + + :param defined_tags: + The value to assign to the defined_tags property of this CreateOpensearchClusterPipelineDetails. + :type defined_tags: dict(str, dict(str, object)) + + :param system_tags: + The value to assign to the system_tags property of this CreateOpensearchClusterPipelineDetails. + :type system_tags: dict(str, dict(str, object)) + + """ + self.swagger_types = { + 'display_name': 'str', + 'max_ocpu_count': 'int', + 'min_ocpu_count': 'int', + 'max_memory_gb': 'int', + 'min_memory_gb': 'int', + 'pipeline_configuration_body': 'str', + 'compartment_id': 'str', + 'vcn_id': 'str', + 'subnet_id': 'str', + 'vcn_compartment_id': 'str', + 'subnet_compartment_id': 'str', + 'freeform_tags': 'dict(str, str)', + 'defined_tags': 'dict(str, dict(str, object))', + 'system_tags': 'dict(str, dict(str, object))' + } + + self.attribute_map = { + 'display_name': 'displayName', + 'max_ocpu_count': 'maxOcpuCount', + 'min_ocpu_count': 'minOcpuCount', + 'max_memory_gb': 'maxMemoryGB', + 'min_memory_gb': 'minMemoryGB', + 'pipeline_configuration_body': 'pipelineConfigurationBody', + 'compartment_id': 'compartmentId', + 'vcn_id': 'vcnId', + 'subnet_id': 'subnetId', + 'vcn_compartment_id': 'vcnCompartmentId', + 'subnet_compartment_id': 'subnetCompartmentId', + 'freeform_tags': 'freeformTags', + 'defined_tags': 'definedTags', + 'system_tags': 'systemTags' + } + + self._display_name = None + self._max_ocpu_count = None + self._min_ocpu_count = None + self._max_memory_gb = None + self._min_memory_gb = None + self._pipeline_configuration_body = None + self._compartment_id = None + self._vcn_id = None + self._subnet_id = None + self._vcn_compartment_id = None + self._subnet_compartment_id = None + self._freeform_tags = None + self._defined_tags = None + self._system_tags = None + + @property + def display_name(self): + """ + **[Required]** Gets the display_name of this CreateOpensearchClusterPipelineDetails. + The name of the cluster pipeline. Avoid entering confidential information. + + + :return: The display_name of this CreateOpensearchClusterPipelineDetails. + :rtype: str + """ + return self._display_name + + @display_name.setter + def display_name(self, display_name): + """ + Sets the display_name of this CreateOpensearchClusterPipelineDetails. + The name of the cluster pipeline. Avoid entering confidential information. + + + :param display_name: The display_name of this CreateOpensearchClusterPipelineDetails. + :type: str + """ + self._display_name = display_name + + @property + def max_ocpu_count(self): + """ + **[Required]** Gets the max_ocpu_count of this CreateOpensearchClusterPipelineDetails. + The maximum pipeline capacity, in OCPUs. + + + :return: The max_ocpu_count of this CreateOpensearchClusterPipelineDetails. + :rtype: int + """ + return self._max_ocpu_count + + @max_ocpu_count.setter + def max_ocpu_count(self, max_ocpu_count): + """ + Sets the max_ocpu_count of this CreateOpensearchClusterPipelineDetails. + The maximum pipeline capacity, in OCPUs. + + + :param max_ocpu_count: The max_ocpu_count of this CreateOpensearchClusterPipelineDetails. + :type: int + """ + self._max_ocpu_count = max_ocpu_count + + @property + def min_ocpu_count(self): + """ + **[Required]** Gets the min_ocpu_count of this CreateOpensearchClusterPipelineDetails. + The minimum pipeline capacity, in OCPUs. + + + :return: The min_ocpu_count of this CreateOpensearchClusterPipelineDetails. + :rtype: int + """ + return self._min_ocpu_count + + @min_ocpu_count.setter + def min_ocpu_count(self, min_ocpu_count): + """ + Sets the min_ocpu_count of this CreateOpensearchClusterPipelineDetails. + The minimum pipeline capacity, in OCPUs. + + + :param min_ocpu_count: The min_ocpu_count of this CreateOpensearchClusterPipelineDetails. + :type: int + """ + self._min_ocpu_count = min_ocpu_count + + @property + def max_memory_gb(self): + """ + **[Required]** Gets the max_memory_gb of this CreateOpensearchClusterPipelineDetails. + The maximum amount of memory in GB, for the pipeline. + + + :return: The max_memory_gb of this CreateOpensearchClusterPipelineDetails. + :rtype: int + """ + return self._max_memory_gb + + @max_memory_gb.setter + def max_memory_gb(self, max_memory_gb): + """ + Sets the max_memory_gb of this CreateOpensearchClusterPipelineDetails. + The maximum amount of memory in GB, for the pipeline. + + + :param max_memory_gb: The max_memory_gb of this CreateOpensearchClusterPipelineDetails. + :type: int + """ + self._max_memory_gb = max_memory_gb + + @property + def min_memory_gb(self): + """ + **[Required]** Gets the min_memory_gb of this CreateOpensearchClusterPipelineDetails. + The minimum amount of memory in GB, for the pipeline. + + + :return: The min_memory_gb of this CreateOpensearchClusterPipelineDetails. + :rtype: int + """ + return self._min_memory_gb + + @min_memory_gb.setter + def min_memory_gb(self, min_memory_gb): + """ + Sets the min_memory_gb of this CreateOpensearchClusterPipelineDetails. + The minimum amount of memory in GB, for the pipeline. + + + :param min_memory_gb: The min_memory_gb of this CreateOpensearchClusterPipelineDetails. + :type: int + """ + self._min_memory_gb = min_memory_gb + + @property + def pipeline_configuration_body(self): + """ + **[Required]** Gets the pipeline_configuration_body of this CreateOpensearchClusterPipelineDetails. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :return: The pipeline_configuration_body of this CreateOpensearchClusterPipelineDetails. + :rtype: str + """ + return self._pipeline_configuration_body + + @pipeline_configuration_body.setter + def pipeline_configuration_body(self, pipeline_configuration_body): + """ + Sets the pipeline_configuration_body of this CreateOpensearchClusterPipelineDetails. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :param pipeline_configuration_body: The pipeline_configuration_body of this CreateOpensearchClusterPipelineDetails. + :type: str + """ + self._pipeline_configuration_body = pipeline_configuration_body + + @property + def compartment_id(self): + """ + **[Required]** Gets the compartment_id of this CreateOpensearchClusterPipelineDetails. + The OCID of the compartment to create the pipeline in. + + + :return: The compartment_id of this CreateOpensearchClusterPipelineDetails. + :rtype: str + """ + return self._compartment_id + + @compartment_id.setter + def compartment_id(self, compartment_id): + """ + Sets the compartment_id of this CreateOpensearchClusterPipelineDetails. + The OCID of the compartment to create the pipeline in. + + + :param compartment_id: The compartment_id of this CreateOpensearchClusterPipelineDetails. + :type: str + """ + self._compartment_id = compartment_id + + @property + def vcn_id(self): + """ + **[Required]** Gets the vcn_id of this CreateOpensearchClusterPipelineDetails. + The OCID of the pipeline's VCN. + + + :return: The vcn_id of this CreateOpensearchClusterPipelineDetails. + :rtype: str + """ + return self._vcn_id + + @vcn_id.setter + def vcn_id(self, vcn_id): + """ + Sets the vcn_id of this CreateOpensearchClusterPipelineDetails. + The OCID of the pipeline's VCN. + + + :param vcn_id: The vcn_id of this CreateOpensearchClusterPipelineDetails. + :type: str + """ + self._vcn_id = vcn_id + + @property + def subnet_id(self): + """ + **[Required]** Gets the subnet_id of this CreateOpensearchClusterPipelineDetails. + The OCID of the pipeline's subnet. + + + :return: The subnet_id of this CreateOpensearchClusterPipelineDetails. + :rtype: str + """ + return self._subnet_id + + @subnet_id.setter + def subnet_id(self, subnet_id): + """ + Sets the subnet_id of this CreateOpensearchClusterPipelineDetails. + The OCID of the pipeline's subnet. + + + :param subnet_id: The subnet_id of this CreateOpensearchClusterPipelineDetails. + :type: str + """ + self._subnet_id = subnet_id + + @property + def vcn_compartment_id(self): + """ + **[Required]** Gets the vcn_compartment_id of this CreateOpensearchClusterPipelineDetails. + The OCID for the compartment where the pipeline's VCN is located. + + + :return: The vcn_compartment_id of this CreateOpensearchClusterPipelineDetails. + :rtype: str + """ + return self._vcn_compartment_id + + @vcn_compartment_id.setter + def vcn_compartment_id(self, vcn_compartment_id): + """ + Sets the vcn_compartment_id of this CreateOpensearchClusterPipelineDetails. + The OCID for the compartment where the pipeline's VCN is located. + + + :param vcn_compartment_id: The vcn_compartment_id of this CreateOpensearchClusterPipelineDetails. + :type: str + """ + self._vcn_compartment_id = vcn_compartment_id + + @property + def subnet_compartment_id(self): + """ + **[Required]** Gets the subnet_compartment_id of this CreateOpensearchClusterPipelineDetails. + The OCID for the compartment where the pipwline's subnet is located. + + + :return: The subnet_compartment_id of this CreateOpensearchClusterPipelineDetails. + :rtype: str + """ + return self._subnet_compartment_id + + @subnet_compartment_id.setter + def subnet_compartment_id(self, subnet_compartment_id): + """ + Sets the subnet_compartment_id of this CreateOpensearchClusterPipelineDetails. + The OCID for the compartment where the pipwline's subnet is located. + + + :param subnet_compartment_id: The subnet_compartment_id of this CreateOpensearchClusterPipelineDetails. + :type: str + """ + self._subnet_compartment_id = subnet_compartment_id + + @property + def freeform_tags(self): + """ + Gets the freeform_tags of this CreateOpensearchClusterPipelineDetails. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :return: The freeform_tags of this CreateOpensearchClusterPipelineDetails. + :rtype: dict(str, str) + """ + return self._freeform_tags + + @freeform_tags.setter + def freeform_tags(self, freeform_tags): + """ + Sets the freeform_tags of this CreateOpensearchClusterPipelineDetails. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :param freeform_tags: The freeform_tags of this CreateOpensearchClusterPipelineDetails. + :type: dict(str, str) + """ + self._freeform_tags = freeform_tags + + @property + def defined_tags(self): + """ + Gets the defined_tags of this CreateOpensearchClusterPipelineDetails. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :return: The defined_tags of this CreateOpensearchClusterPipelineDetails. + :rtype: dict(str, dict(str, object)) + """ + return self._defined_tags + + @defined_tags.setter + def defined_tags(self, defined_tags): + """ + Sets the defined_tags of this CreateOpensearchClusterPipelineDetails. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :param defined_tags: The defined_tags of this CreateOpensearchClusterPipelineDetails. + :type: dict(str, dict(str, object)) + """ + self._defined_tags = defined_tags + + @property + def system_tags(self): + """ + Gets the system_tags of this CreateOpensearchClusterPipelineDetails. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :return: The system_tags of this CreateOpensearchClusterPipelineDetails. + :rtype: dict(str, dict(str, object)) + """ + return self._system_tags + + @system_tags.setter + def system_tags(self, system_tags): + """ + Sets the system_tags of this CreateOpensearchClusterPipelineDetails. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :param system_tags: The system_tags of this CreateOpensearchClusterPipelineDetails. + :type: dict(str, dict(str, object)) + """ + self._system_tags = system_tags + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/customer_logging_details.py b/src/oci/opensearch/models/customer_logging_details.py new file mode 100644 index 0000000000..23b1f0e129 --- /dev/null +++ b/src/oci/opensearch/models/customer_logging_details.py @@ -0,0 +1,72 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class CustomerLoggingDetails(object): + """ + Customer logging configuration + """ + + def __init__(self, **kwargs): + """ + Initializes a new CustomerLoggingDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param log_retention_days: + The value to assign to the log_retention_days property of this CustomerLoggingDetails. + :type log_retention_days: int + + """ + self.swagger_types = { + 'log_retention_days': 'int' + } + + self.attribute_map = { + 'log_retention_days': 'logRetentionDays' + } + + self._log_retention_days = None + + @property + def log_retention_days(self): + """ + **[Required]** Gets the log_retention_days of this CustomerLoggingDetails. + the age of an index after which the index will get deleted by ISM policy + + + :return: The log_retention_days of this CustomerLoggingDetails. + :rtype: int + """ + return self._log_retention_days + + @log_retention_days.setter + def log_retention_days(self, log_retention_days): + """ + Sets the log_retention_days of this CustomerLoggingDetails. + the age of an index after which the index will get deleted by ISM policy + + + :param log_retention_days: The log_retention_days of this CustomerLoggingDetails. + :type: int + """ + self._log_retention_days = log_retention_days + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/delete_block_volumes_for_namespace_details.py b/src/oci/opensearch/models/delete_block_volumes_for_namespace_details.py new file mode 100644 index 0000000000..4125dc1057 --- /dev/null +++ b/src/oci/opensearch/models/delete_block_volumes_for_namespace_details.py @@ -0,0 +1,103 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class DeleteBlockVolumesForNamespaceDetails(object): + """ + delete block volumes for namespace + """ + + def __init__(self, **kwargs): + """ + Initializes a new DeleteBlockVolumesForNamespaceDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param cluster_id: + The value to assign to the cluster_id property of this DeleteBlockVolumesForNamespaceDetails. + :type cluster_id: str + + :param namespace: + The value to assign to the namespace property of this DeleteBlockVolumesForNamespaceDetails. + :type namespace: str + + """ + self.swagger_types = { + 'cluster_id': 'str', + 'namespace': 'str' + } + + self.attribute_map = { + 'cluster_id': 'clusterId', + 'namespace': 'namespace' + } + + self._cluster_id = None + self._namespace = None + + @property + def cluster_id(self): + """ + **[Required]** Gets the cluster_id of this DeleteBlockVolumesForNamespaceDetails. + OCID of the Opensearch Cluster. + + + :return: The cluster_id of this DeleteBlockVolumesForNamespaceDetails. + :rtype: str + """ + return self._cluster_id + + @cluster_id.setter + def cluster_id(self, cluster_id): + """ + Sets the cluster_id of this DeleteBlockVolumesForNamespaceDetails. + OCID of the Opensearch Cluster. + + + :param cluster_id: The cluster_id of this DeleteBlockVolumesForNamespaceDetails. + :type: str + """ + self._cluster_id = cluster_id + + @property + def namespace(self): + """ + **[Required]** Gets the namespace of this DeleteBlockVolumesForNamespaceDetails. + Namespace of the Opensearch Cluster. + + + :return: The namespace of this DeleteBlockVolumesForNamespaceDetails. + :rtype: str + """ + return self._namespace + + @namespace.setter + def namespace(self, namespace): + """ + Sets the namespace of this DeleteBlockVolumesForNamespaceDetails. + Namespace of the Opensearch Cluster. + + + :param namespace: The namespace of this DeleteBlockVolumesForNamespaceDetails. + :type: str + """ + self._namespace = namespace + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/export_opensearch_cluster_backup_details.py b/src/oci/opensearch/models/export_opensearch_cluster_backup_details.py index ee15be52a3..08623b94d0 100644 --- a/src/oci/opensearch/models/export_opensearch_cluster_backup_details.py +++ b/src/oci/opensearch/models/export_opensearch_cluster_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/force_patch_cluster_details.py b/src/oci/opensearch/models/force_patch_cluster_details.py new file mode 100644 index 0000000000..d4b8f6e3ce --- /dev/null +++ b/src/oci/opensearch/models/force_patch_cluster_details.py @@ -0,0 +1,103 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class ForcePatchClusterDetails(object): + """ + force patching a cluster. + """ + + def __init__(self, **kwargs): + """ + Initializes a new ForcePatchClusterDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param cluster_id: + The value to assign to the cluster_id property of this ForcePatchClusterDetails. + :type cluster_id: str + + :param flex_shape: + The value to assign to the flex_shape property of this ForcePatchClusterDetails. + :type flex_shape: str + + """ + self.swagger_types = { + 'cluster_id': 'str', + 'flex_shape': 'str' + } + + self.attribute_map = { + 'cluster_id': 'clusterId', + 'flex_shape': 'flexShape' + } + + self._cluster_id = None + self._flex_shape = None + + @property + def cluster_id(self): + """ + **[Required]** Gets the cluster_id of this ForcePatchClusterDetails. + OCID of the Opensearch Cluster. + + + :return: The cluster_id of this ForcePatchClusterDetails. + :rtype: str + """ + return self._cluster_id + + @cluster_id.setter + def cluster_id(self, cluster_id): + """ + Sets the cluster_id of this ForcePatchClusterDetails. + OCID of the Opensearch Cluster. + + + :param cluster_id: The cluster_id of this ForcePatchClusterDetails. + :type: str + """ + self._cluster_id = cluster_id + + @property + def flex_shape(self): + """ + Gets the flex_shape of this ForcePatchClusterDetails. + flex shape name for the instances in the cluster + + + :return: The flex_shape of this ForcePatchClusterDetails. + :rtype: str + """ + return self._flex_shape + + @flex_shape.setter + def flex_shape(self, flex_shape): + """ + Sets the flex_shape of this ForcePatchClusterDetails. + flex shape name for the instances in the cluster + + + :param flex_shape: The flex_shape of this ForcePatchClusterDetails. + :type: str + """ + self._flex_shape = flex_shape + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/get_manifest_response.py b/src/oci/opensearch/models/get_manifest_response.py index f8433295f3..5b6dd6fee2 100644 --- a/src/oci/opensearch/models/get_manifest_response.py +++ b/src/oci/opensearch/models/get_manifest_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/maintenance_details.py b/src/oci/opensearch/models/maintenance_details.py new file mode 100644 index 0000000000..7ab7f241bc --- /dev/null +++ b/src/oci/opensearch/models/maintenance_details.py @@ -0,0 +1,185 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class MaintenanceDetails(object): + """ + Details for the maintenance activity. + """ + + #: A constant which can be used with the state property of a MaintenanceDetails. + #: This constant has a value of "SCHEDULED" + STATE_SCHEDULED = "SCHEDULED" + + #: A constant which can be used with the state property of a MaintenanceDetails. + #: This constant has a value of "RESCHEDULED" + STATE_RESCHEDULED = "RESCHEDULED" + + #: A constant which can be used with the state property of a MaintenanceDetails. + #: This constant has a value of "TO_BE_SCHEDULED" + STATE_TO_BE_SCHEDULED = "TO_BE_SCHEDULED" + + def __init__(self, **kwargs): + """ + Initializes a new MaintenanceDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param state: + The value to assign to the state property of this MaintenanceDetails. + Allowed values for this property are: "SCHEDULED", "RESCHEDULED", "TO_BE_SCHEDULED", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + :type state: str + + :param start_time: + The value to assign to the start_time property of this MaintenanceDetails. + :type start_time: datetime + + :param end_time: + The value to assign to the end_time property of this MaintenanceDetails. + :type end_time: datetime + + :param notification_email_ids: + The value to assign to the notification_email_ids property of this MaintenanceDetails. + :type notification_email_ids: list[str] + + """ + self.swagger_types = { + 'state': 'str', + 'start_time': 'datetime', + 'end_time': 'datetime', + 'notification_email_ids': 'list[str]' + } + + self.attribute_map = { + 'state': 'state', + 'start_time': 'startTime', + 'end_time': 'endTime', + 'notification_email_ids': 'notificationEmailIds' + } + + self._state = None + self._start_time = None + self._end_time = None + self._notification_email_ids = None + + @property + def state(self): + """ + **[Required]** Gets the state of this MaintenanceDetails. + State of the maintenance activity + + Allowed values for this property are: "SCHEDULED", "RESCHEDULED", "TO_BE_SCHEDULED", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + + + :return: The state of this MaintenanceDetails. + :rtype: str + """ + return self._state + + @state.setter + def state(self, state): + """ + Sets the state of this MaintenanceDetails. + State of the maintenance activity + + + :param state: The state of this MaintenanceDetails. + :type: str + """ + allowed_values = ["SCHEDULED", "RESCHEDULED", "TO_BE_SCHEDULED"] + if not value_allowed_none_or_none_sentinel(state, allowed_values): + state = 'UNKNOWN_ENUM_VALUE' + self._state = state + + @property + def start_time(self): + """ + Gets the start_time of this MaintenanceDetails. + Start time of the maintenance activity + + + :return: The start_time of this MaintenanceDetails. + :rtype: datetime + """ + return self._start_time + + @start_time.setter + def start_time(self, start_time): + """ + Sets the start_time of this MaintenanceDetails. + Start time of the maintenance activity + + + :param start_time: The start_time of this MaintenanceDetails. + :type: datetime + """ + self._start_time = start_time + + @property + def end_time(self): + """ + Gets the end_time of this MaintenanceDetails. + End time of the maintenance activity + + + :return: The end_time of this MaintenanceDetails. + :rtype: datetime + """ + return self._end_time + + @end_time.setter + def end_time(self, end_time): + """ + Sets the end_time of this MaintenanceDetails. + End time of the maintenance activity + + + :param end_time: The end_time of this MaintenanceDetails. + :type: datetime + """ + self._end_time = end_time + + @property + def notification_email_ids(self): + """ + Gets the notification_email_ids of this MaintenanceDetails. + The Email Ids given the by customer to get notified about maintenance activities + + + :return: The notification_email_ids of this MaintenanceDetails. + :rtype: list[str] + """ + return self._notification_email_ids + + @notification_email_ids.setter + def notification_email_ids(self, notification_email_ids): + """ + Sets the notification_email_ids of this MaintenanceDetails. + The Email Ids given the by customer to get notified about maintenance activities + + + :param notification_email_ids: The notification_email_ids of this MaintenanceDetails. + :type: list[str] + """ + self._notification_email_ids = notification_email_ids + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/maintenance_notification_details.py b/src/oci/opensearch/models/maintenance_notification_details.py new file mode 100644 index 0000000000..6b9af2cc06 --- /dev/null +++ b/src/oci/opensearch/models/maintenance_notification_details.py @@ -0,0 +1,255 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class MaintenanceNotificationDetails(object): + """ + Notification details for the maintenance activity. + """ + + #: A constant which can be used with the maintenance_notification_type property of a MaintenanceNotificationDetails. + #: This constant has a value of "SCHEDULED_MAINTENANCE_WITH_RELEASE_NOTES" + MAINTENANCE_NOTIFICATION_TYPE_SCHEDULED_MAINTENANCE_WITH_RELEASE_NOTES = "SCHEDULED_MAINTENANCE_WITH_RELEASE_NOTES" + + #: A constant which can be used with the maintenance_notification_type property of a MaintenanceNotificationDetails. + #: This constant has a value of "SCHEDULED_MAINTENANCE_WITHOUT_RELEASE_NOTES" + MAINTENANCE_NOTIFICATION_TYPE_SCHEDULED_MAINTENANCE_WITHOUT_RELEASE_NOTES = "SCHEDULED_MAINTENANCE_WITHOUT_RELEASE_NOTES" + + #: A constant which can be used with the maintenance_notification_type property of a MaintenanceNotificationDetails. + #: This constant has a value of "RESCHEDULED_MAINTENANCE" + MAINTENANCE_NOTIFICATION_TYPE_RESCHEDULED_MAINTENANCE = "RESCHEDULED_MAINTENANCE" + + #: A constant which can be used with the maintenance_notification_type property of a MaintenanceNotificationDetails. + #: This constant has a value of "SCHEDULED_MAINTENANCE_REMINDER" + MAINTENANCE_NOTIFICATION_TYPE_SCHEDULED_MAINTENANCE_REMINDER = "SCHEDULED_MAINTENANCE_REMINDER" + + #: A constant which can be used with the maintenance_notification_type property of a MaintenanceNotificationDetails. + #: This constant has a value of "SCHEDULED_MAINTENANCE_COMPLETED" + MAINTENANCE_NOTIFICATION_TYPE_SCHEDULED_MAINTENANCE_COMPLETED = "SCHEDULED_MAINTENANCE_COMPLETED" + + def __init__(self, **kwargs): + """ + Initializes a new MaintenanceNotificationDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param jira_ticket: + The value to assign to the jira_ticket property of this MaintenanceNotificationDetails. + :type jira_ticket: str + + :param maintenance_notification_type: + The value to assign to the maintenance_notification_type property of this MaintenanceNotificationDetails. + Allowed values for this property are: "SCHEDULED_MAINTENANCE_WITH_RELEASE_NOTES", "SCHEDULED_MAINTENANCE_WITHOUT_RELEASE_NOTES", "RESCHEDULED_MAINTENANCE", "SCHEDULED_MAINTENANCE_REMINDER", "SCHEDULED_MAINTENANCE_COMPLETED" + :type maintenance_notification_type: str + + :param tenant_ids: + The value to assign to the tenant_ids property of this MaintenanceNotificationDetails. + :type tenant_ids: list[str] + + :param cluster_ids: + The value to assign to the cluster_ids property of this MaintenanceNotificationDetails. + :type cluster_ids: list[str] + + :param start_time: + The value to assign to the start_time property of this MaintenanceNotificationDetails. + :type start_time: str + + :param end_time: + The value to assign to the end_time property of this MaintenanceNotificationDetails. + :type end_time: str + + """ + self.swagger_types = { + 'jira_ticket': 'str', + 'maintenance_notification_type': 'str', + 'tenant_ids': 'list[str]', + 'cluster_ids': 'list[str]', + 'start_time': 'str', + 'end_time': 'str' + } + + self.attribute_map = { + 'jira_ticket': 'jiraTicket', + 'maintenance_notification_type': 'maintenanceNotificationType', + 'tenant_ids': 'tenantIds', + 'cluster_ids': 'clusterIds', + 'start_time': 'startTime', + 'end_time': 'endTime' + } + + self._jira_ticket = None + self._maintenance_notification_type = None + self._tenant_ids = None + self._cluster_ids = None + self._start_time = None + self._end_time = None + + @property + def jira_ticket(self): + """ + **[Required]** Gets the jira_ticket of this MaintenanceNotificationDetails. + Jira tickets for on-call engineer to send customer notification + + + :return: The jira_ticket of this MaintenanceNotificationDetails. + :rtype: str + """ + return self._jira_ticket + + @jira_ticket.setter + def jira_ticket(self, jira_ticket): + """ + Sets the jira_ticket of this MaintenanceNotificationDetails. + Jira tickets for on-call engineer to send customer notification + + + :param jira_ticket: The jira_ticket of this MaintenanceNotificationDetails. + :type: str + """ + self._jira_ticket = jira_ticket + + @property + def maintenance_notification_type(self): + """ + **[Required]** Gets the maintenance_notification_type of this MaintenanceNotificationDetails. + Maintenance Notification type + + Allowed values for this property are: "SCHEDULED_MAINTENANCE_WITH_RELEASE_NOTES", "SCHEDULED_MAINTENANCE_WITHOUT_RELEASE_NOTES", "RESCHEDULED_MAINTENANCE", "SCHEDULED_MAINTENANCE_REMINDER", "SCHEDULED_MAINTENANCE_COMPLETED" + + + :return: The maintenance_notification_type of this MaintenanceNotificationDetails. + :rtype: str + """ + return self._maintenance_notification_type + + @maintenance_notification_type.setter + def maintenance_notification_type(self, maintenance_notification_type): + """ + Sets the maintenance_notification_type of this MaintenanceNotificationDetails. + Maintenance Notification type + + + :param maintenance_notification_type: The maintenance_notification_type of this MaintenanceNotificationDetails. + :type: str + """ + allowed_values = ["SCHEDULED_MAINTENANCE_WITH_RELEASE_NOTES", "SCHEDULED_MAINTENANCE_WITHOUT_RELEASE_NOTES", "RESCHEDULED_MAINTENANCE", "SCHEDULED_MAINTENANCE_REMINDER", "SCHEDULED_MAINTENANCE_COMPLETED"] + if not value_allowed_none_or_none_sentinel(maintenance_notification_type, allowed_values): + raise ValueError( + f"Invalid value for `maintenance_notification_type`, must be None or one of {allowed_values}" + ) + self._maintenance_notification_type = maintenance_notification_type + + @property + def tenant_ids(self): + """ + Gets the tenant_ids of this MaintenanceNotificationDetails. + List of tenantIds where we need to send the maintenance notifications + + + :return: The tenant_ids of this MaintenanceNotificationDetails. + :rtype: list[str] + """ + return self._tenant_ids + + @tenant_ids.setter + def tenant_ids(self, tenant_ids): + """ + Sets the tenant_ids of this MaintenanceNotificationDetails. + List of tenantIds where we need to send the maintenance notifications + + + :param tenant_ids: The tenant_ids of this MaintenanceNotificationDetails. + :type: list[str] + """ + self._tenant_ids = tenant_ids + + @property + def cluster_ids(self): + """ + Gets the cluster_ids of this MaintenanceNotificationDetails. + List of OpenSearch clusterIds where we need to send the maintenance notifications + + + :return: The cluster_ids of this MaintenanceNotificationDetails. + :rtype: list[str] + """ + return self._cluster_ids + + @cluster_ids.setter + def cluster_ids(self, cluster_ids): + """ + Sets the cluster_ids of this MaintenanceNotificationDetails. + List of OpenSearch clusterIds where we need to send the maintenance notifications + + + :param cluster_ids: The cluster_ids of this MaintenanceNotificationDetails. + :type: list[str] + """ + self._cluster_ids = cluster_ids + + @property + def start_time(self): + """ + Gets the start_time of this MaintenanceNotificationDetails. + Start time for the notification activity in UTC like \"2023-20-04 04:00:00.000Z\" + + + :return: The start_time of this MaintenanceNotificationDetails. + :rtype: str + """ + return self._start_time + + @start_time.setter + def start_time(self, start_time): + """ + Sets the start_time of this MaintenanceNotificationDetails. + Start time for the notification activity in UTC like \"2023-20-04 04:00:00.000Z\" + + + :param start_time: The start_time of this MaintenanceNotificationDetails. + :type: str + """ + self._start_time = start_time + + @property + def end_time(self): + """ + Gets the end_time of this MaintenanceNotificationDetails. + Start time for the notification activity in UTC like \"2023-20-04 04:00:00.000Z\" + + + :return: The end_time of this MaintenanceNotificationDetails. + :rtype: str + """ + return self._end_time + + @end_time.setter + def end_time(self, end_time): + """ + Sets the end_time of this MaintenanceNotificationDetails. + Start time for the notification activity in UTC like \"2023-20-04 04:00:00.000Z\" + + + :param end_time: The end_time of this MaintenanceNotificationDetails. + :type: str + """ + self._end_time = end_time + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/maintenance_notification_failure.py b/src/oci/opensearch/models/maintenance_notification_failure.py new file mode 100644 index 0000000000..6a2420e5de --- /dev/null +++ b/src/oci/opensearch/models/maintenance_notification_failure.py @@ -0,0 +1,165 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class MaintenanceNotificationFailure(object): + """ + Failed maintenance notification for a cluster + """ + + def __init__(self, **kwargs): + """ + Initializes a new MaintenanceNotificationFailure object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param cluster_ids: + The value to assign to the cluster_ids property of this MaintenanceNotificationFailure. + :type cluster_ids: list[str] + + :param tenant_id: + The value to assign to the tenant_id property of this MaintenanceNotificationFailure. + :type tenant_id: str + + :param error_code: + The value to assign to the error_code property of this MaintenanceNotificationFailure. + :type error_code: str + + :param error_description: + The value to assign to the error_description property of this MaintenanceNotificationFailure. + :type error_description: str + + """ + self.swagger_types = { + 'cluster_ids': 'list[str]', + 'tenant_id': 'str', + 'error_code': 'str', + 'error_description': 'str' + } + + self.attribute_map = { + 'cluster_ids': 'clusterIds', + 'tenant_id': 'tenantId', + 'error_code': 'errorCode', + 'error_description': 'errorDescription' + } + + self._cluster_ids = None + self._tenant_id = None + self._error_code = None + self._error_description = None + + @property + def cluster_ids(self): + """ + **[Required]** Gets the cluster_ids of this MaintenanceNotificationFailure. + IDs of clusters + + + :return: The cluster_ids of this MaintenanceNotificationFailure. + :rtype: list[str] + """ + return self._cluster_ids + + @cluster_ids.setter + def cluster_ids(self, cluster_ids): + """ + Sets the cluster_ids of this MaintenanceNotificationFailure. + IDs of clusters + + + :param cluster_ids: The cluster_ids of this MaintenanceNotificationFailure. + :type: list[str] + """ + self._cluster_ids = cluster_ids + + @property + def tenant_id(self): + """ + **[Required]** Gets the tenant_id of this MaintenanceNotificationFailure. + Tenant ID of the cluster + + + :return: The tenant_id of this MaintenanceNotificationFailure. + :rtype: str + """ + return self._tenant_id + + @tenant_id.setter + def tenant_id(self, tenant_id): + """ + Sets the tenant_id of this MaintenanceNotificationFailure. + Tenant ID of the cluster + + + :param tenant_id: The tenant_id of this MaintenanceNotificationFailure. + :type: str + """ + self._tenant_id = tenant_id + + @property + def error_code(self): + """ + **[Required]** Gets the error_code of this MaintenanceNotificationFailure. + Error Code + + + :return: The error_code of this MaintenanceNotificationFailure. + :rtype: str + """ + return self._error_code + + @error_code.setter + def error_code(self, error_code): + """ + Sets the error_code of this MaintenanceNotificationFailure. + Error Code + + + :param error_code: The error_code of this MaintenanceNotificationFailure. + :type: str + """ + self._error_code = error_code + + @property + def error_description(self): + """ + **[Required]** Gets the error_description of this MaintenanceNotificationFailure. + Error Description + + + :return: The error_description of this MaintenanceNotificationFailure. + :rtype: str + """ + return self._error_description + + @error_description.setter + def error_description(self, error_description): + """ + Sets the error_description of this MaintenanceNotificationFailure. + Error Description + + + :param error_description: The error_description of this MaintenanceNotificationFailure. + :type: str + """ + self._error_description = error_description + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/maintenance_notification_response.py b/src/oci/opensearch/models/maintenance_notification_response.py new file mode 100644 index 0000000000..25a763b675 --- /dev/null +++ b/src/oci/opensearch/models/maintenance_notification_response.py @@ -0,0 +1,103 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class MaintenanceNotificationResponse(object): + """ + Response for request to send customer maintenance notification. + """ + + def __init__(self, **kwargs): + """ + Initializes a new MaintenanceNotificationResponse object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param message: + The value to assign to the message property of this MaintenanceNotificationResponse. + :type message: str + + :param failed_notifications: + The value to assign to the failed_notifications property of this MaintenanceNotificationResponse. + :type failed_notifications: list[oci.opensearch.models.MaintenanceNotificationFailure] + + """ + self.swagger_types = { + 'message': 'str', + 'failed_notifications': 'list[MaintenanceNotificationFailure]' + } + + self.attribute_map = { + 'message': 'message', + 'failed_notifications': 'failedNotifications' + } + + self._message = None + self._failed_notifications = None + + @property + def message(self): + """ + **[Required]** Gets the message of this MaintenanceNotificationResponse. + Response message for the maintenance notification request + + + :return: The message of this MaintenanceNotificationResponse. + :rtype: str + """ + return self._message + + @message.setter + def message(self, message): + """ + Sets the message of this MaintenanceNotificationResponse. + Response message for the maintenance notification request + + + :param message: The message of this MaintenanceNotificationResponse. + :type: str + """ + self._message = message + + @property + def failed_notifications(self): + """ + Gets the failed_notifications of this MaintenanceNotificationResponse. + List of failed maintenance notifications + + + :return: The failed_notifications of this MaintenanceNotificationResponse. + :rtype: list[oci.opensearch.models.MaintenanceNotificationFailure] + """ + return self._failed_notifications + + @failed_notifications.setter + def failed_notifications(self, failed_notifications): + """ + Sets the failed_notifications of this MaintenanceNotificationResponse. + List of failed maintenance notifications + + + :param failed_notifications: The failed_notifications of this MaintenanceNotificationResponse. + :type: list[oci.opensearch.models.MaintenanceNotificationFailure] + """ + self._failed_notifications = failed_notifications + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/opensearch_cluster.py b/src/oci/opensearch/models/opensearch_cluster.py index 79feacfa07..d174b84793 100644 --- a/src/oci/opensearch/models/opensearch_cluster.py +++ b/src/oci/opensearch/models/opensearch_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 @@ -243,6 +243,34 @@ def __init__(self, **kwargs): The value to assign to the security_master_user_password_hash property of this OpensearchCluster. :type security_master_user_password_hash: str + :param security_saml_config: + The value to assign to the security_saml_config property of this OpensearchCluster. + :type security_saml_config: oci.opensearch.models.SecuritySamlConfig + + :param backup_policy: + The value to assign to the backup_policy property of this OpensearchCluster. + :type backup_policy: oci.opensearch.models.BackupPolicy + + :param reverse_connection_endpoint_customer_ips: + The value to assign to the reverse_connection_endpoint_customer_ips property of this OpensearchCluster. + :type reverse_connection_endpoint_customer_ips: list[str] + + :param reverse_connection_endpoints: + The value to assign to the reverse_connection_endpoints property of this OpensearchCluster. + :type reverse_connection_endpoints: list[oci.opensearch.models.ReverseConnectionEndpoint] + + :param outbound_cluster_config: + The value to assign to the outbound_cluster_config property of this OpensearchCluster. + :type outbound_cluster_config: oci.opensearch.models.OutboundClusterConfig + + :param inbound_cluster_ids: + The value to assign to the inbound_cluster_ids property of this OpensearchCluster. + :type inbound_cluster_ids: list[str] + + :param maintenance_details: + The value to assign to the maintenance_details property of this OpensearchCluster. + :type maintenance_details: oci.opensearch.models.MaintenanceDetails + """ self.swagger_types = { 'id': 'str', @@ -284,7 +312,14 @@ def __init__(self, **kwargs): 'availability_domains': 'list[str]', 'security_mode': 'str', 'security_master_user_name': 'str', - 'security_master_user_password_hash': 'str' + 'security_master_user_password_hash': 'str', + 'security_saml_config': 'SecuritySamlConfig', + 'backup_policy': 'BackupPolicy', + 'reverse_connection_endpoint_customer_ips': 'list[str]', + 'reverse_connection_endpoints': 'list[ReverseConnectionEndpoint]', + 'outbound_cluster_config': 'OutboundClusterConfig', + 'inbound_cluster_ids': 'list[str]', + 'maintenance_details': 'MaintenanceDetails' } self.attribute_map = { @@ -327,7 +362,14 @@ def __init__(self, **kwargs): 'availability_domains': 'availabilityDomains', 'security_mode': 'securityMode', 'security_master_user_name': 'securityMasterUserName', - 'security_master_user_password_hash': 'securityMasterUserPasswordHash' + 'security_master_user_password_hash': 'securityMasterUserPasswordHash', + 'security_saml_config': 'securitySamlConfig', + 'backup_policy': 'backupPolicy', + 'reverse_connection_endpoint_customer_ips': 'reverseConnectionEndpointCustomerIps', + 'reverse_connection_endpoints': 'reverseConnectionEndpoints', + 'outbound_cluster_config': 'outboundClusterConfig', + 'inbound_cluster_ids': 'inboundClusterIds', + 'maintenance_details': 'maintenanceDetails' } self._id = None @@ -370,6 +412,13 @@ def __init__(self, **kwargs): self._security_mode = None self._security_master_user_name = None self._security_master_user_password_hash = None + self._security_saml_config = None + self._backup_policy = None + self._reverse_connection_endpoint_customer_ips = None + self._reverse_connection_endpoints = None + self._outbound_cluster_config = None + self._inbound_cluster_ids = None + self._maintenance_details = None @property def id(self): @@ -1361,6 +1410,158 @@ def security_master_user_password_hash(self, security_master_user_password_hash) """ self._security_master_user_password_hash = security_master_user_password_hash + @property + def security_saml_config(self): + """ + Gets the security_saml_config of this OpensearchCluster. + + :return: The security_saml_config of this OpensearchCluster. + :rtype: oci.opensearch.models.SecuritySamlConfig + """ + return self._security_saml_config + + @security_saml_config.setter + def security_saml_config(self, security_saml_config): + """ + Sets the security_saml_config of this OpensearchCluster. + + :param security_saml_config: The security_saml_config of this OpensearchCluster. + :type: oci.opensearch.models.SecuritySamlConfig + """ + self._security_saml_config = security_saml_config + + @property + def backup_policy(self): + """ + Gets the backup_policy of this OpensearchCluster. + + :return: The backup_policy of this OpensearchCluster. + :rtype: oci.opensearch.models.BackupPolicy + """ + return self._backup_policy + + @backup_policy.setter + def backup_policy(self, backup_policy): + """ + Sets the backup_policy of this OpensearchCluster. + + :param backup_policy: The backup_policy of this OpensearchCluster. + :type: oci.opensearch.models.BackupPolicy + """ + self._backup_policy = backup_policy + + @property + def reverse_connection_endpoint_customer_ips(self): + """ + Gets the reverse_connection_endpoint_customer_ips of this OpensearchCluster. + The customer IP addresses of the endpoint in customer VCN + + + :return: The reverse_connection_endpoint_customer_ips of this OpensearchCluster. + :rtype: list[str] + """ + return self._reverse_connection_endpoint_customer_ips + + @reverse_connection_endpoint_customer_ips.setter + def reverse_connection_endpoint_customer_ips(self, reverse_connection_endpoint_customer_ips): + """ + Sets the reverse_connection_endpoint_customer_ips of this OpensearchCluster. + The customer IP addresses of the endpoint in customer VCN + + + :param reverse_connection_endpoint_customer_ips: The reverse_connection_endpoint_customer_ips of this OpensearchCluster. + :type: list[str] + """ + self._reverse_connection_endpoint_customer_ips = reverse_connection_endpoint_customer_ips + + @property + def reverse_connection_endpoints(self): + """ + Gets the reverse_connection_endpoints of this OpensearchCluster. + The list of reverse connection endpoints. + + + :return: The reverse_connection_endpoints of this OpensearchCluster. + :rtype: list[oci.opensearch.models.ReverseConnectionEndpoint] + """ + return self._reverse_connection_endpoints + + @reverse_connection_endpoints.setter + def reverse_connection_endpoints(self, reverse_connection_endpoints): + """ + Sets the reverse_connection_endpoints of this OpensearchCluster. + The list of reverse connection endpoints. + + + :param reverse_connection_endpoints: The reverse_connection_endpoints of this OpensearchCluster. + :type: list[oci.opensearch.models.ReverseConnectionEndpoint] + """ + self._reverse_connection_endpoints = reverse_connection_endpoints + + @property + def outbound_cluster_config(self): + """ + Gets the outbound_cluster_config of this OpensearchCluster. + + :return: The outbound_cluster_config of this OpensearchCluster. + :rtype: oci.opensearch.models.OutboundClusterConfig + """ + return self._outbound_cluster_config + + @outbound_cluster_config.setter + def outbound_cluster_config(self, outbound_cluster_config): + """ + Sets the outbound_cluster_config of this OpensearchCluster. + + :param outbound_cluster_config: The outbound_cluster_config of this OpensearchCluster. + :type: oci.opensearch.models.OutboundClusterConfig + """ + self._outbound_cluster_config = outbound_cluster_config + + @property + def inbound_cluster_ids(self): + """ + Gets the inbound_cluster_ids of this OpensearchCluster. + List of inbound clusters for which this cluster is an outbound cluster + + + :return: The inbound_cluster_ids of this OpensearchCluster. + :rtype: list[str] + """ + return self._inbound_cluster_ids + + @inbound_cluster_ids.setter + def inbound_cluster_ids(self, inbound_cluster_ids): + """ + Sets the inbound_cluster_ids of this OpensearchCluster. + List of inbound clusters for which this cluster is an outbound cluster + + + :param inbound_cluster_ids: The inbound_cluster_ids of this OpensearchCluster. + :type: list[str] + """ + self._inbound_cluster_ids = inbound_cluster_ids + + @property + def maintenance_details(self): + """ + Gets the maintenance_details of this OpensearchCluster. + + :return: The maintenance_details of this OpensearchCluster. + :rtype: oci.opensearch.models.MaintenanceDetails + """ + return self._maintenance_details + + @maintenance_details.setter + def maintenance_details(self, maintenance_details): + """ + Sets the maintenance_details of this OpensearchCluster. + + :param maintenance_details: The maintenance_details of this OpensearchCluster. + :type: oci.opensearch.models.MaintenanceDetails + """ + self._maintenance_details = maintenance_details + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/opensearch/models/opensearch_cluster_backup.py b/src/oci/opensearch/models/opensearch_cluster_backup.py index 510fe91d0f..228ce613f5 100644 --- a/src/oci/opensearch/models/opensearch_cluster_backup.py +++ b/src/oci/opensearch/models/opensearch_cluster_backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/opensearch_cluster_backup_collection.py b/src/oci/opensearch/models/opensearch_cluster_backup_collection.py index f8c463bdca..e70ec49afb 100644 --- a/src/oci/opensearch/models/opensearch_cluster_backup_collection.py +++ b/src/oci/opensearch/models/opensearch_cluster_backup_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/opensearch_cluster_backup_summary.py b/src/oci/opensearch/models/opensearch_cluster_backup_summary.py index a39ed1211c..78b86c816b 100644 --- a/src/oci/opensearch/models/opensearch_cluster_backup_summary.py +++ b/src/oci/opensearch/models/opensearch_cluster_backup_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/opensearch_cluster_collection.py b/src/oci/opensearch/models/opensearch_cluster_collection.py index de31a712c3..845f9bc259 100644 --- a/src/oci/opensearch/models/opensearch_cluster_collection.py +++ b/src/oci/opensearch/models/opensearch_cluster_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/opensearch_cluster_internal_details.py b/src/oci/opensearch/models/opensearch_cluster_internal_details.py new file mode 100644 index 0000000000..9ffbe8e47e --- /dev/null +++ b/src/oci/opensearch/models/opensearch_cluster_internal_details.py @@ -0,0 +1,233 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class OpensearchClusterInternalDetails(object): + """ + This is the ClusterLoadBalancer which can store the State of the cluster, opensearchLoadbalancerIps, remoteLoadbalancerIps + """ + + def __init__(self, **kwargs): + """ + Initializes a new OpensearchClusterInternalDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param state: + The value to assign to the state property of this OpensearchClusterInternalDetails. + :type state: str + + :param elastic_load_balancer_ips: + The value to assign to the elastic_load_balancer_ips property of this OpensearchClusterInternalDetails. + :type elastic_load_balancer_ips: list[str] + + :param remote_load_balancer_ips: + The value to assign to the remote_load_balancer_ips property of this OpensearchClusterInternalDetails. + :type remote_load_balancer_ips: list[str] + + :param freeform_tags: + The value to assign to the freeform_tags property of this OpensearchClusterInternalDetails. + :type freeform_tags: dict(str, str) + + :param defined_tags: + The value to assign to the defined_tags property of this OpensearchClusterInternalDetails. + :type defined_tags: dict(str, dict(str, object)) + + :param system_tags: + The value to assign to the system_tags property of this OpensearchClusterInternalDetails. + :type system_tags: dict(str, dict(str, object)) + + """ + self.swagger_types = { + 'state': 'str', + 'elastic_load_balancer_ips': 'list[str]', + 'remote_load_balancer_ips': 'list[str]', + 'freeform_tags': 'dict(str, str)', + 'defined_tags': 'dict(str, dict(str, object))', + 'system_tags': 'dict(str, dict(str, object))' + } + + self.attribute_map = { + 'state': 'state', + 'elastic_load_balancer_ips': 'elasticLoadBalancerIps', + 'remote_load_balancer_ips': 'remoteLoadBalancerIps', + 'freeform_tags': 'freeformTags', + 'defined_tags': 'definedTags', + 'system_tags': 'systemTags' + } + + self._state = None + self._elastic_load_balancer_ips = None + self._remote_load_balancer_ips = None + self._freeform_tags = None + self._defined_tags = None + self._system_tags = None + + @property + def state(self): + """ + **[Required]** Gets the state of this OpensearchClusterInternalDetails. + The state of the cluster. + + + :return: The state of this OpensearchClusterInternalDetails. + :rtype: str + """ + return self._state + + @state.setter + def state(self, state): + """ + Sets the state of this OpensearchClusterInternalDetails. + The state of the cluster. + + + :param state: The state of this OpensearchClusterInternalDetails. + :type: str + """ + self._state = state + + @property + def elastic_load_balancer_ips(self): + """ + **[Required]** Gets the elastic_load_balancer_ips of this OpensearchClusterInternalDetails. + List of OpenSearch elastic LoadbalancerIps + + + :return: The elastic_load_balancer_ips of this OpensearchClusterInternalDetails. + :rtype: list[str] + """ + return self._elastic_load_balancer_ips + + @elastic_load_balancer_ips.setter + def elastic_load_balancer_ips(self, elastic_load_balancer_ips): + """ + Sets the elastic_load_balancer_ips of this OpensearchClusterInternalDetails. + List of OpenSearch elastic LoadbalancerIps + + + :param elastic_load_balancer_ips: The elastic_load_balancer_ips of this OpensearchClusterInternalDetails. + :type: list[str] + """ + self._elastic_load_balancer_ips = elastic_load_balancer_ips + + @property + def remote_load_balancer_ips(self): + """ + **[Required]** Gets the remote_load_balancer_ips of this OpensearchClusterInternalDetails. + List of OpenSearch remote LoadbalancerIps + + + :return: The remote_load_balancer_ips of this OpensearchClusterInternalDetails. + :rtype: list[str] + """ + return self._remote_load_balancer_ips + + @remote_load_balancer_ips.setter + def remote_load_balancer_ips(self, remote_load_balancer_ips): + """ + Sets the remote_load_balancer_ips of this OpensearchClusterInternalDetails. + List of OpenSearch remote LoadbalancerIps + + + :param remote_load_balancer_ips: The remote_load_balancer_ips of this OpensearchClusterInternalDetails. + :type: list[str] + """ + self._remote_load_balancer_ips = remote_load_balancer_ips + + @property + def freeform_tags(self): + """ + Gets the freeform_tags of this OpensearchClusterInternalDetails. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :return: The freeform_tags of this OpensearchClusterInternalDetails. + :rtype: dict(str, str) + """ + return self._freeform_tags + + @freeform_tags.setter + def freeform_tags(self, freeform_tags): + """ + Sets the freeform_tags of this OpensearchClusterInternalDetails. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :param freeform_tags: The freeform_tags of this OpensearchClusterInternalDetails. + :type: dict(str, str) + """ + self._freeform_tags = freeform_tags + + @property + def defined_tags(self): + """ + Gets the defined_tags of this OpensearchClusterInternalDetails. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :return: The defined_tags of this OpensearchClusterInternalDetails. + :rtype: dict(str, dict(str, object)) + """ + return self._defined_tags + + @defined_tags.setter + def defined_tags(self, defined_tags): + """ + Sets the defined_tags of this OpensearchClusterInternalDetails. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :param defined_tags: The defined_tags of this OpensearchClusterInternalDetails. + :type: dict(str, dict(str, object)) + """ + self._defined_tags = defined_tags + + @property + def system_tags(self): + """ + Gets the system_tags of this OpensearchClusterInternalDetails. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :return: The system_tags of this OpensearchClusterInternalDetails. + :rtype: dict(str, dict(str, object)) + """ + return self._system_tags + + @system_tags.setter + def system_tags(self, system_tags): + """ + Sets the system_tags of this OpensearchClusterInternalDetails. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :param system_tags: The system_tags of this OpensearchClusterInternalDetails. + :type: dict(str, dict(str, object)) + """ + self._system_tags = system_tags + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/opensearch_cluster_pipeline.py b/src/oci/opensearch/models/opensearch_cluster_pipeline.py new file mode 100644 index 0000000000..f05c23dc32 --- /dev/null +++ b/src/oci/opensearch/models/opensearch_cluster_pipeline.py @@ -0,0 +1,706 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class OpensearchClusterPipeline(object): + """ + An OpenSearch cluster Pipeline resource. An cluster is set of instances that provide OpenSearch functionality in OCI Search Service with OpenSearch. + For more information, see `Cluster Pipelines`__. + + __ https://docs.cloud.oracle.com/iaas/Content/search-opensearch/Concepts/ociopensearchpipeline.htm + """ + + #: A constant which can be used with the lifecycle_state property of a OpensearchClusterPipeline. + #: This constant has a value of "CREATING" + LIFECYCLE_STATE_CREATING = "CREATING" + + #: A constant which can be used with the lifecycle_state property of a OpensearchClusterPipeline. + #: This constant has a value of "UPDATING" + LIFECYCLE_STATE_UPDATING = "UPDATING" + + #: A constant which can be used with the lifecycle_state property of a OpensearchClusterPipeline. + #: This constant has a value of "ACTIVE" + LIFECYCLE_STATE_ACTIVE = "ACTIVE" + + #: A constant which can be used with the lifecycle_state property of a OpensearchClusterPipeline. + #: This constant has a value of "DELETING" + LIFECYCLE_STATE_DELETING = "DELETING" + + #: A constant which can be used with the lifecycle_state property of a OpensearchClusterPipeline. + #: This constant has a value of "DELETED" + LIFECYCLE_STATE_DELETED = "DELETED" + + #: A constant which can be used with the lifecycle_state property of a OpensearchClusterPipeline. + #: This constant has a value of "FAILED" + LIFECYCLE_STATE_FAILED = "FAILED" + + def __init__(self, **kwargs): + """ + Initializes a new OpensearchClusterPipeline object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param id: + The value to assign to the id property of this OpensearchClusterPipeline. + :type id: str + + :param display_name: + The value to assign to the display_name property of this OpensearchClusterPipeline. + :type display_name: str + + :param compartment_id: + The value to assign to the compartment_id property of this OpensearchClusterPipeline. + :type compartment_id: str + + :param vcn_id: + The value to assign to the vcn_id property of this OpensearchClusterPipeline. + :type vcn_id: str + + :param subnet_id: + The value to assign to the subnet_id property of this OpensearchClusterPipeline. + :type subnet_id: str + + :param vcn_compartment_id: + The value to assign to the vcn_compartment_id property of this OpensearchClusterPipeline. + :type vcn_compartment_id: str + + :param subnet_compartment_id: + The value to assign to the subnet_compartment_id property of this OpensearchClusterPipeline. + :type subnet_compartment_id: str + + :param max_ocpu_count: + The value to assign to the max_ocpu_count property of this OpensearchClusterPipeline. + :type max_ocpu_count: int + + :param min_ocpu_count: + The value to assign to the min_ocpu_count property of this OpensearchClusterPipeline. + :type min_ocpu_count: int + + :param max_memory_gb: + The value to assign to the max_memory_gb property of this OpensearchClusterPipeline. + :type max_memory_gb: int + + :param min_memory_gb: + The value to assign to the min_memory_gb property of this OpensearchClusterPipeline. + :type min_memory_gb: int + + :param pipeline_configuration_body: + The value to assign to the pipeline_configuration_body property of this OpensearchClusterPipeline. + :type pipeline_configuration_body: str + + :param opensearch_pipeline_fqdn: + The value to assign to the opensearch_pipeline_fqdn property of this OpensearchClusterPipeline. + :type opensearch_pipeline_fqdn: str + + :param opensearch_pipeline_private_ip: + The value to assign to the opensearch_pipeline_private_ip property of this OpensearchClusterPipeline. + :type opensearch_pipeline_private_ip: str + + :param lifecycle_state: + The value to assign to the lifecycle_state property of this OpensearchClusterPipeline. + Allowed values for this property are: "CREATING", "UPDATING", "ACTIVE", "DELETING", "DELETED", "FAILED" + :type lifecycle_state: str + + :param time_created: + The value to assign to the time_created property of this OpensearchClusterPipeline. + :type time_created: datetime + + :param time_updated: + The value to assign to the time_updated property of this OpensearchClusterPipeline. + :type time_updated: datetime + + :param freeform_tags: + The value to assign to the freeform_tags property of this OpensearchClusterPipeline. + :type freeform_tags: dict(str, str) + + :param defined_tags: + The value to assign to the defined_tags property of this OpensearchClusterPipeline. + :type defined_tags: dict(str, dict(str, object)) + + :param system_tags: + The value to assign to the system_tags property of this OpensearchClusterPipeline. + :type system_tags: dict(str, dict(str, object)) + + """ + self.swagger_types = { + 'id': 'str', + 'display_name': 'str', + 'compartment_id': 'str', + 'vcn_id': 'str', + 'subnet_id': 'str', + 'vcn_compartment_id': 'str', + 'subnet_compartment_id': 'str', + 'max_ocpu_count': 'int', + 'min_ocpu_count': 'int', + 'max_memory_gb': 'int', + 'min_memory_gb': 'int', + 'pipeline_configuration_body': 'str', + 'opensearch_pipeline_fqdn': 'str', + 'opensearch_pipeline_private_ip': 'str', + 'lifecycle_state': 'str', + 'time_created': 'datetime', + 'time_updated': 'datetime', + 'freeform_tags': 'dict(str, str)', + 'defined_tags': 'dict(str, dict(str, object))', + 'system_tags': 'dict(str, dict(str, object))' + } + + self.attribute_map = { + 'id': 'id', + 'display_name': 'displayName', + 'compartment_id': 'compartmentId', + 'vcn_id': 'vcnId', + 'subnet_id': 'subnetId', + 'vcn_compartment_id': 'vcnCompartmentId', + 'subnet_compartment_id': 'subnetCompartmentId', + 'max_ocpu_count': 'maxOcpuCount', + 'min_ocpu_count': 'minOcpuCount', + 'max_memory_gb': 'maxMemoryGB', + 'min_memory_gb': 'minMemoryGB', + 'pipeline_configuration_body': 'pipelineConfigurationBody', + 'opensearch_pipeline_fqdn': 'opensearchPipelineFqdn', + 'opensearch_pipeline_private_ip': 'opensearchPipelinePrivateIp', + 'lifecycle_state': 'lifecycleState', + 'time_created': 'timeCreated', + 'time_updated': 'timeUpdated', + 'freeform_tags': 'freeformTags', + 'defined_tags': 'definedTags', + 'system_tags': 'systemTags' + } + + self._id = None + self._display_name = None + self._compartment_id = None + self._vcn_id = None + self._subnet_id = None + self._vcn_compartment_id = None + self._subnet_compartment_id = None + self._max_ocpu_count = None + self._min_ocpu_count = None + self._max_memory_gb = None + self._min_memory_gb = None + self._pipeline_configuration_body = None + self._opensearch_pipeline_fqdn = None + self._opensearch_pipeline_private_ip = None + self._lifecycle_state = None + self._time_created = None + self._time_updated = None + self._freeform_tags = None + self._defined_tags = None + self._system_tags = None + + @property + def id(self): + """ + **[Required]** Gets the id of this OpensearchClusterPipeline. + The OCID of the cluster pipeline. + + + :return: The id of this OpensearchClusterPipeline. + :rtype: str + """ + return self._id + + @id.setter + def id(self, id): + """ + Sets the id of this OpensearchClusterPipeline. + The OCID of the cluster pipeline. + + + :param id: The id of this OpensearchClusterPipeline. + :type: str + """ + self._id = id + + @property + def display_name(self): + """ + **[Required]** Gets the display_name of this OpensearchClusterPipeline. + The name of the pipeline. Avoid entering confidential information. + + + :return: The display_name of this OpensearchClusterPipeline. + :rtype: str + """ + return self._display_name + + @display_name.setter + def display_name(self, display_name): + """ + Sets the display_name of this OpensearchClusterPipeline. + The name of the pipeline. Avoid entering confidential information. + + + :param display_name: The display_name of this OpensearchClusterPipeline. + :type: str + """ + self._display_name = display_name + + @property + def compartment_id(self): + """ + **[Required]** Gets the compartment_id of this OpensearchClusterPipeline. + The OCID of the compartment where the pipeline is located. + + + :return: The compartment_id of this OpensearchClusterPipeline. + :rtype: str + """ + return self._compartment_id + + @compartment_id.setter + def compartment_id(self, compartment_id): + """ + Sets the compartment_id of this OpensearchClusterPipeline. + The OCID of the compartment where the pipeline is located. + + + :param compartment_id: The compartment_id of this OpensearchClusterPipeline. + :type: str + """ + self._compartment_id = compartment_id + + @property + def vcn_id(self): + """ + **[Required]** Gets the vcn_id of this OpensearchClusterPipeline. + The OCID of the pipeline's VCN. + + + :return: The vcn_id of this OpensearchClusterPipeline. + :rtype: str + """ + return self._vcn_id + + @vcn_id.setter + def vcn_id(self, vcn_id): + """ + Sets the vcn_id of this OpensearchClusterPipeline. + The OCID of the pipeline's VCN. + + + :param vcn_id: The vcn_id of this OpensearchClusterPipeline. + :type: str + """ + self._vcn_id = vcn_id + + @property + def subnet_id(self): + """ + **[Required]** Gets the subnet_id of this OpensearchClusterPipeline. + The OCID of the pipeline's subnet. + + + :return: The subnet_id of this OpensearchClusterPipeline. + :rtype: str + """ + return self._subnet_id + + @subnet_id.setter + def subnet_id(self, subnet_id): + """ + Sets the subnet_id of this OpensearchClusterPipeline. + The OCID of the pipeline's subnet. + + + :param subnet_id: The subnet_id of this OpensearchClusterPipeline. + :type: str + """ + self._subnet_id = subnet_id + + @property + def vcn_compartment_id(self): + """ + **[Required]** Gets the vcn_compartment_id of this OpensearchClusterPipeline. + The OCID for the compartment where the pipeline's VCN is located. + + + :return: The vcn_compartment_id of this OpensearchClusterPipeline. + :rtype: str + """ + return self._vcn_compartment_id + + @vcn_compartment_id.setter + def vcn_compartment_id(self, vcn_compartment_id): + """ + Sets the vcn_compartment_id of this OpensearchClusterPipeline. + The OCID for the compartment where the pipeline's VCN is located. + + + :param vcn_compartment_id: The vcn_compartment_id of this OpensearchClusterPipeline. + :type: str + """ + self._vcn_compartment_id = vcn_compartment_id + + @property + def subnet_compartment_id(self): + """ + **[Required]** Gets the subnet_compartment_id of this OpensearchClusterPipeline. + The OCID for the compartment where the pipwline's subnet is located. + + + :return: The subnet_compartment_id of this OpensearchClusterPipeline. + :rtype: str + """ + return self._subnet_compartment_id + + @subnet_compartment_id.setter + def subnet_compartment_id(self, subnet_compartment_id): + """ + Sets the subnet_compartment_id of this OpensearchClusterPipeline. + The OCID for the compartment where the pipwline's subnet is located. + + + :param subnet_compartment_id: The subnet_compartment_id of this OpensearchClusterPipeline. + :type: str + """ + self._subnet_compartment_id = subnet_compartment_id + + @property + def max_ocpu_count(self): + """ + **[Required]** Gets the max_ocpu_count of this OpensearchClusterPipeline. + The maximum pipeline capacity, in OCPUs. + + + :return: The max_ocpu_count of this OpensearchClusterPipeline. + :rtype: int + """ + return self._max_ocpu_count + + @max_ocpu_count.setter + def max_ocpu_count(self, max_ocpu_count): + """ + Sets the max_ocpu_count of this OpensearchClusterPipeline. + The maximum pipeline capacity, in OCPUs. + + + :param max_ocpu_count: The max_ocpu_count of this OpensearchClusterPipeline. + :type: int + """ + self._max_ocpu_count = max_ocpu_count + + @property + def min_ocpu_count(self): + """ + **[Required]** Gets the min_ocpu_count of this OpensearchClusterPipeline. + The maximum pipeline capacity, in OCPUs. + + + :return: The min_ocpu_count of this OpensearchClusterPipeline. + :rtype: int + """ + return self._min_ocpu_count + + @min_ocpu_count.setter + def min_ocpu_count(self, min_ocpu_count): + """ + Sets the min_ocpu_count of this OpensearchClusterPipeline. + The maximum pipeline capacity, in OCPUs. + + + :param min_ocpu_count: The min_ocpu_count of this OpensearchClusterPipeline. + :type: int + """ + self._min_ocpu_count = min_ocpu_count + + @property + def max_memory_gb(self): + """ + **[Required]** Gets the max_memory_gb of this OpensearchClusterPipeline. + The maximum amount of memory in GB, for the pipeline. + + + :return: The max_memory_gb of this OpensearchClusterPipeline. + :rtype: int + """ + return self._max_memory_gb + + @max_memory_gb.setter + def max_memory_gb(self, max_memory_gb): + """ + Sets the max_memory_gb of this OpensearchClusterPipeline. + The maximum amount of memory in GB, for the pipeline. + + + :param max_memory_gb: The max_memory_gb of this OpensearchClusterPipeline. + :type: int + """ + self._max_memory_gb = max_memory_gb + + @property + def min_memory_gb(self): + """ + **[Required]** Gets the min_memory_gb of this OpensearchClusterPipeline. + The minimum amount of memory in GB, for the pipeline. + + + :return: The min_memory_gb of this OpensearchClusterPipeline. + :rtype: int + """ + return self._min_memory_gb + + @min_memory_gb.setter + def min_memory_gb(self, min_memory_gb): + """ + Sets the min_memory_gb of this OpensearchClusterPipeline. + The minimum amount of memory in GB, for the pipeline. + + + :param min_memory_gb: The min_memory_gb of this OpensearchClusterPipeline. + :type: int + """ + self._min_memory_gb = min_memory_gb + + @property + def pipeline_configuration_body(self): + """ + **[Required]** Gets the pipeline_configuration_body of this OpensearchClusterPipeline. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :return: The pipeline_configuration_body of this OpensearchClusterPipeline. + :rtype: str + """ + return self._pipeline_configuration_body + + @pipeline_configuration_body.setter + def pipeline_configuration_body(self, pipeline_configuration_body): + """ + Sets the pipeline_configuration_body of this OpensearchClusterPipeline. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :param pipeline_configuration_body: The pipeline_configuration_body of this OpensearchClusterPipeline. + :type: str + """ + self._pipeline_configuration_body = pipeline_configuration_body + + @property + def opensearch_pipeline_fqdn(self): + """ + **[Required]** Gets the opensearch_pipeline_fqdn of this OpensearchClusterPipeline. + The fully qualified domain name (FQDN) for the cluster's API endpoint. + + + :return: The opensearch_pipeline_fqdn of this OpensearchClusterPipeline. + :rtype: str + """ + return self._opensearch_pipeline_fqdn + + @opensearch_pipeline_fqdn.setter + def opensearch_pipeline_fqdn(self, opensearch_pipeline_fqdn): + """ + Sets the opensearch_pipeline_fqdn of this OpensearchClusterPipeline. + The fully qualified domain name (FQDN) for the cluster's API endpoint. + + + :param opensearch_pipeline_fqdn: The opensearch_pipeline_fqdn of this OpensearchClusterPipeline. + :type: str + """ + self._opensearch_pipeline_fqdn = opensearch_pipeline_fqdn + + @property + def opensearch_pipeline_private_ip(self): + """ + **[Required]** Gets the opensearch_pipeline_private_ip of this OpensearchClusterPipeline. + The pipeline's private IP address. + + + :return: The opensearch_pipeline_private_ip of this OpensearchClusterPipeline. + :rtype: str + """ + return self._opensearch_pipeline_private_ip + + @opensearch_pipeline_private_ip.setter + def opensearch_pipeline_private_ip(self, opensearch_pipeline_private_ip): + """ + Sets the opensearch_pipeline_private_ip of this OpensearchClusterPipeline. + The pipeline's private IP address. + + + :param opensearch_pipeline_private_ip: The opensearch_pipeline_private_ip of this OpensearchClusterPipeline. + :type: str + """ + self._opensearch_pipeline_private_ip = opensearch_pipeline_private_ip + + @property + def lifecycle_state(self): + """ + **[Required]** Gets the lifecycle_state of this OpensearchClusterPipeline. + The current state of the cluster backup. + + Allowed values for this property are: "CREATING", "UPDATING", "ACTIVE", "DELETING", "DELETED", "FAILED" + + + :return: The lifecycle_state of this OpensearchClusterPipeline. + :rtype: str + """ + return self._lifecycle_state + + @lifecycle_state.setter + def lifecycle_state(self, lifecycle_state): + """ + Sets the lifecycle_state of this OpensearchClusterPipeline. + The current state of the cluster backup. + + + :param lifecycle_state: The lifecycle_state of this OpensearchClusterPipeline. + :type: str + """ + allowed_values = ["CREATING", "UPDATING", "ACTIVE", "DELETING", "DELETED", "FAILED"] + if not value_allowed_none_or_none_sentinel(lifecycle_state, allowed_values): + raise ValueError( + f"Invalid value for `lifecycle_state`, must be None or one of {allowed_values}" + ) + self._lifecycle_state = lifecycle_state + + @property + def time_created(self): + """ + Gets the time_created of this OpensearchClusterPipeline. + The date and time the cluster pipeline was created. Format defined by `RFC3339`__. + + __ https://tools.ietf.org/html/rfc3339 + + + :return: The time_created of this OpensearchClusterPipeline. + :rtype: datetime + """ + return self._time_created + + @time_created.setter + def time_created(self, time_created): + """ + Sets the time_created of this OpensearchClusterPipeline. + The date and time the cluster pipeline was created. Format defined by `RFC3339`__. + + __ https://tools.ietf.org/html/rfc3339 + + + :param time_created: The time_created of this OpensearchClusterPipeline. + :type: datetime + """ + self._time_created = time_created + + @property + def time_updated(self): + """ + Gets the time_updated of this OpensearchClusterPipeline. + The amount of time in milliseconds since the pipeline was updated. + + + :return: The time_updated of this OpensearchClusterPipeline. + :rtype: datetime + """ + return self._time_updated + + @time_updated.setter + def time_updated(self, time_updated): + """ + Sets the time_updated of this OpensearchClusterPipeline. + The amount of time in milliseconds since the pipeline was updated. + + + :param time_updated: The time_updated of this OpensearchClusterPipeline. + :type: datetime + """ + self._time_updated = time_updated + + @property + def freeform_tags(self): + """ + Gets the freeform_tags of this OpensearchClusterPipeline. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :return: The freeform_tags of this OpensearchClusterPipeline. + :rtype: dict(str, str) + """ + return self._freeform_tags + + @freeform_tags.setter + def freeform_tags(self, freeform_tags): + """ + Sets the freeform_tags of this OpensearchClusterPipeline. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :param freeform_tags: The freeform_tags of this OpensearchClusterPipeline. + :type: dict(str, str) + """ + self._freeform_tags = freeform_tags + + @property + def defined_tags(self): + """ + Gets the defined_tags of this OpensearchClusterPipeline. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :return: The defined_tags of this OpensearchClusterPipeline. + :rtype: dict(str, dict(str, object)) + """ + return self._defined_tags + + @defined_tags.setter + def defined_tags(self, defined_tags): + """ + Sets the defined_tags of this OpensearchClusterPipeline. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :param defined_tags: The defined_tags of this OpensearchClusterPipeline. + :type: dict(str, dict(str, object)) + """ + self._defined_tags = defined_tags + + @property + def system_tags(self): + """ + Gets the system_tags of this OpensearchClusterPipeline. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :return: The system_tags of this OpensearchClusterPipeline. + :rtype: dict(str, dict(str, object)) + """ + return self._system_tags + + @system_tags.setter + def system_tags(self, system_tags): + """ + Sets the system_tags of this OpensearchClusterPipeline. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :param system_tags: The system_tags of this OpensearchClusterPipeline. + :type: dict(str, dict(str, object)) + """ + self._system_tags = system_tags + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/opensearch_cluster_pipeline_collection.py b/src/oci/opensearch/models/opensearch_cluster_pipeline_collection.py new file mode 100644 index 0000000000..121d53fae9 --- /dev/null +++ b/src/oci/opensearch/models/opensearch_cluster_pipeline_collection.py @@ -0,0 +1,72 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class OpensearchClusterPipelineCollection(object): + """ + The list of cluster pieplines returned in a cluster pipeline search. + """ + + def __init__(self, **kwargs): + """ + Initializes a new OpensearchClusterPipelineCollection object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param items: + The value to assign to the items property of this OpensearchClusterPipelineCollection. + :type items: list[oci.opensearch.models.OpensearchClusterPipelineSummary] + + """ + self.swagger_types = { + 'items': 'list[OpensearchClusterPipelineSummary]' + } + + self.attribute_map = { + 'items': 'items' + } + + self._items = None + + @property + def items(self): + """ + **[Required]** Gets the items of this OpensearchClusterPipelineCollection. + The list of cluster pipeline. + + + :return: The items of this OpensearchClusterPipelineCollection. + :rtype: list[oci.opensearch.models.OpensearchClusterPipelineSummary] + """ + return self._items + + @items.setter + def items(self, items): + """ + Sets the items of this OpensearchClusterPipelineCollection. + The list of cluster pipeline. + + + :param items: The items of this OpensearchClusterPipelineCollection. + :type: list[oci.opensearch.models.OpensearchClusterPipelineSummary] + """ + self._items = items + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/opensearch_cluster_pipeline_summary.py b/src/oci/opensearch/models/opensearch_cluster_pipeline_summary.py new file mode 100644 index 0000000000..0f6b6e3b9d --- /dev/null +++ b/src/oci/opensearch/models/opensearch_cluster_pipeline_summary.py @@ -0,0 +1,489 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class OpensearchClusterPipelineSummary(object): + """ + The summary of information about an OpenSearch cluster Pipeline. + """ + + def __init__(self, **kwargs): + """ + Initializes a new OpensearchClusterPipelineSummary object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param id: + The value to assign to the id property of this OpensearchClusterPipelineSummary. + :type id: str + + :param display_name: + The value to assign to the display_name property of this OpensearchClusterPipelineSummary. + :type display_name: str + + :param compartment_id: + The value to assign to the compartment_id property of this OpensearchClusterPipelineSummary. + :type compartment_id: str + + :param max_ocpu_count: + The value to assign to the max_ocpu_count property of this OpensearchClusterPipelineSummary. + :type max_ocpu_count: int + + :param min_ocpu_count: + The value to assign to the min_ocpu_count property of this OpensearchClusterPipelineSummary. + :type min_ocpu_count: int + + :param max_memory_gb: + The value to assign to the max_memory_gb property of this OpensearchClusterPipelineSummary. + :type max_memory_gb: int + + :param min_memory_gb: + The value to assign to the min_memory_gb property of this OpensearchClusterPipelineSummary. + :type min_memory_gb: int + + :param pipeline_configuration_body: + The value to assign to the pipeline_configuration_body property of this OpensearchClusterPipelineSummary. + :type pipeline_configuration_body: str + + :param time_created: + The value to assign to the time_created property of this OpensearchClusterPipelineSummary. + :type time_created: datetime + + :param time_updated: + The value to assign to the time_updated property of this OpensearchClusterPipelineSummary. + :type time_updated: datetime + + :param lifecycle_state: + The value to assign to the lifecycle_state property of this OpensearchClusterPipelineSummary. + :type lifecycle_state: str + + :param freeform_tags: + The value to assign to the freeform_tags property of this OpensearchClusterPipelineSummary. + :type freeform_tags: dict(str, str) + + :param defined_tags: + The value to assign to the defined_tags property of this OpensearchClusterPipelineSummary. + :type defined_tags: dict(str, dict(str, object)) + + :param system_tags: + The value to assign to the system_tags property of this OpensearchClusterPipelineSummary. + :type system_tags: dict(str, dict(str, object)) + + """ + self.swagger_types = { + 'id': 'str', + 'display_name': 'str', + 'compartment_id': 'str', + 'max_ocpu_count': 'int', + 'min_ocpu_count': 'int', + 'max_memory_gb': 'int', + 'min_memory_gb': 'int', + 'pipeline_configuration_body': 'str', + 'time_created': 'datetime', + 'time_updated': 'datetime', + 'lifecycle_state': 'str', + 'freeform_tags': 'dict(str, str)', + 'defined_tags': 'dict(str, dict(str, object))', + 'system_tags': 'dict(str, dict(str, object))' + } + + self.attribute_map = { + 'id': 'id', + 'display_name': 'displayName', + 'compartment_id': 'compartmentId', + 'max_ocpu_count': 'maxOcpuCount', + 'min_ocpu_count': 'minOcpuCount', + 'max_memory_gb': 'maxMemoryGB', + 'min_memory_gb': 'minMemoryGB', + 'pipeline_configuration_body': 'pipelineConfigurationBody', + 'time_created': 'timeCreated', + 'time_updated': 'timeUpdated', + 'lifecycle_state': 'lifecycleState', + 'freeform_tags': 'freeformTags', + 'defined_tags': 'definedTags', + 'system_tags': 'systemTags' + } + + self._id = None + self._display_name = None + self._compartment_id = None + self._max_ocpu_count = None + self._min_ocpu_count = None + self._max_memory_gb = None + self._min_memory_gb = None + self._pipeline_configuration_body = None + self._time_created = None + self._time_updated = None + self._lifecycle_state = None + self._freeform_tags = None + self._defined_tags = None + self._system_tags = None + + @property + def id(self): + """ + **[Required]** Gets the id of this OpensearchClusterPipelineSummary. + The OCID of the cluster pipeline. + + + :return: The id of this OpensearchClusterPipelineSummary. + :rtype: str + """ + return self._id + + @id.setter + def id(self, id): + """ + Sets the id of this OpensearchClusterPipelineSummary. + The OCID of the cluster pipeline. + + + :param id: The id of this OpensearchClusterPipelineSummary. + :type: str + """ + self._id = id + + @property + def display_name(self): + """ + Gets the display_name of this OpensearchClusterPipelineSummary. + The name of the cluster pipeline. Avoid entering confidential information. + + + :return: The display_name of this OpensearchClusterPipelineSummary. + :rtype: str + """ + return self._display_name + + @display_name.setter + def display_name(self, display_name): + """ + Sets the display_name of this OpensearchClusterPipelineSummary. + The name of the cluster pipeline. Avoid entering confidential information. + + + :param display_name: The display_name of this OpensearchClusterPipelineSummary. + :type: str + """ + self._display_name = display_name + + @property + def compartment_id(self): + """ + **[Required]** Gets the compartment_id of this OpensearchClusterPipelineSummary. + The OCID of the compartment where the cluster pipeline is located. + + + :return: The compartment_id of this OpensearchClusterPipelineSummary. + :rtype: str + """ + return self._compartment_id + + @compartment_id.setter + def compartment_id(self, compartment_id): + """ + Sets the compartment_id of this OpensearchClusterPipelineSummary. + The OCID of the compartment where the cluster pipeline is located. + + + :param compartment_id: The compartment_id of this OpensearchClusterPipelineSummary. + :type: str + """ + self._compartment_id = compartment_id + + @property + def max_ocpu_count(self): + """ + **[Required]** Gets the max_ocpu_count of this OpensearchClusterPipelineSummary. + The maximum pipeline capacity, in OCPUs. + + + :return: The max_ocpu_count of this OpensearchClusterPipelineSummary. + :rtype: int + """ + return self._max_ocpu_count + + @max_ocpu_count.setter + def max_ocpu_count(self, max_ocpu_count): + """ + Sets the max_ocpu_count of this OpensearchClusterPipelineSummary. + The maximum pipeline capacity, in OCPUs. + + + :param max_ocpu_count: The max_ocpu_count of this OpensearchClusterPipelineSummary. + :type: int + """ + self._max_ocpu_count = max_ocpu_count + + @property + def min_ocpu_count(self): + """ + **[Required]** Gets the min_ocpu_count of this OpensearchClusterPipelineSummary. + The maximum pipeline capacity, in OCPUs. + + + :return: The min_ocpu_count of this OpensearchClusterPipelineSummary. + :rtype: int + """ + return self._min_ocpu_count + + @min_ocpu_count.setter + def min_ocpu_count(self, min_ocpu_count): + """ + Sets the min_ocpu_count of this OpensearchClusterPipelineSummary. + The maximum pipeline capacity, in OCPUs. + + + :param min_ocpu_count: The min_ocpu_count of this OpensearchClusterPipelineSummary. + :type: int + """ + self._min_ocpu_count = min_ocpu_count + + @property + def max_memory_gb(self): + """ + **[Required]** Gets the max_memory_gb of this OpensearchClusterPipelineSummary. + The maximum amount of memory in GB, for the pipeline. + + + :return: The max_memory_gb of this OpensearchClusterPipelineSummary. + :rtype: int + """ + return self._max_memory_gb + + @max_memory_gb.setter + def max_memory_gb(self, max_memory_gb): + """ + Sets the max_memory_gb of this OpensearchClusterPipelineSummary. + The maximum amount of memory in GB, for the pipeline. + + + :param max_memory_gb: The max_memory_gb of this OpensearchClusterPipelineSummary. + :type: int + """ + self._max_memory_gb = max_memory_gb + + @property + def min_memory_gb(self): + """ + **[Required]** Gets the min_memory_gb of this OpensearchClusterPipelineSummary. + The minimum amount of memory in GB, for the pipeline. + + + :return: The min_memory_gb of this OpensearchClusterPipelineSummary. + :rtype: int + """ + return self._min_memory_gb + + @min_memory_gb.setter + def min_memory_gb(self, min_memory_gb): + """ + Sets the min_memory_gb of this OpensearchClusterPipelineSummary. + The minimum amount of memory in GB, for the pipeline. + + + :param min_memory_gb: The min_memory_gb of this OpensearchClusterPipelineSummary. + :type: int + """ + self._min_memory_gb = min_memory_gb + + @property + def pipeline_configuration_body(self): + """ + **[Required]** Gets the pipeline_configuration_body of this OpensearchClusterPipelineSummary. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :return: The pipeline_configuration_body of this OpensearchClusterPipelineSummary. + :rtype: str + """ + return self._pipeline_configuration_body + + @pipeline_configuration_body.setter + def pipeline_configuration_body(self, pipeline_configuration_body): + """ + Sets the pipeline_configuration_body of this OpensearchClusterPipelineSummary. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :param pipeline_configuration_body: The pipeline_configuration_body of this OpensearchClusterPipelineSummary. + :type: str + """ + self._pipeline_configuration_body = pipeline_configuration_body + + @property + def time_created(self): + """ + Gets the time_created of this OpensearchClusterPipelineSummary. + The date and time the cluster pipeline was created. Format defined by `RFC3339`__. + + __ https://tools.ietf.org/html/rfc3339 + + + :return: The time_created of this OpensearchClusterPipelineSummary. + :rtype: datetime + """ + return self._time_created + + @time_created.setter + def time_created(self, time_created): + """ + Sets the time_created of this OpensearchClusterPipelineSummary. + The date and time the cluster pipeline was created. Format defined by `RFC3339`__. + + __ https://tools.ietf.org/html/rfc3339 + + + :param time_created: The time_created of this OpensearchClusterPipelineSummary. + :type: datetime + """ + self._time_created = time_created + + @property + def time_updated(self): + """ + Gets the time_updated of this OpensearchClusterPipelineSummary. + The date and time the cluster pipeline was updated. Format defined by `RFC3339`__. + + __ https://tools.ietf.org/html/rfc3339 + + + :return: The time_updated of this OpensearchClusterPipelineSummary. + :rtype: datetime + """ + return self._time_updated + + @time_updated.setter + def time_updated(self, time_updated): + """ + Sets the time_updated of this OpensearchClusterPipelineSummary. + The date and time the cluster pipeline was updated. Format defined by `RFC3339`__. + + __ https://tools.ietf.org/html/rfc3339 + + + :param time_updated: The time_updated of this OpensearchClusterPipelineSummary. + :type: datetime + """ + self._time_updated = time_updated + + @property + def lifecycle_state(self): + """ + **[Required]** Gets the lifecycle_state of this OpensearchClusterPipelineSummary. + The current state of the cluster backup. + + + :return: The lifecycle_state of this OpensearchClusterPipelineSummary. + :rtype: str + """ + return self._lifecycle_state + + @lifecycle_state.setter + def lifecycle_state(self, lifecycle_state): + """ + Sets the lifecycle_state of this OpensearchClusterPipelineSummary. + The current state of the cluster backup. + + + :param lifecycle_state: The lifecycle_state of this OpensearchClusterPipelineSummary. + :type: str + """ + self._lifecycle_state = lifecycle_state + + @property + def freeform_tags(self): + """ + Gets the freeform_tags of this OpensearchClusterPipelineSummary. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :return: The freeform_tags of this OpensearchClusterPipelineSummary. + :rtype: dict(str, str) + """ + return self._freeform_tags + + @freeform_tags.setter + def freeform_tags(self, freeform_tags): + """ + Sets the freeform_tags of this OpensearchClusterPipelineSummary. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :param freeform_tags: The freeform_tags of this OpensearchClusterPipelineSummary. + :type: dict(str, str) + """ + self._freeform_tags = freeform_tags + + @property + def defined_tags(self): + """ + Gets the defined_tags of this OpensearchClusterPipelineSummary. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :return: The defined_tags of this OpensearchClusterPipelineSummary. + :rtype: dict(str, dict(str, object)) + """ + return self._defined_tags + + @defined_tags.setter + def defined_tags(self, defined_tags): + """ + Sets the defined_tags of this OpensearchClusterPipelineSummary. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :param defined_tags: The defined_tags of this OpensearchClusterPipelineSummary. + :type: dict(str, dict(str, object)) + """ + self._defined_tags = defined_tags + + @property + def system_tags(self): + """ + Gets the system_tags of this OpensearchClusterPipelineSummary. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :return: The system_tags of this OpensearchClusterPipelineSummary. + :rtype: dict(str, dict(str, object)) + """ + return self._system_tags + + @system_tags.setter + def system_tags(self, system_tags): + """ + Sets the system_tags of this OpensearchClusterPipelineSummary. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :param system_tags: The system_tags of this OpensearchClusterPipelineSummary. + :type: dict(str, dict(str, object)) + """ + self._system_tags = system_tags + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/opensearch_cluster_summary.py b/src/oci/opensearch/models/opensearch_cluster_summary.py index a74fafcaf9..763b7f705c 100644 --- a/src/oci/opensearch/models/opensearch_cluster_summary.py +++ b/src/oci/opensearch/models/opensearch_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 @@ -90,6 +90,14 @@ def __init__(self, **kwargs): Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type security_mode: str + :param backup_policy: + The value to assign to the backup_policy property of this OpensearchClusterSummary. + :type backup_policy: oci.opensearch.models.BackupPolicy + + :param outbound_cluster_config: + The value to assign to the outbound_cluster_config property of this OpensearchClusterSummary. + :type outbound_cluster_config: oci.opensearch.models.OutboundClusterConfig + """ self.swagger_types = { 'id': 'str', @@ -105,7 +113,9 @@ def __init__(self, **kwargs): 'total_storage_gb': 'int', 'lifecycle_state': 'str', 'availability_domains': 'list[str]', - 'security_mode': 'str' + 'security_mode': 'str', + 'backup_policy': 'BackupPolicy', + 'outbound_cluster_config': 'OutboundClusterConfig' } self.attribute_map = { @@ -122,7 +132,9 @@ def __init__(self, **kwargs): 'total_storage_gb': 'totalStorageGB', 'lifecycle_state': 'lifecycleState', 'availability_domains': 'availabilityDomains', - 'security_mode': 'securityMode' + 'security_mode': 'securityMode', + 'backup_policy': 'backupPolicy', + 'outbound_cluster_config': 'outboundClusterConfig' } self._id = None @@ -139,6 +151,8 @@ def __init__(self, **kwargs): self._lifecycle_state = None self._availability_domains = None self._security_mode = None + self._backup_policy = None + self._outbound_cluster_config = None @property def id(self): @@ -500,6 +514,46 @@ def security_mode(self, security_mode): security_mode = 'UNKNOWN_ENUM_VALUE' self._security_mode = security_mode + @property + def backup_policy(self): + """ + Gets the backup_policy of this OpensearchClusterSummary. + + :return: The backup_policy of this OpensearchClusterSummary. + :rtype: oci.opensearch.models.BackupPolicy + """ + return self._backup_policy + + @backup_policy.setter + def backup_policy(self, backup_policy): + """ + Sets the backup_policy of this OpensearchClusterSummary. + + :param backup_policy: The backup_policy of this OpensearchClusterSummary. + :type: oci.opensearch.models.BackupPolicy + """ + self._backup_policy = backup_policy + + @property + def outbound_cluster_config(self): + """ + Gets the outbound_cluster_config of this OpensearchClusterSummary. + + :return: The outbound_cluster_config of this OpensearchClusterSummary. + :rtype: oci.opensearch.models.OutboundClusterConfig + """ + return self._outbound_cluster_config + + @outbound_cluster_config.setter + def outbound_cluster_config(self, outbound_cluster_config): + """ + Sets the outbound_cluster_config of this OpensearchClusterSummary. + + :param outbound_cluster_config: The outbound_cluster_config of this OpensearchClusterSummary. + :type: oci.opensearch.models.OutboundClusterConfig + """ + self._outbound_cluster_config = outbound_cluster_config + def __repr__(self): return formatted_flat_dict(self) diff --git a/src/oci/opensearch/models/opensearch_pipeline_validation_response.py b/src/oci/opensearch/models/opensearch_pipeline_validation_response.py new file mode 100644 index 0000000000..29f37d9dbe --- /dev/null +++ b/src/oci/opensearch/models/opensearch_pipeline_validation_response.py @@ -0,0 +1,103 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class OpensearchPipelineValidationResponse(object): + """ + Details for validation of customer input pipeline configuration. + """ + + def __init__(self, **kwargs): + """ + Initializes a new OpensearchPipelineValidationResponse object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param errors: + The value to assign to the errors property of this OpensearchPipelineValidationResponse. + :type errors: list[oci.opensearch.models.PipelineValidationErrorDetails] + + :param is_valid: + The value to assign to the is_valid property of this OpensearchPipelineValidationResponse. + :type is_valid: bool + + """ + self.swagger_types = { + 'errors': 'list[PipelineValidationErrorDetails]', + 'is_valid': 'bool' + } + + self.attribute_map = { + 'errors': 'errors', + 'is_valid': 'isValid' + } + + self._errors = None + self._is_valid = None + + @property + def errors(self): + """ + **[Required]** Gets the errors of this OpensearchPipelineValidationResponse. + An array of errors in the pipeline configuration which is given for validation. + + + :return: The errors of this OpensearchPipelineValidationResponse. + :rtype: list[oci.opensearch.models.PipelineValidationErrorDetails] + """ + return self._errors + + @errors.setter + def errors(self, errors): + """ + Sets the errors of this OpensearchPipelineValidationResponse. + An array of errors in the pipeline configuration which is given for validation. + + + :param errors: The errors of this OpensearchPipelineValidationResponse. + :type: list[oci.opensearch.models.PipelineValidationErrorDetails] + """ + self._errors = errors + + @property + def is_valid(self): + """ + **[Required]** Gets the is_valid of this OpensearchPipelineValidationResponse. + Boolean value which tells us if the pipeline configuration given by user is valid or not. + + + :return: The is_valid of this OpensearchPipelineValidationResponse. + :rtype: bool + """ + return self._is_valid + + @is_valid.setter + def is_valid(self, is_valid): + """ + Sets the is_valid of this OpensearchPipelineValidationResponse. + Boolean value which tells us if the pipeline configuration given by user is valid or not. + + + :param is_valid: The is_valid of this OpensearchPipelineValidationResponse. + :type: bool + """ + self._is_valid = is_valid + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/opensearch_versions_collection.py b/src/oci/opensearch/models/opensearch_versions_collection.py index 2fc8f57bfb..053f0537bc 100644 --- a/src/oci/opensearch/models/opensearch_versions_collection.py +++ b/src/oci/opensearch/models/opensearch_versions_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/opensearch_versions_summary.py b/src/oci/opensearch/models/opensearch_versions_summary.py index a516aad5e5..8213110ba8 100644 --- a/src/oci/opensearch/models/opensearch_versions_summary.py +++ b/src/oci/opensearch/models/opensearch_versions_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/outbound_cluster_config.py b/src/oci/opensearch/models/outbound_cluster_config.py new file mode 100644 index 0000000000..fb2f23fc1e --- /dev/null +++ b/src/oci/opensearch/models/outbound_cluster_config.py @@ -0,0 +1,103 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class OutboundClusterConfig(object): + """ + This configuration is used for passing request details to connect outbound cluster(s) to the inbound cluster (coordinating cluster) + """ + + def __init__(self, **kwargs): + """ + Initializes a new OutboundClusterConfig object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param is_enabled: + The value to assign to the is_enabled property of this OutboundClusterConfig. + :type is_enabled: bool + + :param outbound_clusters: + The value to assign to the outbound_clusters property of this OutboundClusterConfig. + :type outbound_clusters: list[oci.opensearch.models.OutboundClusterSummary] + + """ + self.swagger_types = { + 'is_enabled': 'bool', + 'outbound_clusters': 'list[OutboundClusterSummary]' + } + + self.attribute_map = { + 'is_enabled': 'isEnabled', + 'outbound_clusters': 'outboundClusters' + } + + self._is_enabled = None + self._outbound_clusters = None + + @property + def is_enabled(self): + """ + **[Required]** Gets the is_enabled of this OutboundClusterConfig. + Flag to indicate whether outbound cluster configuration is enabled + + + :return: The is_enabled of this OutboundClusterConfig. + :rtype: bool + """ + return self._is_enabled + + @is_enabled.setter + def is_enabled(self, is_enabled): + """ + Sets the is_enabled of this OutboundClusterConfig. + Flag to indicate whether outbound cluster configuration is enabled + + + :param is_enabled: The is_enabled of this OutboundClusterConfig. + :type: bool + """ + self._is_enabled = is_enabled + + @property + def outbound_clusters(self): + """ + **[Required]** Gets the outbound_clusters of this OutboundClusterConfig. + List of outbound clusters to be connected to the inbound cluster + + + :return: The outbound_clusters of this OutboundClusterConfig. + :rtype: list[oci.opensearch.models.OutboundClusterSummary] + """ + return self._outbound_clusters + + @outbound_clusters.setter + def outbound_clusters(self, outbound_clusters): + """ + Sets the outbound_clusters of this OutboundClusterConfig. + List of outbound clusters to be connected to the inbound cluster + + + :param outbound_clusters: The outbound_clusters of this OutboundClusterConfig. + :type: list[oci.opensearch.models.OutboundClusterSummary] + """ + self._outbound_clusters = outbound_clusters + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/outbound_cluster_summary.py b/src/oci/opensearch/models/outbound_cluster_summary.py new file mode 100644 index 0000000000..917be0c4b8 --- /dev/null +++ b/src/oci/opensearch/models/outbound_cluster_summary.py @@ -0,0 +1,216 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class OutboundClusterSummary(object): + """ + Contains details of a Outbound cluster + """ + + #: A constant which can be used with the mode property of a OutboundClusterSummary. + #: This constant has a value of "SEARCH_ONLY" + MODE_SEARCH_ONLY = "SEARCH_ONLY" + + #: A constant which can be used with the mode property of a OutboundClusterSummary. + #: This constant has a value of "REPLICATION_ONLY" + MODE_REPLICATION_ONLY = "REPLICATION_ONLY" + + #: A constant which can be used with the mode property of a OutboundClusterSummary. + #: This constant has a value of "SEARCH_AND_REPLICATION" + MODE_SEARCH_AND_REPLICATION = "SEARCH_AND_REPLICATION" + + def __init__(self, **kwargs): + """ + Initializes a new OutboundClusterSummary object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param display_name: + The value to assign to the display_name property of this OutboundClusterSummary. + :type display_name: str + + :param ping_schedule: + The value to assign to the ping_schedule property of this OutboundClusterSummary. + :type ping_schedule: str + + :param is_skip_unavailable: + The value to assign to the is_skip_unavailable property of this OutboundClusterSummary. + :type is_skip_unavailable: bool + + :param seed_cluster_id: + The value to assign to the seed_cluster_id property of this OutboundClusterSummary. + :type seed_cluster_id: str + + :param mode: + The value to assign to the mode property of this OutboundClusterSummary. + Allowed values for this property are: "SEARCH_ONLY", "REPLICATION_ONLY", "SEARCH_AND_REPLICATION", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + :type mode: str + + """ + self.swagger_types = { + 'display_name': 'str', + 'ping_schedule': 'str', + 'is_skip_unavailable': 'bool', + 'seed_cluster_id': 'str', + 'mode': 'str' + } + + self.attribute_map = { + 'display_name': 'displayName', + 'ping_schedule': 'pingSchedule', + 'is_skip_unavailable': 'isSkipUnavailable', + 'seed_cluster_id': 'seedClusterId', + 'mode': 'mode' + } + + self._display_name = None + self._ping_schedule = None + self._is_skip_unavailable = None + self._seed_cluster_id = None + self._mode = None + + @property + def display_name(self): + """ + **[Required]** Gets the display_name of this OutboundClusterSummary. + Name of the Outbound cluster. Avoid entering confidential information. + + + :return: The display_name of this OutboundClusterSummary. + :rtype: str + """ + return self._display_name + + @display_name.setter + def display_name(self, display_name): + """ + Sets the display_name of this OutboundClusterSummary. + Name of the Outbound cluster. Avoid entering confidential information. + + + :param display_name: The display_name of this OutboundClusterSummary. + :type: str + """ + self._display_name = display_name + + @property + def ping_schedule(self): + """ + Gets the ping_schedule of this OutboundClusterSummary. + Sets the time interval between regular application-level ping messages that are sent to try and keep outbound cluster connections alive. If set to -1, application-level ping messages to this outbound cluster are not sent. If unset, application-level ping messages are sent according to the global transport.ping_schedule setting, which defaults to -1 meaning that pings are not sent. + + + :return: The ping_schedule of this OutboundClusterSummary. + :rtype: str + """ + return self._ping_schedule + + @ping_schedule.setter + def ping_schedule(self, ping_schedule): + """ + Sets the ping_schedule of this OutboundClusterSummary. + Sets the time interval between regular application-level ping messages that are sent to try and keep outbound cluster connections alive. If set to -1, application-level ping messages to this outbound cluster are not sent. If unset, application-level ping messages are sent according to the global transport.ping_schedule setting, which defaults to -1 meaning that pings are not sent. + + + :param ping_schedule: The ping_schedule of this OutboundClusterSummary. + :type: str + """ + self._ping_schedule = ping_schedule + + @property + def is_skip_unavailable(self): + """ + Gets the is_skip_unavailable of this OutboundClusterSummary. + Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable + + + :return: The is_skip_unavailable of this OutboundClusterSummary. + :rtype: bool + """ + return self._is_skip_unavailable + + @is_skip_unavailable.setter + def is_skip_unavailable(self, is_skip_unavailable): + """ + Sets the is_skip_unavailable of this OutboundClusterSummary. + Flag to indicate whether to skip the Outbound cluster during cross cluster search, if it is unavailable + + + :param is_skip_unavailable: The is_skip_unavailable of this OutboundClusterSummary. + :type: bool + """ + self._is_skip_unavailable = is_skip_unavailable + + @property + def seed_cluster_id(self): + """ + **[Required]** Gets the seed_cluster_id of this OutboundClusterSummary. + OCID of the Outbound cluster + + + :return: The seed_cluster_id of this OutboundClusterSummary. + :rtype: str + """ + return self._seed_cluster_id + + @seed_cluster_id.setter + def seed_cluster_id(self, seed_cluster_id): + """ + Sets the seed_cluster_id of this OutboundClusterSummary. + OCID of the Outbound cluster + + + :param seed_cluster_id: The seed_cluster_id of this OutboundClusterSummary. + :type: str + """ + self._seed_cluster_id = seed_cluster_id + + @property + def mode(self): + """ + Gets the mode of this OutboundClusterSummary. + Mode for the cross cluster connection + + Allowed values for this property are: "SEARCH_ONLY", "REPLICATION_ONLY", "SEARCH_AND_REPLICATION", 'UNKNOWN_ENUM_VALUE'. + Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. + + + :return: The mode of this OutboundClusterSummary. + :rtype: str + """ + return self._mode + + @mode.setter + def mode(self, mode): + """ + Sets the mode of this OutboundClusterSummary. + Mode for the cross cluster connection + + + :param mode: The mode of this OutboundClusterSummary. + :type: str + """ + allowed_values = ["SEARCH_ONLY", "REPLICATION_ONLY", "SEARCH_AND_REPLICATION"] + if not value_allowed_none_or_none_sentinel(mode, allowed_values): + mode = 'UNKNOWN_ENUM_VALUE' + self._mode = mode + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/pipeline_validation_error_details.py b/src/oci/opensearch/models/pipeline_validation_error_details.py new file mode 100644 index 0000000000..79f20e5319 --- /dev/null +++ b/src/oci/opensearch/models/pipeline_validation_error_details.py @@ -0,0 +1,68 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class PipelineValidationErrorDetails(object): + """ + The configuration details for validating pipeline configuration provided as input. + """ + + def __init__(self, **kwargs): + """ + Initializes a new PipelineValidationErrorDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param message: + The value to assign to the message property of this PipelineValidationErrorDetails. + :type message: str + + """ + self.swagger_types = { + 'message': 'str' + } + + self.attribute_map = { + 'message': 'message' + } + + self._message = None + + @property + def message(self): + """ + **[Required]** Gets the message of this PipelineValidationErrorDetails. + + :return: The message of this PipelineValidationErrorDetails. + :rtype: str + """ + return self._message + + @message.setter + def message(self, message): + """ + Sets the message of this PipelineValidationErrorDetails. + + :param message: The message of this PipelineValidationErrorDetails. + :type: str + """ + self._message = message + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/reclaim_cluster_details.py b/src/oci/opensearch/models/reclaim_cluster_details.py new file mode 100644 index 0000000000..7d6ec492ef --- /dev/null +++ b/src/oci/opensearch/models/reclaim_cluster_details.py @@ -0,0 +1,103 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class ReclaimClusterDetails(object): + """ + Reclaim Clusters from de-activated customer tenant accounts + """ + + def __init__(self, **kwargs): + """ + Initializes a new ReclaimClusterDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param tenant_id: + The value to assign to the tenant_id property of this ReclaimClusterDetails. + :type tenant_id: str + + :param is_reclamation_run: + The value to assign to the is_reclamation_run property of this ReclaimClusterDetails. + :type is_reclamation_run: bool + + """ + self.swagger_types = { + 'tenant_id': 'str', + 'is_reclamation_run': 'bool' + } + + self.attribute_map = { + 'tenant_id': 'tenantId', + 'is_reclamation_run': 'isReclamationRun' + } + + self._tenant_id = None + self._is_reclamation_run = None + + @property + def tenant_id(self): + """ + **[Required]** Gets the tenant_id of this ReclaimClusterDetails. + The tenant ID of the customer whose account has been de-activated + + + :return: The tenant_id of this ReclaimClusterDetails. + :rtype: str + """ + return self._tenant_id + + @tenant_id.setter + def tenant_id(self, tenant_id): + """ + Sets the tenant_id of this ReclaimClusterDetails. + The tenant ID of the customer whose account has been de-activated + + + :param tenant_id: The tenant_id of this ReclaimClusterDetails. + :type: str + """ + self._tenant_id = tenant_id + + @property + def is_reclamation_run(self): + """ + **[Required]** Gets the is_reclamation_run of this ReclaimClusterDetails. + A boolean flag which indicates whether or not to execute the reclamation of the resulting non-deleted clusterIds in the de-activated tenant + + + :return: The is_reclamation_run of this ReclaimClusterDetails. + :rtype: bool + """ + return self._is_reclamation_run + + @is_reclamation_run.setter + def is_reclamation_run(self, is_reclamation_run): + """ + Sets the is_reclamation_run of this ReclaimClusterDetails. + A boolean flag which indicates whether or not to execute the reclamation of the resulting non-deleted clusterIds in the de-activated tenant + + + :param is_reclamation_run: The is_reclamation_run of this ReclaimClusterDetails. + :type: bool + """ + self._is_reclamation_run = is_reclamation_run + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py b/src/oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py index fc4e1fe3f6..ed1515f8f9 100644 --- a/src/oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py +++ b/src/oci/opensearch/models/resize_opensearch_cluster_horizontal_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/resize_opensearch_cluster_vertical_details.py b/src/oci/opensearch/models/resize_opensearch_cluster_vertical_details.py index 264caac10a..6ed3cb720e 100644 --- a/src/oci/opensearch/models/resize_opensearch_cluster_vertical_details.py +++ b/src/oci/opensearch/models/resize_opensearch_cluster_vertical_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/restore_opensearch_cluster_backup_details.py b/src/oci/opensearch/models/restore_opensearch_cluster_backup_details.py index d38632ef33..7ec9f27725 100644 --- a/src/oci/opensearch/models/restore_opensearch_cluster_backup_details.py +++ b/src/oci/opensearch/models/restore_opensearch_cluster_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/restore_opensearch_cluster_details.py b/src/oci/opensearch/models/restore_opensearch_cluster_details.py index c5de67c8ee..d679f63e17 100644 --- a/src/oci/opensearch/models/restore_opensearch_cluster_details.py +++ b/src/oci/opensearch/models/restore_opensearch_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/reverse_connection_endpoint.py b/src/oci/opensearch/models/reverse_connection_endpoint.py new file mode 100644 index 0000000000..31e04f64bc --- /dev/null +++ b/src/oci/opensearch/models/reverse_connection_endpoint.py @@ -0,0 +1,103 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class ReverseConnectionEndpoint(object): + """ + Reverse connection endpoint has details of endpoint in customer VCN + """ + + def __init__(self, **kwargs): + """ + Initializes a new ReverseConnectionEndpoint object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param customer_ip: + The value to assign to the customer_ip property of this ReverseConnectionEndpoint. + :type customer_ip: str + + :param nat_ip: + The value to assign to the nat_ip property of this ReverseConnectionEndpoint. + :type nat_ip: str + + """ + self.swagger_types = { + 'customer_ip': 'str', + 'nat_ip': 'str' + } + + self.attribute_map = { + 'customer_ip': 'customerIp', + 'nat_ip': 'natIp' + } + + self._customer_ip = None + self._nat_ip = None + + @property + def customer_ip(self): + """ + **[Required]** Gets the customer_ip of this ReverseConnectionEndpoint. + The IP addresses of the endpoint in customer VCN + + + :return: The customer_ip of this ReverseConnectionEndpoint. + :rtype: str + """ + return self._customer_ip + + @customer_ip.setter + def customer_ip(self, customer_ip): + """ + Sets the customer_ip of this ReverseConnectionEndpoint. + The IP addresses of the endpoint in customer VCN + + + :param customer_ip: The customer_ip of this ReverseConnectionEndpoint. + :type: str + """ + self._customer_ip = customer_ip + + @property + def nat_ip(self): + """ + **[Required]** Gets the nat_ip of this ReverseConnectionEndpoint. + The NAT IP addresses of the endpoint in service VCN + + + :return: The nat_ip of this ReverseConnectionEndpoint. + :rtype: str + """ + return self._nat_ip + + @nat_ip.setter + def nat_ip(self, nat_ip): + """ + Sets the nat_ip of this ReverseConnectionEndpoint. + The NAT IP addresses of the endpoint in service VCN + + + :param nat_ip: The nat_ip of this ReverseConnectionEndpoint. + :type: str + """ + self._nat_ip = nat_ip + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/security_saml_config.py b/src/oci/opensearch/models/security_saml_config.py new file mode 100644 index 0000000000..3c819efc1d --- /dev/null +++ b/src/oci/opensearch/models/security_saml_config.py @@ -0,0 +1,258 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class SecuritySamlConfig(object): + """ + SAML policy is optionally used for Opensearch cluster to config SAML authentication + """ + + def __init__(self, **kwargs): + """ + Initializes a new SecuritySamlConfig object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param is_enabled: + The value to assign to the is_enabled property of this SecuritySamlConfig. + :type is_enabled: bool + + :param idp_metadata_content: + The value to assign to the idp_metadata_content property of this SecuritySamlConfig. + :type idp_metadata_content: str + + :param idp_entity_id: + The value to assign to the idp_entity_id property of this SecuritySamlConfig. + :type idp_entity_id: str + + :param opendashboard_url: + The value to assign to the opendashboard_url property of this SecuritySamlConfig. + :type opendashboard_url: str + + :param admin_backend_role: + The value to assign to the admin_backend_role property of this SecuritySamlConfig. + :type admin_backend_role: str + + :param subject_key: + The value to assign to the subject_key property of this SecuritySamlConfig. + :type subject_key: str + + :param roles_key: + The value to assign to the roles_key property of this SecuritySamlConfig. + :type roles_key: str + + """ + self.swagger_types = { + 'is_enabled': 'bool', + 'idp_metadata_content': 'str', + 'idp_entity_id': 'str', + 'opendashboard_url': 'str', + 'admin_backend_role': 'str', + 'subject_key': 'str', + 'roles_key': 'str' + } + + self.attribute_map = { + 'is_enabled': 'isEnabled', + 'idp_metadata_content': 'idpMetadataContent', + 'idp_entity_id': 'idpEntityId', + 'opendashboard_url': 'opendashboardUrl', + 'admin_backend_role': 'adminBackendRole', + 'subject_key': 'subjectKey', + 'roles_key': 'rolesKey' + } + + self._is_enabled = None + self._idp_metadata_content = None + self._idp_entity_id = None + self._opendashboard_url = None + self._admin_backend_role = None + self._subject_key = None + self._roles_key = None + + @property + def is_enabled(self): + """ + **[Required]** Gets the is_enabled of this SecuritySamlConfig. + A flag determine whether SAML is enabled + + + :return: The is_enabled of this SecuritySamlConfig. + :rtype: bool + """ + return self._is_enabled + + @is_enabled.setter + def is_enabled(self, is_enabled): + """ + Sets the is_enabled of this SecuritySamlConfig. + A flag determine whether SAML is enabled + + + :param is_enabled: The is_enabled of this SecuritySamlConfig. + :type: bool + """ + self._is_enabled = is_enabled + + @property + def idp_metadata_content(self): + """ + **[Required]** Gets the idp_metadata_content of this SecuritySamlConfig. + The content of identity provider metadata + + + :return: The idp_metadata_content of this SecuritySamlConfig. + :rtype: str + """ + return self._idp_metadata_content + + @idp_metadata_content.setter + def idp_metadata_content(self, idp_metadata_content): + """ + Sets the idp_metadata_content of this SecuritySamlConfig. + The content of identity provider metadata + + + :param idp_metadata_content: The idp_metadata_content of this SecuritySamlConfig. + :type: str + """ + self._idp_metadata_content = idp_metadata_content + + @property + def idp_entity_id(self): + """ + **[Required]** Gets the idp_entity_id of this SecuritySamlConfig. + The unique name for a identity provider entity + + + :return: The idp_entity_id of this SecuritySamlConfig. + :rtype: str + """ + return self._idp_entity_id + + @idp_entity_id.setter + def idp_entity_id(self, idp_entity_id): + """ + Sets the idp_entity_id of this SecuritySamlConfig. + The unique name for a identity provider entity + + + :param idp_entity_id: The idp_entity_id of this SecuritySamlConfig. + :type: str + """ + self._idp_entity_id = idp_entity_id + + @property + def opendashboard_url(self): + """ + Gets the opendashboard_url of this SecuritySamlConfig. + The endpoint of opendashboard + + + :return: The opendashboard_url of this SecuritySamlConfig. + :rtype: str + """ + return self._opendashboard_url + + @opendashboard_url.setter + def opendashboard_url(self, opendashboard_url): + """ + Sets the opendashboard_url of this SecuritySamlConfig. + The endpoint of opendashboard + + + :param opendashboard_url: The opendashboard_url of this SecuritySamlConfig. + :type: str + """ + self._opendashboard_url = opendashboard_url + + @property + def admin_backend_role(self): + """ + Gets the admin_backend_role of this SecuritySamlConfig. + The backend role of admins who have all permissions like local master user + + + :return: The admin_backend_role of this SecuritySamlConfig. + :rtype: str + """ + return self._admin_backend_role + + @admin_backend_role.setter + def admin_backend_role(self, admin_backend_role): + """ + Sets the admin_backend_role of this SecuritySamlConfig. + The backend role of admins who have all permissions like local master user + + + :param admin_backend_role: The admin_backend_role of this SecuritySamlConfig. + :type: str + """ + self._admin_backend_role = admin_backend_role + + @property + def subject_key(self): + """ + Gets the subject_key of this SecuritySamlConfig. + The subject key is used to get username from SAML assertion. By default, it is NameID + + + :return: The subject_key of this SecuritySamlConfig. + :rtype: str + """ + return self._subject_key + + @subject_key.setter + def subject_key(self, subject_key): + """ + Sets the subject_key of this SecuritySamlConfig. + The subject key is used to get username from SAML assertion. By default, it is NameID + + + :param subject_key: The subject_key of this SecuritySamlConfig. + :type: str + """ + self._subject_key = subject_key + + @property + def roles_key(self): + """ + Gets the roles_key of this SecuritySamlConfig. + The roles key is sued to get backend roles from SAML assertion + + + :return: The roles_key of this SecuritySamlConfig. + :rtype: str + """ + return self._roles_key + + @roles_key.setter + def roles_key(self, roles_key): + """ + Sets the roles_key of this SecuritySamlConfig. + The roles key is sued to get backend roles from SAML assertion + + + :param roles_key: The roles_key of this SecuritySamlConfig. + :type: str + """ + self._roles_key = roles_key + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/update_checkin_details.py b/src/oci/opensearch/models/update_checkin_details.py index 164f22cc2b..1f22249c38 100644 --- a/src/oci/opensearch/models/update_checkin_details.py +++ b/src/oci/opensearch/models/update_checkin_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/update_cluster_hardened_image_details.py b/src/oci/opensearch/models/update_cluster_hardened_image_details.py index d75af63d22..b8f8350b15 100644 --- a/src/oci/opensearch/models/update_cluster_hardened_image_details.py +++ b/src/oci/opensearch/models/update_cluster_hardened_image_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/update_cluster_specs_details.py b/src/oci/opensearch/models/update_cluster_specs_details.py new file mode 100644 index 0000000000..e842d41298 --- /dev/null +++ b/src/oci/opensearch/models/update_cluster_specs_details.py @@ -0,0 +1,289 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class UpdateClusterSpecsDetails(object): + """ + update cluster specs in Kiev. + """ + + def __init__(self, **kwargs): + """ + Initializes a new UpdateClusterSpecsDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param cluster_id: + The value to assign to the cluster_id property of this UpdateClusterSpecsDetails. + :type cluster_id: str + + :param master_node_host_ocpu_count: + The value to assign to the master_node_host_ocpu_count property of this UpdateClusterSpecsDetails. + :type master_node_host_ocpu_count: int + + :param master_node_host_memory_gb: + The value to assign to the master_node_host_memory_gb property of this UpdateClusterSpecsDetails. + :type master_node_host_memory_gb: int + + :param data_node_host_ocpu_count: + The value to assign to the data_node_host_ocpu_count property of this UpdateClusterSpecsDetails. + :type data_node_host_ocpu_count: int + + :param data_node_host_memory_gb: + The value to assign to the data_node_host_memory_gb property of this UpdateClusterSpecsDetails. + :type data_node_host_memory_gb: int + + :param software_version: + The value to assign to the software_version property of this UpdateClusterSpecsDetails. + :type software_version: str + + :param dashboard_software_version: + The value to assign to the dashboard_software_version property of this UpdateClusterSpecsDetails. + :type dashboard_software_version: str + + :param cluster_private_endpoint: + The value to assign to the cluster_private_endpoint property of this UpdateClusterSpecsDetails. + :type cluster_private_endpoint: str + + """ + self.swagger_types = { + 'cluster_id': 'str', + 'master_node_host_ocpu_count': 'int', + 'master_node_host_memory_gb': 'int', + 'data_node_host_ocpu_count': 'int', + 'data_node_host_memory_gb': 'int', + 'software_version': 'str', + 'dashboard_software_version': 'str', + 'cluster_private_endpoint': 'str' + } + + self.attribute_map = { + 'cluster_id': 'clusterId', + 'master_node_host_ocpu_count': 'masterNodeHostOcpuCount', + 'master_node_host_memory_gb': 'masterNodeHostMemoryGB', + 'data_node_host_ocpu_count': 'dataNodeHostOcpuCount', + 'data_node_host_memory_gb': 'dataNodeHostMemoryGB', + 'software_version': 'softwareVersion', + 'dashboard_software_version': 'dashboardSoftwareVersion', + 'cluster_private_endpoint': 'clusterPrivateEndpoint' + } + + self._cluster_id = None + self._master_node_host_ocpu_count = None + self._master_node_host_memory_gb = None + self._data_node_host_ocpu_count = None + self._data_node_host_memory_gb = None + self._software_version = None + self._dashboard_software_version = None + self._cluster_private_endpoint = None + + @property + def cluster_id(self): + """ + **[Required]** Gets the cluster_id of this UpdateClusterSpecsDetails. + OCID of the Opensearch Cluster. + + + :return: The cluster_id of this UpdateClusterSpecsDetails. + :rtype: str + """ + return self._cluster_id + + @cluster_id.setter + def cluster_id(self, cluster_id): + """ + Sets the cluster_id of this UpdateClusterSpecsDetails. + OCID of the Opensearch Cluster. + + + :param cluster_id: The cluster_id of this UpdateClusterSpecsDetails. + :type: str + """ + self._cluster_id = cluster_id + + @property + def master_node_host_ocpu_count(self): + """ + Gets the master_node_host_ocpu_count of this UpdateClusterSpecsDetails. + Updated value of OCPU's configured for master nodes of the cluster. + + + :return: The master_node_host_ocpu_count of this UpdateClusterSpecsDetails. + :rtype: int + """ + return self._master_node_host_ocpu_count + + @master_node_host_ocpu_count.setter + def master_node_host_ocpu_count(self, master_node_host_ocpu_count): + """ + Sets the master_node_host_ocpu_count of this UpdateClusterSpecsDetails. + Updated value of OCPU's configured for master nodes of the cluster. + + + :param master_node_host_ocpu_count: The master_node_host_ocpu_count of this UpdateClusterSpecsDetails. + :type: int + """ + self._master_node_host_ocpu_count = master_node_host_ocpu_count + + @property + def master_node_host_memory_gb(self): + """ + Gets the master_node_host_memory_gb of this UpdateClusterSpecsDetails. + Updated value of memory for master nodes in the cluster (in GB). + + + :return: The master_node_host_memory_gb of this UpdateClusterSpecsDetails. + :rtype: int + """ + return self._master_node_host_memory_gb + + @master_node_host_memory_gb.setter + def master_node_host_memory_gb(self, master_node_host_memory_gb): + """ + Sets the master_node_host_memory_gb of this UpdateClusterSpecsDetails. + Updated value of memory for master nodes in the cluster (in GB). + + + :param master_node_host_memory_gb: The master_node_host_memory_gb of this UpdateClusterSpecsDetails. + :type: int + """ + self._master_node_host_memory_gb = master_node_host_memory_gb + + @property + def data_node_host_ocpu_count(self): + """ + Gets the data_node_host_ocpu_count of this UpdateClusterSpecsDetails. + Updated value of OCPU's configured for data nodes of the cluster. + + + :return: The data_node_host_ocpu_count of this UpdateClusterSpecsDetails. + :rtype: int + """ + return self._data_node_host_ocpu_count + + @data_node_host_ocpu_count.setter + def data_node_host_ocpu_count(self, data_node_host_ocpu_count): + """ + Sets the data_node_host_ocpu_count of this UpdateClusterSpecsDetails. + Updated value of OCPU's configured for data nodes of the cluster. + + + :param data_node_host_ocpu_count: The data_node_host_ocpu_count of this UpdateClusterSpecsDetails. + :type: int + """ + self._data_node_host_ocpu_count = data_node_host_ocpu_count + + @property + def data_node_host_memory_gb(self): + """ + Gets the data_node_host_memory_gb of this UpdateClusterSpecsDetails. + Updated value of memory for data nodes in the cluster (in GB). + + + :return: The data_node_host_memory_gb of this UpdateClusterSpecsDetails. + :rtype: int + """ + return self._data_node_host_memory_gb + + @data_node_host_memory_gb.setter + def data_node_host_memory_gb(self, data_node_host_memory_gb): + """ + Sets the data_node_host_memory_gb of this UpdateClusterSpecsDetails. + Updated value of memory for data nodes in the cluster (in GB). + + + :param data_node_host_memory_gb: The data_node_host_memory_gb of this UpdateClusterSpecsDetails. + :type: int + """ + self._data_node_host_memory_gb = data_node_host_memory_gb + + @property + def software_version(self): + """ + Gets the software_version of this UpdateClusterSpecsDetails. + Updated version of the software the cluster is currently running. + + + :return: The software_version of this UpdateClusterSpecsDetails. + :rtype: str + """ + return self._software_version + + @software_version.setter + def software_version(self, software_version): + """ + Sets the software_version of this UpdateClusterSpecsDetails. + Updated version of the software the cluster is currently running. + + + :param software_version: The software_version of this UpdateClusterSpecsDetails. + :type: str + """ + self._software_version = software_version + + @property + def dashboard_software_version(self): + """ + Gets the dashboard_software_version of this UpdateClusterSpecsDetails. + Updated version of the dashboard software the cluster is currently running. + + + :return: The dashboard_software_version of this UpdateClusterSpecsDetails. + :rtype: str + """ + return self._dashboard_software_version + + @dashboard_software_version.setter + def dashboard_software_version(self, dashboard_software_version): + """ + Sets the dashboard_software_version of this UpdateClusterSpecsDetails. + Updated version of the dashboard software the cluster is currently running. + + + :param dashboard_software_version: The dashboard_software_version of this UpdateClusterSpecsDetails. + :type: str + """ + self._dashboard_software_version = dashboard_software_version + + @property + def cluster_private_endpoint(self): + """ + Gets the cluster_private_endpoint of this UpdateClusterSpecsDetails. + Updated Private endpoint of cluster. + + + :return: The cluster_private_endpoint of this UpdateClusterSpecsDetails. + :rtype: str + """ + return self._cluster_private_endpoint + + @cluster_private_endpoint.setter + def cluster_private_endpoint(self, cluster_private_endpoint): + """ + Sets the cluster_private_endpoint of this UpdateClusterSpecsDetails. + Updated Private endpoint of cluster. + + + :param cluster_private_endpoint: The cluster_private_endpoint of this UpdateClusterSpecsDetails. + :type: str + """ + self._cluster_private_endpoint = cluster_private_endpoint + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/update_cluster_status_details.py b/src/oci/opensearch/models/update_cluster_status_details.py index b2fb0d27d4..1f3a61955f 100644 --- a/src/oci/opensearch/models/update_cluster_status_details.py +++ b/src/oci/opensearch/models/update_cluster_status_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/update_maintenance_details.py b/src/oci/opensearch/models/update_maintenance_details.py new file mode 100644 index 0000000000..4050fe8b80 --- /dev/null +++ b/src/oci/opensearch/models/update_maintenance_details.py @@ -0,0 +1,72 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class UpdateMaintenanceDetails(object): + """ + Details for update of maintenance details + """ + + def __init__(self, **kwargs): + """ + Initializes a new UpdateMaintenanceDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param notification_email_ids: + The value to assign to the notification_email_ids property of this UpdateMaintenanceDetails. + :type notification_email_ids: list[str] + + """ + self.swagger_types = { + 'notification_email_ids': 'list[str]' + } + + self.attribute_map = { + 'notification_email_ids': 'notificationEmailIds' + } + + self._notification_email_ids = None + + @property + def notification_email_ids(self): + """ + Gets the notification_email_ids of this UpdateMaintenanceDetails. + The Email IDs given by the customer to get notified about maintenance activities + + + :return: The notification_email_ids of this UpdateMaintenanceDetails. + :rtype: list[str] + """ + return self._notification_email_ids + + @notification_email_ids.setter + def notification_email_ids(self, notification_email_ids): + """ + Sets the notification_email_ids of this UpdateMaintenanceDetails. + The Email IDs given by the customer to get notified about maintenance activities + + + :param notification_email_ids: The notification_email_ids of this UpdateMaintenanceDetails. + :type: list[str] + """ + self._notification_email_ids = notification_email_ids + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/update_opensearch_cluster_backup_details.py b/src/oci/opensearch/models/update_opensearch_cluster_backup_details.py index 9d81ec4656..d143fd530f 100644 --- a/src/oci/opensearch/models/update_opensearch_cluster_backup_details.py +++ b/src/oci/opensearch/models/update_opensearch_cluster_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/update_opensearch_cluster_details.py b/src/oci/opensearch/models/update_opensearch_cluster_details.py index d4fee67559..b2bc73b63b 100644 --- a/src/oci/opensearch/models/update_opensearch_cluster_details.py +++ b/src/oci/opensearch/models/update_opensearch_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 @@ -54,6 +54,26 @@ def __init__(self, **kwargs): The value to assign to the security_master_user_password_hash property of this UpdateOpensearchClusterDetails. :type security_master_user_password_hash: str + :param security_saml_config: + The value to assign to the security_saml_config property of this UpdateOpensearchClusterDetails. + :type security_saml_config: oci.opensearch.models.SecuritySamlConfig + + :param backup_policy: + The value to assign to the backup_policy property of this UpdateOpensearchClusterDetails. + :type backup_policy: oci.opensearch.models.BackupPolicy + + :param reverse_connection_endpoint_customer_ips: + The value to assign to the reverse_connection_endpoint_customer_ips property of this UpdateOpensearchClusterDetails. + :type reverse_connection_endpoint_customer_ips: list[str] + + :param outbound_cluster_config: + The value to assign to the outbound_cluster_config property of this UpdateOpensearchClusterDetails. + :type outbound_cluster_config: oci.opensearch.models.OutboundClusterConfig + + :param maintenance_details: + The value to assign to the maintenance_details property of this UpdateOpensearchClusterDetails. + :type maintenance_details: oci.opensearch.models.UpdateMaintenanceDetails + :param freeform_tags: The value to assign to the freeform_tags property of this UpdateOpensearchClusterDetails. :type freeform_tags: dict(str, str) @@ -69,6 +89,11 @@ def __init__(self, **kwargs): 'security_mode': 'str', 'security_master_user_name': 'str', 'security_master_user_password_hash': 'str', + 'security_saml_config': 'SecuritySamlConfig', + 'backup_policy': 'BackupPolicy', + 'reverse_connection_endpoint_customer_ips': 'list[str]', + 'outbound_cluster_config': 'OutboundClusterConfig', + 'maintenance_details': 'UpdateMaintenanceDetails', 'freeform_tags': 'dict(str, str)', 'defined_tags': 'dict(str, dict(str, object))' } @@ -79,6 +104,11 @@ def __init__(self, **kwargs): 'security_mode': 'securityMode', 'security_master_user_name': 'securityMasterUserName', 'security_master_user_password_hash': 'securityMasterUserPasswordHash', + 'security_saml_config': 'securitySamlConfig', + 'backup_policy': 'backupPolicy', + 'reverse_connection_endpoint_customer_ips': 'reverseConnectionEndpointCustomerIps', + 'outbound_cluster_config': 'outboundClusterConfig', + 'maintenance_details': 'maintenanceDetails', 'freeform_tags': 'freeformTags', 'defined_tags': 'definedTags' } @@ -88,6 +118,11 @@ def __init__(self, **kwargs): self._security_mode = None self._security_master_user_name = None self._security_master_user_password_hash = None + self._security_saml_config = None + self._backup_policy = None + self._reverse_connection_endpoint_customer_ips = None + self._outbound_cluster_config = None + self._maintenance_details = None self._freeform_tags = None self._defined_tags = None @@ -214,6 +249,110 @@ def security_master_user_password_hash(self, security_master_user_password_hash) """ self._security_master_user_password_hash = security_master_user_password_hash + @property + def security_saml_config(self): + """ + Gets the security_saml_config of this UpdateOpensearchClusterDetails. + + :return: The security_saml_config of this UpdateOpensearchClusterDetails. + :rtype: oci.opensearch.models.SecuritySamlConfig + """ + return self._security_saml_config + + @security_saml_config.setter + def security_saml_config(self, security_saml_config): + """ + Sets the security_saml_config of this UpdateOpensearchClusterDetails. + + :param security_saml_config: The security_saml_config of this UpdateOpensearchClusterDetails. + :type: oci.opensearch.models.SecuritySamlConfig + """ + self._security_saml_config = security_saml_config + + @property + def backup_policy(self): + """ + Gets the backup_policy of this UpdateOpensearchClusterDetails. + + :return: The backup_policy of this UpdateOpensearchClusterDetails. + :rtype: oci.opensearch.models.BackupPolicy + """ + return self._backup_policy + + @backup_policy.setter + def backup_policy(self, backup_policy): + """ + Sets the backup_policy of this UpdateOpensearchClusterDetails. + + :param backup_policy: The backup_policy of this UpdateOpensearchClusterDetails. + :type: oci.opensearch.models.BackupPolicy + """ + self._backup_policy = backup_policy + + @property + def reverse_connection_endpoint_customer_ips(self): + """ + Gets the reverse_connection_endpoint_customer_ips of this UpdateOpensearchClusterDetails. + The customer IP addresses of the endpoint in customer VCN + + + :return: The reverse_connection_endpoint_customer_ips of this UpdateOpensearchClusterDetails. + :rtype: list[str] + """ + return self._reverse_connection_endpoint_customer_ips + + @reverse_connection_endpoint_customer_ips.setter + def reverse_connection_endpoint_customer_ips(self, reverse_connection_endpoint_customer_ips): + """ + Sets the reverse_connection_endpoint_customer_ips of this UpdateOpensearchClusterDetails. + The customer IP addresses of the endpoint in customer VCN + + + :param reverse_connection_endpoint_customer_ips: The reverse_connection_endpoint_customer_ips of this UpdateOpensearchClusterDetails. + :type: list[str] + """ + self._reverse_connection_endpoint_customer_ips = reverse_connection_endpoint_customer_ips + + @property + def outbound_cluster_config(self): + """ + Gets the outbound_cluster_config of this UpdateOpensearchClusterDetails. + + :return: The outbound_cluster_config of this UpdateOpensearchClusterDetails. + :rtype: oci.opensearch.models.OutboundClusterConfig + """ + return self._outbound_cluster_config + + @outbound_cluster_config.setter + def outbound_cluster_config(self, outbound_cluster_config): + """ + Sets the outbound_cluster_config of this UpdateOpensearchClusterDetails. + + :param outbound_cluster_config: The outbound_cluster_config of this UpdateOpensearchClusterDetails. + :type: oci.opensearch.models.OutboundClusterConfig + """ + self._outbound_cluster_config = outbound_cluster_config + + @property + def maintenance_details(self): + """ + Gets the maintenance_details of this UpdateOpensearchClusterDetails. + + :return: The maintenance_details of this UpdateOpensearchClusterDetails. + :rtype: oci.opensearch.models.UpdateMaintenanceDetails + """ + return self._maintenance_details + + @maintenance_details.setter + def maintenance_details(self, maintenance_details): + """ + Sets the maintenance_details of this UpdateOpensearchClusterDetails. + + :param maintenance_details: The maintenance_details of this UpdateOpensearchClusterDetails. + :type: oci.opensearch.models.UpdateMaintenanceDetails + """ + self._maintenance_details = maintenance_details + @property def freeform_tags(self): """ diff --git a/src/oci/opensearch/models/update_opensearch_cluster_pipeline_details.py b/src/oci/opensearch/models/update_opensearch_cluster_pipeline_details.py new file mode 100644 index 0000000000..8f8d2b6355 --- /dev/null +++ b/src/oci/opensearch/models/update_opensearch_cluster_pipeline_details.py @@ -0,0 +1,227 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class UpdateOpensearchClusterPipelineDetails(object): + """ + The configuration to update on an existing OpenSearch cluster pipeline. You can only edit capaccity limits and pipeline configuration. You can't edit its name or network settings. + """ + + def __init__(self, **kwargs): + """ + Initializes a new UpdateOpensearchClusterPipelineDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param display_name: + The value to assign to the display_name property of this UpdateOpensearchClusterPipelineDetails. + :type display_name: str + + :param max_ocpu_count: + The value to assign to the max_ocpu_count property of this UpdateOpensearchClusterPipelineDetails. + :type max_ocpu_count: int + + :param min_ocpu_count: + The value to assign to the min_ocpu_count property of this UpdateOpensearchClusterPipelineDetails. + :type min_ocpu_count: int + + :param max_memory_gb: + The value to assign to the max_memory_gb property of this UpdateOpensearchClusterPipelineDetails. + :type max_memory_gb: int + + :param min_memory_gb: + The value to assign to the min_memory_gb property of this UpdateOpensearchClusterPipelineDetails. + :type min_memory_gb: int + + :param pipeline_configuration_body: + The value to assign to the pipeline_configuration_body property of this UpdateOpensearchClusterPipelineDetails. + :type pipeline_configuration_body: str + + """ + self.swagger_types = { + 'display_name': 'str', + 'max_ocpu_count': 'int', + 'min_ocpu_count': 'int', + 'max_memory_gb': 'int', + 'min_memory_gb': 'int', + 'pipeline_configuration_body': 'str' + } + + self.attribute_map = { + 'display_name': 'displayName', + 'max_ocpu_count': 'maxOcpuCount', + 'min_ocpu_count': 'minOcpuCount', + 'max_memory_gb': 'maxMemoryGB', + 'min_memory_gb': 'minMemoryGB', + 'pipeline_configuration_body': 'pipelineConfigurationBody' + } + + self._display_name = None + self._max_ocpu_count = None + self._min_ocpu_count = None + self._max_memory_gb = None + self._min_memory_gb = None + self._pipeline_configuration_body = None + + @property + def display_name(self): + """ + **[Required]** Gets the display_name of this UpdateOpensearchClusterPipelineDetails. + The name of the pipeline. Avoid entering confidential information. + + + :return: The display_name of this UpdateOpensearchClusterPipelineDetails. + :rtype: str + """ + return self._display_name + + @display_name.setter + def display_name(self, display_name): + """ + Sets the display_name of this UpdateOpensearchClusterPipelineDetails. + The name of the pipeline. Avoid entering confidential information. + + + :param display_name: The display_name of this UpdateOpensearchClusterPipelineDetails. + :type: str + """ + self._display_name = display_name + + @property + def max_ocpu_count(self): + """ + Gets the max_ocpu_count of this UpdateOpensearchClusterPipelineDetails. + The maximum pipeline capacity, in OCPUs. + + + :return: The max_ocpu_count of this UpdateOpensearchClusterPipelineDetails. + :rtype: int + """ + return self._max_ocpu_count + + @max_ocpu_count.setter + def max_ocpu_count(self, max_ocpu_count): + """ + Sets the max_ocpu_count of this UpdateOpensearchClusterPipelineDetails. + The maximum pipeline capacity, in OCPUs. + + + :param max_ocpu_count: The max_ocpu_count of this UpdateOpensearchClusterPipelineDetails. + :type: int + """ + self._max_ocpu_count = max_ocpu_count + + @property + def min_ocpu_count(self): + """ + Gets the min_ocpu_count of this UpdateOpensearchClusterPipelineDetails. + The minimum pipeline capacity, in OCPUs. + + + :return: The min_ocpu_count of this UpdateOpensearchClusterPipelineDetails. + :rtype: int + """ + return self._min_ocpu_count + + @min_ocpu_count.setter + def min_ocpu_count(self, min_ocpu_count): + """ + Sets the min_ocpu_count of this UpdateOpensearchClusterPipelineDetails. + The minimum pipeline capacity, in OCPUs. + + + :param min_ocpu_count: The min_ocpu_count of this UpdateOpensearchClusterPipelineDetails. + :type: int + """ + self._min_ocpu_count = min_ocpu_count + + @property + def max_memory_gb(self): + """ + Gets the max_memory_gb of this UpdateOpensearchClusterPipelineDetails. + The maximum amount of memory in GB, for the pipeline. + + + :return: The max_memory_gb of this UpdateOpensearchClusterPipelineDetails. + :rtype: int + """ + return self._max_memory_gb + + @max_memory_gb.setter + def max_memory_gb(self, max_memory_gb): + """ + Sets the max_memory_gb of this UpdateOpensearchClusterPipelineDetails. + The maximum amount of memory in GB, for the pipeline. + + + :param max_memory_gb: The max_memory_gb of this UpdateOpensearchClusterPipelineDetails. + :type: int + """ + self._max_memory_gb = max_memory_gb + + @property + def min_memory_gb(self): + """ + Gets the min_memory_gb of this UpdateOpensearchClusterPipelineDetails. + The minimum amount of memory in GB, for the pipeline. + + + :return: The min_memory_gb of this UpdateOpensearchClusterPipelineDetails. + :rtype: int + """ + return self._min_memory_gb + + @min_memory_gb.setter + def min_memory_gb(self, min_memory_gb): + """ + Sets the min_memory_gb of this UpdateOpensearchClusterPipelineDetails. + The minimum amount of memory in GB, for the pipeline. + + + :param min_memory_gb: The min_memory_gb of this UpdateOpensearchClusterPipelineDetails. + :type: int + """ + self._min_memory_gb = min_memory_gb + + @property + def pipeline_configuration_body(self): + """ + Gets the pipeline_configuration_body of this UpdateOpensearchClusterPipelineDetails. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :return: The pipeline_configuration_body of this UpdateOpensearchClusterPipelineDetails. + :rtype: str + """ + return self._pipeline_configuration_body + + @pipeline_configuration_body.setter + def pipeline_configuration_body(self, pipeline_configuration_body): + """ + Sets the pipeline_configuration_body of this UpdateOpensearchClusterPipelineDetails. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :param pipeline_configuration_body: The pipeline_configuration_body of this UpdateOpensearchClusterPipelineDetails. + :type: str + """ + self._pipeline_configuration_body = pipeline_configuration_body + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/upgrade_open_search_cluster_details.py b/src/oci/opensearch/models/upgrade_open_search_cluster_details.py new file mode 100644 index 0000000000..173e102ada --- /dev/null +++ b/src/oci/opensearch/models/upgrade_open_search_cluster_details.py @@ -0,0 +1,282 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class UpgradeOpenSearchClusterDetails(object): + """ + Minor or major version upgrade of a cluster. + """ + + #: A constant which can be used with the upgrade_type property of a UpgradeOpenSearchClusterDetails. + #: This constant has a value of "MINOR" + UPGRADE_TYPE_MINOR = "MINOR" + + #: A constant which can be used with the upgrade_type property of a UpgradeOpenSearchClusterDetails. + #: This constant has a value of "MAJOR" + UPGRADE_TYPE_MAJOR = "MAJOR" + + def __init__(self, **kwargs): + """ + Initializes a new UpgradeOpenSearchClusterDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param original_cluster_display_name: + The value to assign to the original_cluster_display_name property of this UpgradeOpenSearchClusterDetails. + :type original_cluster_display_name: str + + :param desired_software_version: + The value to assign to the desired_software_version property of this UpgradeOpenSearchClusterDetails. + :type desired_software_version: str + + :param upgrade_type: + The value to assign to the upgrade_type property of this UpgradeOpenSearchClusterDetails. + Allowed values for this property are: "MINOR", "MAJOR" + :type upgrade_type: str + + :param is_clone: + The value to assign to the is_clone property of this UpgradeOpenSearchClusterDetails. + :type is_clone: bool + + :param freeform_tags: + The value to assign to the freeform_tags property of this UpgradeOpenSearchClusterDetails. + :type freeform_tags: dict(str, str) + + :param defined_tags: + The value to assign to the defined_tags property of this UpgradeOpenSearchClusterDetails. + :type defined_tags: dict(str, dict(str, object)) + + :param system_tags: + The value to assign to the system_tags property of this UpgradeOpenSearchClusterDetails. + :type system_tags: dict(str, dict(str, object)) + + """ + self.swagger_types = { + 'original_cluster_display_name': 'str', + 'desired_software_version': 'str', + 'upgrade_type': 'str', + 'is_clone': 'bool', + 'freeform_tags': 'dict(str, str)', + 'defined_tags': 'dict(str, dict(str, object))', + 'system_tags': 'dict(str, dict(str, object))' + } + + self.attribute_map = { + 'original_cluster_display_name': 'originalClusterDisplayName', + 'desired_software_version': 'desiredSoftwareVersion', + 'upgrade_type': 'upgradeType', + 'is_clone': 'isClone', + 'freeform_tags': 'freeformTags', + 'defined_tags': 'definedTags', + 'system_tags': 'systemTags' + } + + self._original_cluster_display_name = None + self._desired_software_version = None + self._upgrade_type = None + self._is_clone = None + self._freeform_tags = None + self._defined_tags = None + self._system_tags = None + + @property + def original_cluster_display_name(self): + """ + **[Required]** Gets the original_cluster_display_name of this UpgradeOpenSearchClusterDetails. + The display name of the original cluster. + This is required to validate that the cluster ID has the same display name. + + + :return: The original_cluster_display_name of this UpgradeOpenSearchClusterDetails. + :rtype: str + """ + return self._original_cluster_display_name + + @original_cluster_display_name.setter + def original_cluster_display_name(self, original_cluster_display_name): + """ + Sets the original_cluster_display_name of this UpgradeOpenSearchClusterDetails. + The display name of the original cluster. + This is required to validate that the cluster ID has the same display name. + + + :param original_cluster_display_name: The original_cluster_display_name of this UpgradeOpenSearchClusterDetails. + :type: str + """ + self._original_cluster_display_name = original_cluster_display_name + + @property + def desired_software_version(self): + """ + **[Required]** Gets the desired_software_version of this UpgradeOpenSearchClusterDetails. + The software version the cluster is desired. + + + :return: The desired_software_version of this UpgradeOpenSearchClusterDetails. + :rtype: str + """ + return self._desired_software_version + + @desired_software_version.setter + def desired_software_version(self, desired_software_version): + """ + Sets the desired_software_version of this UpgradeOpenSearchClusterDetails. + The software version the cluster is desired. + + + :param desired_software_version: The desired_software_version of this UpgradeOpenSearchClusterDetails. + :type: str + """ + self._desired_software_version = desired_software_version + + @property + def upgrade_type(self): + """ + **[Required]** Gets the upgrade_type of this UpgradeOpenSearchClusterDetails. + The upgrade type of cluster (major or minor). + + Allowed values for this property are: "MINOR", "MAJOR" + + + :return: The upgrade_type of this UpgradeOpenSearchClusterDetails. + :rtype: str + """ + return self._upgrade_type + + @upgrade_type.setter + def upgrade_type(self, upgrade_type): + """ + Sets the upgrade_type of this UpgradeOpenSearchClusterDetails. + The upgrade type of cluster (major or minor). + + + :param upgrade_type: The upgrade_type of this UpgradeOpenSearchClusterDetails. + :type: str + """ + allowed_values = ["MINOR", "MAJOR"] + if not value_allowed_none_or_none_sentinel(upgrade_type, allowed_values): + raise ValueError( + f"Invalid value for `upgrade_type`, must be None or one of {allowed_values}" + ) + self._upgrade_type = upgrade_type + + @property + def is_clone(self): + """ + Gets the is_clone of this UpgradeOpenSearchClusterDetails. + The cluster would be cloned for true and updated for false with the provided version. + + + :return: The is_clone of this UpgradeOpenSearchClusterDetails. + :rtype: bool + """ + return self._is_clone + + @is_clone.setter + def is_clone(self, is_clone): + """ + Sets the is_clone of this UpgradeOpenSearchClusterDetails. + The cluster would be cloned for true and updated for false with the provided version. + + + :param is_clone: The is_clone of this UpgradeOpenSearchClusterDetails. + :type: bool + """ + self._is_clone = is_clone + + @property + def freeform_tags(self): + """ + Gets the freeform_tags of this UpgradeOpenSearchClusterDetails. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :return: The freeform_tags of this UpgradeOpenSearchClusterDetails. + :rtype: dict(str, str) + """ + return self._freeform_tags + + @freeform_tags.setter + def freeform_tags(self, freeform_tags): + """ + Sets the freeform_tags of this UpgradeOpenSearchClusterDetails. + Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. + Example: `{\"bar-key\": \"value\"}` + + + :param freeform_tags: The freeform_tags of this UpgradeOpenSearchClusterDetails. + :type: dict(str, str) + """ + self._freeform_tags = freeform_tags + + @property + def defined_tags(self): + """ + Gets the defined_tags of this UpgradeOpenSearchClusterDetails. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :return: The defined_tags of this UpgradeOpenSearchClusterDetails. + :rtype: dict(str, dict(str, object)) + """ + return self._defined_tags + + @defined_tags.setter + def defined_tags(self, defined_tags): + """ + Sets the defined_tags of this UpgradeOpenSearchClusterDetails. + Defined tags for this resource. Each key is predefined and scoped to a namespace. + Example: `{\"foo-namespace\": {\"bar-key\": \"value\"}}` + + + :param defined_tags: The defined_tags of this UpgradeOpenSearchClusterDetails. + :type: dict(str, dict(str, object)) + """ + self._defined_tags = defined_tags + + @property + def system_tags(self): + """ + Gets the system_tags of this UpgradeOpenSearchClusterDetails. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :return: The system_tags of this UpgradeOpenSearchClusterDetails. + :rtype: dict(str, dict(str, object)) + """ + return self._system_tags + + @system_tags.setter + def system_tags(self, system_tags): + """ + Sets the system_tags of this UpgradeOpenSearchClusterDetails. + Usage of system tag keys. These predefined keys are scoped to namespaces. + Example: `{\"orcl-cloud\": {\"free-tier-retained\": \"true\"}}` + + + :param system_tags: The system_tags of this UpgradeOpenSearchClusterDetails. + :type: dict(str, dict(str, object)) + """ + self._system_tags = system_tags + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/validate_opensearch_pipeline_details.py b/src/oci/opensearch/models/validate_opensearch_pipeline_details.py new file mode 100644 index 0000000000..f8eedeed5d --- /dev/null +++ b/src/oci/opensearch/models/validate_opensearch_pipeline_details.py @@ -0,0 +1,103 @@ +# coding: utf-8 +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. +# This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. + +# NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 + + +from oci.util import formatted_flat_dict, NONE_SENTINEL, value_allowed_none_or_none_sentinel # noqa: F401 +from oci.decorators import init_model_state_from_kwargs + + +@init_model_state_from_kwargs +class ValidateOpensearchPipelineDetails(object): + """ + The configuration details for validating pipeline configuration provided as input. + """ + + def __init__(self, **kwargs): + """ + Initializes a new ValidateOpensearchPipelineDetails object with values from keyword arguments. + The following keyword arguments are supported (corresponding to the getters/setters of this class): + + :param compartment_id: + The value to assign to the compartment_id property of this ValidateOpensearchPipelineDetails. + :type compartment_id: str + + :param pipeline_configuration_body: + The value to assign to the pipeline_configuration_body property of this ValidateOpensearchPipelineDetails. + :type pipeline_configuration_body: str + + """ + self.swagger_types = { + 'compartment_id': 'str', + 'pipeline_configuration_body': 'str' + } + + self.attribute_map = { + 'compartment_id': 'compartmentId', + 'pipeline_configuration_body': 'pipelineConfigurationBody' + } + + self._compartment_id = None + self._pipeline_configuration_body = None + + @property + def compartment_id(self): + """ + **[Required]** Gets the compartment_id of this ValidateOpensearchPipelineDetails. + The OCID of the compartment where the pipeline will be created. + + + :return: The compartment_id of this ValidateOpensearchPipelineDetails. + :rtype: str + """ + return self._compartment_id + + @compartment_id.setter + def compartment_id(self, compartment_id): + """ + Sets the compartment_id of this ValidateOpensearchPipelineDetails. + The OCID of the compartment where the pipeline will be created. + + + :param compartment_id: The compartment_id of this ValidateOpensearchPipelineDetails. + :type: str + """ + self._compartment_id = compartment_id + + @property + def pipeline_configuration_body(self): + """ + **[Required]** Gets the pipeline_configuration_body of this ValidateOpensearchPipelineDetails. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :return: The pipeline_configuration_body of this ValidateOpensearchPipelineDetails. + :rtype: str + """ + return self._pipeline_configuration_body + + @pipeline_configuration_body.setter + def pipeline_configuration_body(self, pipeline_configuration_body): + """ + Sets the pipeline_configuration_body of this ValidateOpensearchPipelineDetails. + The pipeline configuration in YAML format. The command accepts the pipeline configuration as a string or within a .yaml file. If you provide the configuration as a string, each new line must be escaped with \\. + + + :param pipeline_configuration_body: The pipeline_configuration_body of this ValidateOpensearchPipelineDetails. + :type: str + """ + self._pipeline_configuration_body = pipeline_configuration_body + + def __repr__(self): + return formatted_flat_dict(self) + + def __eq__(self, other): + if other is None: + return False + + return self.__dict__ == other.__dict__ + + def __ne__(self, other): + return not self == other diff --git a/src/oci/opensearch/models/work_request.py b/src/oci/opensearch/models/work_request.py index 90cefa50ed..22ab53f285 100644 --- a/src/oci/opensearch/models/work_request.py +++ b/src/oci/opensearch/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 @@ -51,10 +51,34 @@ class WorkRequest(object): #: This constant has a value of "DELETE_OPENSEARCH_CLUSTER_BACKUP" OPERATION_TYPE_DELETE_OPENSEARCH_CLUSTER_BACKUP = "DELETE_OPENSEARCH_CLUSTER_BACKUP" + #: A constant which can be used with the operation_type property of a WorkRequest. + #: This constant has a value of "CREATE_OPENSEARCH_PIPELINE" + OPERATION_TYPE_CREATE_OPENSEARCH_PIPELINE = "CREATE_OPENSEARCH_PIPELINE" + + #: A constant which can be used with the operation_type property of a WorkRequest. + #: This constant has a value of "UPDATE_OPENSEARCH_PIPELINE" + OPERATION_TYPE_UPDATE_OPENSEARCH_PIPELINE = "UPDATE_OPENSEARCH_PIPELINE" + + #: A constant which can be used with the operation_type property of a WorkRequest. + #: This constant has a value of "DELETE_OPENSEARCH_PIPELINE" + OPERATION_TYPE_DELETE_OPENSEARCH_PIPELINE = "DELETE_OPENSEARCH_PIPELINE" + #: A constant which can be used with the operation_type property of a WorkRequest. #: This constant has a value of "UPDATE_OPENSEARCH_CLUSTER_SECURITY_CONFIG" OPERATION_TYPE_UPDATE_OPENSEARCH_CLUSTER_SECURITY_CONFIG = "UPDATE_OPENSEARCH_CLUSTER_SECURITY_CONFIG" + #: A constant which can be used with the operation_type property of a WorkRequest. + #: This constant has a value of "UPDATE_OPENSEARCH_CROSS_CLUSTER_CONFIG" + OPERATION_TYPE_UPDATE_OPENSEARCH_CROSS_CLUSTER_CONFIG = "UPDATE_OPENSEARCH_CROSS_CLUSTER_CONFIG" + + #: A constant which can be used with the operation_type property of a WorkRequest. + #: This constant has a value of "UPDATE_OPENSEARCH_CLUSTER_REVERSE_CONNECTION_ENDPOINTS" + OPERATION_TYPE_UPDATE_OPENSEARCH_CLUSTER_REVERSE_CONNECTION_ENDPOINTS = "UPDATE_OPENSEARCH_CLUSTER_REVERSE_CONNECTION_ENDPOINTS" + + #: A constant which can be used with the operation_type property of a WorkRequest. + #: This constant has a value of "CONFIGURE_REMOTE_CLUSTER" + OPERATION_TYPE_CONFIGURE_REMOTE_CLUSTER = "CONFIGURE_REMOTE_CLUSTER" + #: A constant which can be used with the status property of a WorkRequest. #: This constant has a value of "ACCEPTED" STATUS_ACCEPTED = "ACCEPTED" @@ -86,7 +110,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_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER", "DELETE_OPENSEARCH_CLUSTER", "MOVE_OPENSEARCH_CLUSTER", "RESTORE_OPENSEARCH_CLUSTER", "BACKUP_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER_BACKUP", "MOVE_OPENSEARCH_CLUSTER_BACKUP", "DELETE_OPENSEARCH_CLUSTER_BACKUP", "UPDATE_OPENSEARCH_CLUSTER_SECURITY_CONFIG", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "CREATE_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER", "DELETE_OPENSEARCH_CLUSTER", "MOVE_OPENSEARCH_CLUSTER", "RESTORE_OPENSEARCH_CLUSTER", "BACKUP_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER_BACKUP", "MOVE_OPENSEARCH_CLUSTER_BACKUP", "DELETE_OPENSEARCH_CLUSTER_BACKUP", "CREATE_OPENSEARCH_PIPELINE", "UPDATE_OPENSEARCH_PIPELINE", "DELETE_OPENSEARCH_PIPELINE", "UPDATE_OPENSEARCH_CLUSTER_SECURITY_CONFIG", "UPDATE_OPENSEARCH_CROSS_CLUSTER_CONFIG", "UPDATE_OPENSEARCH_CLUSTER_REVERSE_CONNECTION_ENDPOINTS", "CONFIGURE_REMOTE_CLUSTER", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. :type operation_type: str @@ -165,7 +189,7 @@ def operation_type(self): **[Required]** Gets the operation_type of this WorkRequest. The type of operation that spawned the work request. - Allowed values for this property are: "CREATE_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER", "DELETE_OPENSEARCH_CLUSTER", "MOVE_OPENSEARCH_CLUSTER", "RESTORE_OPENSEARCH_CLUSTER", "BACKUP_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER_BACKUP", "MOVE_OPENSEARCH_CLUSTER_BACKUP", "DELETE_OPENSEARCH_CLUSTER_BACKUP", "UPDATE_OPENSEARCH_CLUSTER_SECURITY_CONFIG", 'UNKNOWN_ENUM_VALUE'. + Allowed values for this property are: "CREATE_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER", "DELETE_OPENSEARCH_CLUSTER", "MOVE_OPENSEARCH_CLUSTER", "RESTORE_OPENSEARCH_CLUSTER", "BACKUP_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER_BACKUP", "MOVE_OPENSEARCH_CLUSTER_BACKUP", "DELETE_OPENSEARCH_CLUSTER_BACKUP", "CREATE_OPENSEARCH_PIPELINE", "UPDATE_OPENSEARCH_PIPELINE", "DELETE_OPENSEARCH_PIPELINE", "UPDATE_OPENSEARCH_CLUSTER_SECURITY_CONFIG", "UPDATE_OPENSEARCH_CROSS_CLUSTER_CONFIG", "UPDATE_OPENSEARCH_CLUSTER_REVERSE_CONNECTION_ENDPOINTS", "CONFIGURE_REMOTE_CLUSTER", 'UNKNOWN_ENUM_VALUE'. Any unrecognized values returned by a service will be mapped to 'UNKNOWN_ENUM_VALUE'. @@ -184,7 +208,7 @@ def operation_type(self, operation_type): :param operation_type: The operation_type of this WorkRequest. :type: str """ - allowed_values = ["CREATE_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER", "DELETE_OPENSEARCH_CLUSTER", "MOVE_OPENSEARCH_CLUSTER", "RESTORE_OPENSEARCH_CLUSTER", "BACKUP_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER_BACKUP", "MOVE_OPENSEARCH_CLUSTER_BACKUP", "DELETE_OPENSEARCH_CLUSTER_BACKUP", "UPDATE_OPENSEARCH_CLUSTER_SECURITY_CONFIG"] + allowed_values = ["CREATE_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER", "DELETE_OPENSEARCH_CLUSTER", "MOVE_OPENSEARCH_CLUSTER", "RESTORE_OPENSEARCH_CLUSTER", "BACKUP_OPENSEARCH_CLUSTER", "UPDATE_OPENSEARCH_CLUSTER_BACKUP", "MOVE_OPENSEARCH_CLUSTER_BACKUP", "DELETE_OPENSEARCH_CLUSTER_BACKUP", "CREATE_OPENSEARCH_PIPELINE", "UPDATE_OPENSEARCH_PIPELINE", "DELETE_OPENSEARCH_PIPELINE", "UPDATE_OPENSEARCH_CLUSTER_SECURITY_CONFIG", "UPDATE_OPENSEARCH_CROSS_CLUSTER_CONFIG", "UPDATE_OPENSEARCH_CLUSTER_REVERSE_CONNECTION_ENDPOINTS", "CONFIGURE_REMOTE_CLUSTER"] 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/opensearch/models/work_request_collection.py b/src/oci/opensearch/models/work_request_collection.py index b64f7d6822..f2dd2f2acd 100644 --- a/src/oci/opensearch/models/work_request_collection.py +++ b/src/oci/opensearch/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/work_request_error.py b/src/oci/opensearch/models/work_request_error.py index 0dc79b6d5e..fcffa6516d 100644 --- a/src/oci/opensearch/models/work_request_error.py +++ b/src/oci/opensearch/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/work_request_error_collection.py b/src/oci/opensearch/models/work_request_error_collection.py index c530c880b6..5d44dc8e34 100644 --- a/src/oci/opensearch/models/work_request_error_collection.py +++ b/src/oci/opensearch/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/work_request_log_entry.py b/src/oci/opensearch/models/work_request_log_entry.py index b8567c8da5..470781e6e6 100644 --- a/src/oci/opensearch/models/work_request_log_entry.py +++ b/src/oci/opensearch/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/work_request_log_entry_collection.py b/src/oci/opensearch/models/work_request_log_entry_collection.py index 14d78df0c3..a0d0055471 100644 --- a/src/oci/opensearch/models/work_request_log_entry_collection.py +++ b/src/oci/opensearch/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/models/work_request_resource.py b/src/oci/opensearch/models/work_request_resource.py index 979574f3f3..d308b2882b 100644 --- a/src/oci/opensearch/models/work_request_resource.py +++ b/src/oci/opensearch/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/opensearch_cluster_backup_client.py b/src/oci/opensearch/opensearch_cluster_backup_client.py index 45a96b9f1e..d849633332 100644 --- a/src/oci/opensearch/opensearch_cluster_backup_client.py +++ b/src/oci/opensearch/opensearch_cluster_backup_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/opensearch_cluster_backup_client_composite_operations.py b/src/oci/opensearch/opensearch_cluster_backup_client_composite_operations.py index b7aaba627e..693a874003 100644 --- a/src/oci/opensearch/opensearch_cluster_backup_client_composite_operations.py +++ b/src/oci/opensearch/opensearch_cluster_backup_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/opensearch/opensearch_cluster_client.py b/src/oci/opensearch/opensearch_cluster_client.py index 1ad77de423..b4e74ff384 100644 --- a/src/oci/opensearch/opensearch_cluster_client.py +++ b/src/oci/opensearch/opensearch_cluster_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 @@ -234,6 +234,124 @@ def backup_opensearch_cluster(self, opensearch_cluster_id, backup_opensearch_clu api_reference_link=api_reference_link, required_arguments=required_arguments) + def configure_outbound_cluster(self, opensearch_cluster_id, configure_outbound_cluster_details, **kwargs): + """ + Configure Outbound cluster for cross-cluster operations + + + :param str opensearch_cluster_id: (required) + unique OpensearchCluster identifier + + :param oci.opensearch.models.ConfigureOutboundClusterDetails configure_outbound_cluster_details: (required) + Configure Outbound cluster details + + :param str if_match: (optional) + For optimistic concurrency control. In the PUT or DELETE call + for a resource, set the `if-match` parameter to the value of the + etag from a previous GET or POST response for that resource. + The resource will be updated or deleted only if the etag you + provide matches the resource's current etag value. + + :param str opc_retry_token: (optional) + A token that uniquely identifies a request so it can be retried in case of a timeout or + server error without risk of executing that same action again. Retry tokens expire after 24 + hours, but can be invalidated before then due to conflicting operations. For example, if a resource + has been deleted and purged from the system, then a retry of the original creation request + might be rejected. + + :param str opc_request_id: (optional) + The client request ID for tracing. + + :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. + 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` + + :example: + Click `here `__ to see an example of how to use configure_outbound_cluster API. + """ + # Required path and query arguments. These are in camelCase to replace values in service endpoints. + required_arguments = ['opensearchClusterId'] + resource_path = "/opensearchClusters/{opensearchClusterId}/actions/configureOutboundCluster" + method = "POST" + operation_name = "configure_outbound_cluster" + api_reference_link = "https://docs.oracle.com/iaas/api/#/en/opensearch/20180828/OpensearchCluster/ConfigureOutboundCluster" + + # Don't accept unknown kwargs + expected_kwargs = [ + "allow_control_chars", + "retry_strategy", + "if_match", + "opc_retry_token", + "opc_request_id" + ] + extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs] + if extra_kwargs: + raise ValueError( + f"configure_outbound_cluster got unknown kwargs: {extra_kwargs!r}") + + path_params = { + "opensearchClusterId": opensearch_cluster_id + } + + path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing} + + for (k, v) in six.iteritems(path_params): + if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0): + raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string') + + header_params = { + "accept": "application/json", + "content-type": "application/json", + "if-match": kwargs.get("if_match", missing), + "opc-retry-token": kwargs.get("opc_retry_token", missing), + "opc-request-id": kwargs.get("opc_request_id", missing) + } + header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None} + + retry_strategy = self.base_client.get_preferred_retry_strategy( + operation_retry_strategy=kwargs.get('retry_strategy'), + client_retry_strategy=self.retry_strategy + ) + + if retry_strategy: + if not isinstance(retry_strategy, retry.NoneRetryStrategy): + self.base_client.add_opc_retry_token_if_needed(header_params) + self.base_client.add_opc_client_retries_header(header_params) + retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback) + return retry_strategy.make_retrying_call( + self.base_client.call_api, + resource_path=resource_path, + method=method, + path_params=path_params, + header_params=header_params, + body=configure_outbound_cluster_details, + allow_control_chars=kwargs.get('allow_control_chars'), + operation_name=operation_name, + api_reference_link=api_reference_link, + required_arguments=required_arguments) + else: + return self.base_client.call_api( + resource_path=resource_path, + method=method, + path_params=path_params, + header_params=header_params, + body=configure_outbound_cluster_details, + allow_control_chars=kwargs.get('allow_control_chars'), + operation_name=operation_name, + api_reference_link=api_reference_link, + required_arguments=required_arguments) + def create_opensearch_cluster(self, create_opensearch_cluster_details, **kwargs): """ Creates a new OpensearchCluster. @@ -1667,3 +1785,121 @@ def update_opensearch_cluster(self, opensearch_cluster_id, update_opensearch_clu operation_name=operation_name, api_reference_link=api_reference_link, required_arguments=required_arguments) + + def upgrade_open_search_cluster(self, opensearch_cluster_id, upgrade_open_search_cluster_details, **kwargs): + """ + Upgrade or clone the opensearch cluster. + + + :param str opensearch_cluster_id: (required) + unique OpensearchCluster identifier + + :param oci.opensearch.models.UpgradeOpenSearchClusterDetails upgrade_open_search_cluster_details: (required) + Upgrade Open Search Cluster Details + + :param str if_match: (optional) + For optimistic concurrency control. In the PUT or DELETE call + for a resource, set the `if-match` parameter to the value of the + etag from a previous GET or POST response for that resource. + The resource will be updated or deleted only if the etag you + provide matches the resource's current etag value. + + :param str opc_retry_token: (optional) + A token that uniquely identifies a request so it can be retried in case of a timeout or + server error without risk of executing that same action again. Retry tokens expire after 24 + hours, but can be invalidated before then due to conflicting operations. For example, if a resource + has been deleted and purged from the system, then a retry of the original creation request + might be rejected. + + :param str opc_request_id: (optional) + The client request ID for tracing. + + :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. + 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` + + :example: + Click `here `__ to see an example of how to use upgrade_open_search_cluster API. + """ + # Required path and query arguments. These are in camelCase to replace values in service endpoints. + required_arguments = ['opensearchClusterId'] + resource_path = "/opensearchClusters/{opensearchClusterId}/actions/upgrade" + method = "POST" + operation_name = "upgrade_open_search_cluster" + api_reference_link = "https://docs.oracle.com/iaas/api/#/en/opensearch/20180828/OpensearchCluster/UpgradeOpenSearchCluster" + + # Don't accept unknown kwargs + expected_kwargs = [ + "allow_control_chars", + "retry_strategy", + "if_match", + "opc_retry_token", + "opc_request_id" + ] + extra_kwargs = [_key for _key in six.iterkeys(kwargs) if _key not in expected_kwargs] + if extra_kwargs: + raise ValueError( + f"upgrade_open_search_cluster got unknown kwargs: {extra_kwargs!r}") + + path_params = { + "opensearchClusterId": opensearch_cluster_id + } + + path_params = {k: v for (k, v) in six.iteritems(path_params) if v is not missing} + + for (k, v) in six.iteritems(path_params): + if v is None or (isinstance(v, six.string_types) and len(v.strip()) == 0): + raise ValueError(f'Parameter {k} cannot be None, whitespace or empty string') + + header_params = { + "accept": "application/json", + "content-type": "application/json", + "if-match": kwargs.get("if_match", missing), + "opc-retry-token": kwargs.get("opc_retry_token", missing), + "opc-request-id": kwargs.get("opc_request_id", missing) + } + header_params = {k: v for (k, v) in six.iteritems(header_params) if v is not missing and v is not None} + + retry_strategy = self.base_client.get_preferred_retry_strategy( + operation_retry_strategy=kwargs.get('retry_strategy'), + client_retry_strategy=self.retry_strategy + ) + + if retry_strategy: + if not isinstance(retry_strategy, retry.NoneRetryStrategy): + self.base_client.add_opc_retry_token_if_needed(header_params) + self.base_client.add_opc_client_retries_header(header_params) + retry_strategy.add_circuit_breaker_callback(self.circuit_breaker_callback) + return retry_strategy.make_retrying_call( + self.base_client.call_api, + resource_path=resource_path, + method=method, + path_params=path_params, + header_params=header_params, + body=upgrade_open_search_cluster_details, + allow_control_chars=kwargs.get('allow_control_chars'), + operation_name=operation_name, + api_reference_link=api_reference_link, + required_arguments=required_arguments) + else: + return self.base_client.call_api( + resource_path=resource_path, + method=method, + path_params=path_params, + header_params=header_params, + body=upgrade_open_search_cluster_details, + allow_control_chars=kwargs.get('allow_control_chars'), + operation_name=operation_name, + api_reference_link=api_reference_link, + required_arguments=required_arguments) diff --git a/src/oci/opensearch/opensearch_cluster_client_composite_operations.py b/src/oci/opensearch/opensearch_cluster_client_composite_operations.py index 125f945559..ffae4ce0ad 100644 --- a/src/oci/opensearch/opensearch_cluster_client_composite_operations.py +++ b/src/oci/opensearch/opensearch_cluster_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 @@ -67,6 +67,48 @@ def backup_opensearch_cluster_and_wait_for_state(self, opensearch_cluster_id, ba except Exception as e: raise oci.exceptions.CompositeOperationError(partial_results=[operation_result], cause=e) + def configure_outbound_cluster_and_wait_for_state(self, opensearch_cluster_id, configure_outbound_cluster_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={}): + """ + Calls :py:func:`~oci.opensearch.OpensearchClusterClient.configure_outbound_cluster` and waits for the :py:class:`~oci.opensearch.models.WorkRequest` + to enter the given state(s). + + :param str opensearch_cluster_id: (required) + unique OpensearchCluster identifier + + :param oci.opensearch.models.ConfigureOutboundClusterDetails configure_outbound_cluster_details: (required) + Configure Outbound cluster details + + :param list[str] wait_for_states: + An array of states to wait on. These should be valid values for :py:attr:`~oci.opensearch.models.WorkRequest.status` + + :param dict operation_kwargs: + A dictionary of keyword arguments to pass to :py:func:`~oci.opensearch.OpensearchClusterClient.configure_outbound_cluster` + + :param dict waiter_kwargs: + A dictionary of keyword arguments to pass to the :py:func:`oci.wait_until` function. For example, you could pass ``max_interval_seconds`` or ``max_interval_seconds`` + as dictionary keys to modify how long the waiter function will wait between retries and the maximum amount of time it will wait + """ + operation_result = self.client.configure_outbound_cluster(opensearch_cluster_id, configure_outbound_cluster_details, **operation_kwargs) + if not wait_for_states: + return operation_result + lowered_wait_for_states = [w.lower() for w in wait_for_states] + if 'opc-work-request-id' not in operation_result.headers: + return operation_result + wait_for_resource_id = operation_result.headers['opc-work-request-id'] + + try: + waiter_result = oci.wait_until( + self.client, + self.client.get_work_request(wait_for_resource_id), + evaluate_response=lambda r: getattr(r.data, 'status') and getattr(r.data, 'status').lower() in lowered_wait_for_states, + **waiter_kwargs + ) + result_to_return = waiter_result + + return result_to_return + except Exception as e: + raise oci.exceptions.CompositeOperationError(partial_results=[operation_result], cause=e) + def create_opensearch_cluster_and_wait_for_state(self, create_opensearch_cluster_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={}): """ Calls :py:func:`~oci.opensearch.OpensearchClusterClient.create_opensearch_cluster` and waits for the :py:class:`~oci.opensearch.models.WorkRequest` @@ -320,3 +362,45 @@ def update_opensearch_cluster_and_wait_for_state(self, opensearch_cluster_id, up return result_to_return except Exception as e: raise oci.exceptions.CompositeOperationError(partial_results=[operation_result], cause=e) + + def upgrade_open_search_cluster_and_wait_for_state(self, opensearch_cluster_id, upgrade_open_search_cluster_details, wait_for_states=[], operation_kwargs={}, waiter_kwargs={}): + """ + Calls :py:func:`~oci.opensearch.OpensearchClusterClient.upgrade_open_search_cluster` and waits for the :py:class:`~oci.opensearch.models.WorkRequest` + to enter the given state(s). + + :param str opensearch_cluster_id: (required) + unique OpensearchCluster identifier + + :param oci.opensearch.models.UpgradeOpenSearchClusterDetails upgrade_open_search_cluster_details: (required) + Upgrade Open Search Cluster Details + + :param list[str] wait_for_states: + An array of states to wait on. These should be valid values for :py:attr:`~oci.opensearch.models.WorkRequest.status` + + :param dict operation_kwargs: + A dictionary of keyword arguments to pass to :py:func:`~oci.opensearch.OpensearchClusterClient.upgrade_open_search_cluster` + + :param dict waiter_kwargs: + A dictionary of keyword arguments to pass to the :py:func:`oci.wait_until` function. For example, you could pass ``max_interval_seconds`` or ``max_interval_seconds`` + as dictionary keys to modify how long the waiter function will wait between retries and the maximum amount of time it will wait + """ + operation_result = self.client.upgrade_open_search_cluster(opensearch_cluster_id, upgrade_open_search_cluster_details, **operation_kwargs) + if not wait_for_states: + return operation_result + lowered_wait_for_states = [w.lower() for w in wait_for_states] + if 'opc-work-request-id' not in operation_result.headers: + return operation_result + wait_for_resource_id = operation_result.headers['opc-work-request-id'] + + try: + waiter_result = oci.wait_until( + self.client, + self.client.get_work_request(wait_for_resource_id), + evaluate_response=lambda r: getattr(r.data, 'status') and getattr(r.data, 'status').lower() in lowered_wait_for_states, + **waiter_kwargs + ) + result_to_return = waiter_result + + return result_to_return + except Exception as e: + raise oci.exceptions.CompositeOperationError(partial_results=[operation_result], cause=e) diff --git a/src/oci/operator_access_control/__init__.py b/src/oci/operator_access_control/__init__.py index e0ef3ced34..23a79f173d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/access_requests_client.py b/src/oci/operator_access_control/access_requests_client.py index 417b932f5c..42906932b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 3b5d0fa3a1..5c3476068a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/__init__.py b/src/oci/operator_access_control/models/__init__.py index 14ea179ed3..bbdc61d503 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/access_request.py b/src/oci/operator_access_control/models/access_request.py index 93d62bb2de..f4f36a1d81 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 9152ed97e1..7a3247958a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 4ea41c26d6..dab8a6d4f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 09c0ee7fae..c4ae301aba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 e4f36fb222..a93a109168 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 1a0afef110..ea4d9326d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/approver_detail.py b/src/oci/operator_access_control/models/approver_detail.py index 90776899e8..1fe3e76066 100644 --- a/src/oci/operator_access_control/models/approver_detail.py +++ b/src/oci/operator_access_control/models/approver_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/assignment_validation_status.py b/src/oci/operator_access_control/models/assignment_validation_status.py index 914c34f910..004b75ce88 100644 --- a/src/oci/operator_access_control/models/assignment_validation_status.py +++ b/src/oci/operator_access_control/models/assignment_validation_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/audit_log_report.py b/src/oci/operator_access_control/models/audit_log_report.py index f6085d9a5f..c0786850c2 100644 --- a/src/oci/operator_access_control/models/audit_log_report.py +++ b/src/oci/operator_access_control/models/audit_log_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 080f1d60c1..8a80f19831 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 2449371954..68045a2b48 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 d6a766af71..a876538b3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 44e239506c..ca4c059488 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/interaction_collection.py b/src/oci/operator_access_control/models/interaction_collection.py index 1ce4d57095..af7c0b546b 100644 --- a/src/oci/operator_access_control/models/interaction_collection.py +++ b/src/oci/operator_access_control/models/interaction_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/interaction_request_details.py b/src/oci/operator_access_control/models/interaction_request_details.py index cc22e2d246..f919a87bc4 100644 --- a/src/oci/operator_access_control/models/interaction_request_details.py +++ b/src/oci/operator_access_control/models/interaction_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/interaction_summary.py b/src/oci/operator_access_control/models/interaction_summary.py index 96ecbac02e..65358b548d 100644 --- a/src/oci/operator_access_control/models/interaction_summary.py +++ b/src/oci/operator_access_control/models/interaction_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/operator_action.py b/src/oci/operator_access_control/models/operator_action.py index 1e92fcab23..3a2ab799cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 3d4fec17b8..54eb092370 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 3f077467c0..6ac9b282a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 c9e0419f02..a4a89e200f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/operator_control.py b/src/oci/operator_access_control/models/operator_control.py index 87c5a32622..40275d2d12 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 ca850a721e..280430632c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 d839c7d1ba..3ab84c9d64 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 5086ce2475..a9bca03722 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 b000371c3b..856dec5ce5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 dfa41d9ba0..bef06141de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 12ec914a9c..186a22b62b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 83f571246d..4f9e3a26d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 0ce3901615..2a587b01ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/status_detail.py b/src/oci/operator_access_control/models/status_detail.py index a458e8bc38..aab9625c97 100644 --- a/src/oci/operator_access_control/models/status_detail.py +++ b/src/oci/operator_access_control/models/status_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 8f612f3acc..dd6bbfcb93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 d4f37f86bb..1e8ce7ce34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/models/validate_operator_assignment_details.py b/src/oci/operator_access_control/models/validate_operator_assignment_details.py index 3f6a5a2f3b..768c99a655 100644 --- a/src/oci/operator_access_control/models/validate_operator_assignment_details.py +++ b/src/oci/operator_access_control/models/validate_operator_assignment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/operator_actions_client.py b/src/oci/operator_access_control/operator_actions_client.py index d31191d6b4..cdd93ec457 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 6f6a8ab019..8fbd953d20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 8a1b7a7505..1e5a87ca61 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 234b7b477d..34271863d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/operator_access_control/operator_control_client.py b/src/oci/operator_access_control/operator_control_client.py index 4cc27ce1a7..e6f8bff39f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 2ecea6b51d..da67bc7104 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/__init__.py b/src/oci/opsi/__init__.py index b4a9649394..104e3bde3d 100644 --- a/src/oci/opsi/__init__.py +++ b/src/oci/opsi/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/__init__.py b/src/oci/opsi/models/__init__.py index 2317446bf7..2dba618d13 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 a6888528ae..d7fce07154 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 97335b88a2..85ecd42093 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/add_macs_managed_cloud_exadata_insight_members_details.py b/src/oci/opsi/models/add_macs_managed_cloud_exadata_insight_members_details.py index 6b0e34d063..3740b364dc 100644 --- a/src/oci/opsi/models/add_macs_managed_cloud_exadata_insight_members_details.py +++ b/src/oci/opsi/models/add_macs_managed_cloud_exadata_insight_members_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/add_pe_comanaged_exadata_insight_members_details.py b/src/oci/opsi/models/add_pe_comanaged_exadata_insight_members_details.py index 225deeceb1..8e8330407f 100644 --- a/src/oci/opsi/models/add_pe_comanaged_exadata_insight_members_details.py +++ b/src/oci/opsi/models/add_pe_comanaged_exadata_insight_members_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_collection.py b/src/oci/opsi/models/addm_db_collection.py index a17e05aab1..f408e9237f 100644 --- a/src/oci/opsi/models/addm_db_collection.py +++ b/src/oci/opsi/models/addm_db_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_finding_aggregation.py b/src/oci/opsi/models/addm_db_finding_aggregation.py index 9054654a47..b0af173c3b 100644 --- a/src/oci/opsi/models/addm_db_finding_aggregation.py +++ b/src/oci/opsi/models/addm_db_finding_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_finding_aggregation_collection.py b/src/oci/opsi/models/addm_db_finding_aggregation_collection.py index e8d65959de..f142fd20f5 100644 --- a/src/oci/opsi/models/addm_db_finding_aggregation_collection.py +++ b/src/oci/opsi/models/addm_db_finding_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_finding_category_collection.py b/src/oci/opsi/models/addm_db_finding_category_collection.py index 35d47bb3f8..35cf375c6d 100644 --- a/src/oci/opsi/models/addm_db_finding_category_collection.py +++ b/src/oci/opsi/models/addm_db_finding_category_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_finding_category_summary.py b/src/oci/opsi/models/addm_db_finding_category_summary.py index 5755c3e556..7a8e7d3a97 100644 --- a/src/oci/opsi/models/addm_db_finding_category_summary.py +++ b/src/oci/opsi/models/addm_db_finding_category_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_findings_time_series_collection.py b/src/oci/opsi/models/addm_db_findings_time_series_collection.py index 9c320aee18..a265bb1271 100644 --- a/src/oci/opsi/models/addm_db_findings_time_series_collection.py +++ b/src/oci/opsi/models/addm_db_findings_time_series_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_findings_time_series_summary.py b/src/oci/opsi/models/addm_db_findings_time_series_summary.py index 4d1aecd5e7..2e9ae7e20d 100644 --- a/src/oci/opsi/models/addm_db_findings_time_series_summary.py +++ b/src/oci/opsi/models/addm_db_findings_time_series_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_parameter_aggregation.py b/src/oci/opsi/models/addm_db_parameter_aggregation.py index c62990f518..c063765f51 100644 --- a/src/oci/opsi/models/addm_db_parameter_aggregation.py +++ b/src/oci/opsi/models/addm_db_parameter_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_parameter_aggregation_collection.py b/src/oci/opsi/models/addm_db_parameter_aggregation_collection.py index c5dc680613..f0be7ab6d3 100644 --- a/src/oci/opsi/models/addm_db_parameter_aggregation_collection.py +++ b/src/oci/opsi/models/addm_db_parameter_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_parameter_category_collection.py b/src/oci/opsi/models/addm_db_parameter_category_collection.py index 5887750d84..411e3ca075 100644 --- a/src/oci/opsi/models/addm_db_parameter_category_collection.py +++ b/src/oci/opsi/models/addm_db_parameter_category_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_parameter_category_summary.py b/src/oci/opsi/models/addm_db_parameter_category_summary.py index 8f99653dc2..28bb6409aa 100644 --- a/src/oci/opsi/models/addm_db_parameter_category_summary.py +++ b/src/oci/opsi/models/addm_db_parameter_category_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_parameter_change_aggregation.py b/src/oci/opsi/models/addm_db_parameter_change_aggregation.py index d71a9b3ffa..3f04fea344 100644 --- a/src/oci/opsi/models/addm_db_parameter_change_aggregation.py +++ b/src/oci/opsi/models/addm_db_parameter_change_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_parameter_change_aggregation_collection.py b/src/oci/opsi/models/addm_db_parameter_change_aggregation_collection.py index 3b0b046b8e..63abaedb74 100644 --- a/src/oci/opsi/models/addm_db_parameter_change_aggregation_collection.py +++ b/src/oci/opsi/models/addm_db_parameter_change_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_recommendation_aggregation.py b/src/oci/opsi/models/addm_db_recommendation_aggregation.py index 30f9892050..5dd3cfd1ef 100644 --- a/src/oci/opsi/models/addm_db_recommendation_aggregation.py +++ b/src/oci/opsi/models/addm_db_recommendation_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_recommendation_aggregation_collection.py b/src/oci/opsi/models/addm_db_recommendation_aggregation_collection.py index f8c784a983..7d94626e09 100644 --- a/src/oci/opsi/models/addm_db_recommendation_aggregation_collection.py +++ b/src/oci/opsi/models/addm_db_recommendation_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_recommendation_category_collection.py b/src/oci/opsi/models/addm_db_recommendation_category_collection.py index cc76c85279..39d90baaa9 100644 --- a/src/oci/opsi/models/addm_db_recommendation_category_collection.py +++ b/src/oci/opsi/models/addm_db_recommendation_category_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_recommendation_category_summary.py b/src/oci/opsi/models/addm_db_recommendation_category_summary.py index 9bf9be01f4..19e28ba2d2 100644 --- a/src/oci/opsi/models/addm_db_recommendation_category_summary.py +++ b/src/oci/opsi/models/addm_db_recommendation_category_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_recommendations_time_series_collection.py b/src/oci/opsi/models/addm_db_recommendations_time_series_collection.py index 56e93ca0c9..aaecb60f84 100644 --- a/src/oci/opsi/models/addm_db_recommendations_time_series_collection.py +++ b/src/oci/opsi/models/addm_db_recommendations_time_series_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_recommendations_time_series_summary.py b/src/oci/opsi/models/addm_db_recommendations_time_series_summary.py index 6b70e24666..ca36e1764e 100644 --- a/src/oci/opsi/models/addm_db_recommendations_time_series_summary.py +++ b/src/oci/opsi/models/addm_db_recommendations_time_series_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_schema_object_collection.py b/src/oci/opsi/models/addm_db_schema_object_collection.py index d40ad61d67..8f442eda36 100644 --- a/src/oci/opsi/models/addm_db_schema_object_collection.py +++ b/src/oci/opsi/models/addm_db_schema_object_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_schema_object_summary.py b/src/oci/opsi/models/addm_db_schema_object_summary.py index e27ccf9e91..d7b536f101 100644 --- a/src/oci/opsi/models/addm_db_schema_object_summary.py +++ b/src/oci/opsi/models/addm_db_schema_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_sql_statement_collection.py b/src/oci/opsi/models/addm_db_sql_statement_collection.py index 6bd08f21e1..340831e67c 100644 --- a/src/oci/opsi/models/addm_db_sql_statement_collection.py +++ b/src/oci/opsi/models/addm_db_sql_statement_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_sql_statement_summary.py b/src/oci/opsi/models/addm_db_sql_statement_summary.py index 8da16fbc88..c34d43f077 100644 --- a/src/oci/opsi/models/addm_db_sql_statement_summary.py +++ b/src/oci/opsi/models/addm_db_sql_statement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_db_summary.py b/src/oci/opsi/models/addm_db_summary.py index 0e790aa777..781ffc9689 100644 --- a/src/oci/opsi/models/addm_db_summary.py +++ b/src/oci/opsi/models/addm_db_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/addm_report.py b/src/oci/opsi/models/addm_report.py index bab845552f..25418d668b 100644 --- a/src/oci/opsi/models/addm_report.py +++ b/src/oci/opsi/models/addm_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/autonomous_database_configuration_summary.py b/src/oci/opsi/models/autonomous_database_configuration_summary.py index f0c844306d..60078fe2ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/autonomous_database_insight.py b/src/oci/opsi/models/autonomous_database_insight.py index c6e8a87bf1..2d5345dba3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/autonomous_database_insight_summary.py b/src/oci/opsi/models/autonomous_database_insight_summary.py index 1ee0bd170e..0485acf9b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_collection.py b/src/oci/opsi/models/awr_database_collection.py index 35b74209e6..1e8071042f 100644 --- a/src/oci/opsi/models/awr_database_collection.py +++ b/src/oci/opsi/models/awr_database_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_cpu_usage_collection.py b/src/oci/opsi/models/awr_database_cpu_usage_collection.py index 749f103cdd..dbf661c652 100644 --- a/src/oci/opsi/models/awr_database_cpu_usage_collection.py +++ b/src/oci/opsi/models/awr_database_cpu_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_cpu_usage_summary.py b/src/oci/opsi/models/awr_database_cpu_usage_summary.py index 0f25b2e0f1..ac662a1e31 100644 --- a/src/oci/opsi/models/awr_database_cpu_usage_summary.py +++ b/src/oci/opsi/models/awr_database_cpu_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_metric_collection.py b/src/oci/opsi/models/awr_database_metric_collection.py index 1dbec246b0..8e2d07a9cc 100644 --- a/src/oci/opsi/models/awr_database_metric_collection.py +++ b/src/oci/opsi/models/awr_database_metric_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_metric_summary.py b/src/oci/opsi/models/awr_database_metric_summary.py index d057cd231c..99bbcd1406 100644 --- a/src/oci/opsi/models/awr_database_metric_summary.py +++ b/src/oci/opsi/models/awr_database_metric_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_parameter_change_collection.py b/src/oci/opsi/models/awr_database_parameter_change_collection.py index 1c346e10df..df42196d81 100644 --- a/src/oci/opsi/models/awr_database_parameter_change_collection.py +++ b/src/oci/opsi/models/awr_database_parameter_change_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_parameter_change_summary.py b/src/oci/opsi/models/awr_database_parameter_change_summary.py index 8fc54313c6..e744bc57c7 100644 --- a/src/oci/opsi/models/awr_database_parameter_change_summary.py +++ b/src/oci/opsi/models/awr_database_parameter_change_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_parameter_collection.py b/src/oci/opsi/models/awr_database_parameter_collection.py index 56f4afb3c6..6b645873a2 100644 --- a/src/oci/opsi/models/awr_database_parameter_collection.py +++ b/src/oci/opsi/models/awr_database_parameter_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_parameter_summary.py b/src/oci/opsi/models/awr_database_parameter_summary.py index f86acf0df0..7c68c7c929 100644 --- a/src/oci/opsi/models/awr_database_parameter_summary.py +++ b/src/oci/opsi/models/awr_database_parameter_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_report.py b/src/oci/opsi/models/awr_database_report.py index ea714bc3a3..a6c7b82ccd 100644 --- a/src/oci/opsi/models/awr_database_report.py +++ b/src/oci/opsi/models/awr_database_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_snapshot_collection.py b/src/oci/opsi/models/awr_database_snapshot_collection.py index 989c1a71b9..51b48b883c 100644 --- a/src/oci/opsi/models/awr_database_snapshot_collection.py +++ b/src/oci/opsi/models/awr_database_snapshot_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_snapshot_range_collection.py b/src/oci/opsi/models/awr_database_snapshot_range_collection.py index 57e406def8..b628974c91 100644 --- a/src/oci/opsi/models/awr_database_snapshot_range_collection.py +++ b/src/oci/opsi/models/awr_database_snapshot_range_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_snapshot_range_summary.py b/src/oci/opsi/models/awr_database_snapshot_range_summary.py index 64ad9c5caa..ab75d8cd89 100644 --- a/src/oci/opsi/models/awr_database_snapshot_range_summary.py +++ b/src/oci/opsi/models/awr_database_snapshot_range_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_snapshot_summary.py b/src/oci/opsi/models/awr_database_snapshot_summary.py index b951c94518..c322da530b 100644 --- a/src/oci/opsi/models/awr_database_snapshot_summary.py +++ b/src/oci/opsi/models/awr_database_snapshot_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_sql_report.py b/src/oci/opsi/models/awr_database_sql_report.py index ebef30c488..7af0c5914b 100644 --- a/src/oci/opsi/models/awr_database_sql_report.py +++ b/src/oci/opsi/models/awr_database_sql_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_summary.py b/src/oci/opsi/models/awr_database_summary.py index 4a885d7a8c..34fd3e213a 100644 --- a/src/oci/opsi/models/awr_database_summary.py +++ b/src/oci/opsi/models/awr_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_sysstat_collection.py b/src/oci/opsi/models/awr_database_sysstat_collection.py index bee4112564..8904299b87 100644 --- a/src/oci/opsi/models/awr_database_sysstat_collection.py +++ b/src/oci/opsi/models/awr_database_sysstat_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_sysstat_summary.py b/src/oci/opsi/models/awr_database_sysstat_summary.py index 92e07de6a3..569dfe0985 100644 --- a/src/oci/opsi/models/awr_database_sysstat_summary.py +++ b/src/oci/opsi/models/awr_database_sysstat_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_top_wait_event_collection.py b/src/oci/opsi/models/awr_database_top_wait_event_collection.py index bb4b7d7d79..a6adcb4b19 100644 --- a/src/oci/opsi/models/awr_database_top_wait_event_collection.py +++ b/src/oci/opsi/models/awr_database_top_wait_event_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_top_wait_event_summary.py b/src/oci/opsi/models/awr_database_top_wait_event_summary.py index 4a70bfc858..56afa00448 100644 --- a/src/oci/opsi/models/awr_database_top_wait_event_summary.py +++ b/src/oci/opsi/models/awr_database_top_wait_event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_wait_event_bucket_collection.py b/src/oci/opsi/models/awr_database_wait_event_bucket_collection.py index 3850614253..08534e6436 100644 --- a/src/oci/opsi/models/awr_database_wait_event_bucket_collection.py +++ b/src/oci/opsi/models/awr_database_wait_event_bucket_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_wait_event_bucket_summary.py b/src/oci/opsi/models/awr_database_wait_event_bucket_summary.py index 8068e4136a..25b31c9aa0 100644 --- a/src/oci/opsi/models/awr_database_wait_event_bucket_summary.py +++ b/src/oci/opsi/models/awr_database_wait_event_bucket_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_wait_event_collection.py b/src/oci/opsi/models/awr_database_wait_event_collection.py index 9e53ec478f..17672a6a1c 100644 --- a/src/oci/opsi/models/awr_database_wait_event_collection.py +++ b/src/oci/opsi/models/awr_database_wait_event_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_database_wait_event_summary.py b/src/oci/opsi/models/awr_database_wait_event_summary.py index bd5526a37c..48d31b319f 100644 --- a/src/oci/opsi/models/awr_database_wait_event_summary.py +++ b/src/oci/opsi/models/awr_database_wait_event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_hub.py b/src/oci/opsi/models/awr_hub.py index eebed371bf..f520200118 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_hub_objects.py b/src/oci/opsi/models/awr_hub_objects.py index 70e0a1893b..ef72ba1e4e 100644 --- a/src/oci/opsi/models/awr_hub_objects.py +++ b/src/oci/opsi/models/awr_hub_objects.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_hub_source.py b/src/oci/opsi/models/awr_hub_source.py index 469912a7de..595d705d14 100644 --- a/src/oci/opsi/models/awr_hub_source.py +++ b/src/oci/opsi/models/awr_hub_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_hub_source_summary.py b/src/oci/opsi/models/awr_hub_source_summary.py index 2bc98b62ae..5631a0953d 100644 --- a/src/oci/opsi/models/awr_hub_source_summary.py +++ b/src/oci/opsi/models/awr_hub_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_hub_source_summary_collection.py b/src/oci/opsi/models/awr_hub_source_summary_collection.py index 712b20eddc..630912e6c7 100644 --- a/src/oci/opsi/models/awr_hub_source_summary_collection.py +++ b/src/oci/opsi/models/awr_hub_source_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_hub_sources.py b/src/oci/opsi/models/awr_hub_sources.py index 9f1dbbb4d4..f3b8605c4f 100644 --- a/src/oci/opsi/models/awr_hub_sources.py +++ b/src/oci/opsi/models/awr_hub_sources.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_hub_summary.py b/src/oci/opsi/models/awr_hub_summary.py index 479dc57d60..c9f150efbe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_hub_summary_collection.py b/src/oci/opsi/models/awr_hub_summary_collection.py index aa56fa1451..dd2c4a145e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_hubs.py b/src/oci/opsi/models/awr_hubs.py index ab1e1865cb..66b7d04208 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_query_result.py b/src/oci/opsi/models/awr_query_result.py index 347129a5b8..4c38dcddc8 100644 --- a/src/oci/opsi/models/awr_query_result.py +++ b/src/oci/opsi/models/awr_query_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_report.py b/src/oci/opsi/models/awr_report.py index 0827699339..63e3b86d2c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_snapshot_collection.py b/src/oci/opsi/models/awr_snapshot_collection.py index 4ac5bbb6f1..557bfb3409 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_snapshot_summary.py b/src/oci/opsi/models/awr_snapshot_summary.py index 2b0ec08210..d33fdd9258 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/awr_source_summary.py b/src/oci/opsi/models/awr_source_summary.py index 1719d5b2fa..de25a231ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/basic_configuration_item_metadata.py b/src/oci/opsi/models/basic_configuration_item_metadata.py index fc5156e136..1664617e82 100644 --- a/src/oci/opsi/models/basic_configuration_item_metadata.py +++ b/src/oci/opsi/models/basic_configuration_item_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/basic_configuration_item_summary.py b/src/oci/opsi/models/basic_configuration_item_summary.py index 8f8f846a4f..1c8b85ee69 100644 --- a/src/oci/opsi/models/basic_configuration_item_summary.py +++ b/src/oci/opsi/models/basic_configuration_item_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/change_autonomous_database_insight_advanced_features_details.py b/src/oci/opsi/models/change_autonomous_database_insight_advanced_features_details.py index 747de2a79f..012b82b881 100644 --- a/src/oci/opsi/models/change_autonomous_database_insight_advanced_features_details.py +++ b/src/oci/opsi/models/change_autonomous_database_insight_advanced_features_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/change_awr_hub_source_compartment_details.py b/src/oci/opsi/models/change_awr_hub_source_compartment_details.py index 6e4adf8dd2..f0f37f9f7d 100644 --- a/src/oci/opsi/models/change_awr_hub_source_compartment_details.py +++ b/src/oci/opsi/models/change_awr_hub_source_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 10b146e2ef..9317cb3565 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 404cef95e2..ba22acb2e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 636ce92920..6867fd6221 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 c17ddf18d3..8d52e13444 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/change_macs_managed_cloud_database_insight_connection_details.py b/src/oci/opsi/models/change_macs_managed_cloud_database_insight_connection_details.py index ddef7492e4..a8d849b5a7 100644 --- a/src/oci/opsi/models/change_macs_managed_cloud_database_insight_connection_details.py +++ b/src/oci/opsi/models/change_macs_managed_cloud_database_insight_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/change_news_report_compartment_details.py b/src/oci/opsi/models/change_news_report_compartment_details.py index e9e3e34911..646c5a757f 100644 --- a/src/oci/opsi/models/change_news_report_compartment_details.py +++ b/src/oci/opsi/models/change_news_report_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/change_operations_insights_private_endpoint_compartment_details.py b/src/oci/opsi/models/change_operations_insights_private_endpoint_compartment_details.py index 908756b327..a8eda048ec 100644 --- a/src/oci/opsi/models/change_operations_insights_private_endpoint_compartment_details.py +++ b/src/oci/opsi/models/change_operations_insights_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/change_operations_insights_warehouse_compartment_details.py b/src/oci/opsi/models/change_operations_insights_warehouse_compartment_details.py index db118d9af4..3171968d46 100644 --- a/src/oci/opsi/models/change_operations_insights_warehouse_compartment_details.py +++ b/src/oci/opsi/models/change_operations_insights_warehouse_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/change_opsi_configuration_compartment_details.py b/src/oci/opsi/models/change_opsi_configuration_compartment_details.py index 1e382b49e5..e904f96684 100644 --- a/src/oci/opsi/models/change_opsi_configuration_compartment_details.py +++ b/src/oci/opsi/models/change_opsi_configuration_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/change_pe_comanaged_database_insight_details.py b/src/oci/opsi/models/change_pe_comanaged_database_insight_details.py index c877981a84..97d80a0ecb 100644 --- a/src/oci/opsi/models/change_pe_comanaged_database_insight_details.py +++ b/src/oci/opsi/models/change_pe_comanaged_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/cloud_importable_compute_entity_summary.py b/src/oci/opsi/models/cloud_importable_compute_entity_summary.py index d567d1d946..2ef9c34b1f 100644 --- a/src/oci/opsi/models/cloud_importable_compute_entity_summary.py +++ b/src/oci/opsi/models/cloud_importable_compute_entity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/configuration_item_allowed_value_details.py b/src/oci/opsi/models/configuration_item_allowed_value_details.py index 21afdca347..f1229e4076 100644 --- a/src/oci/opsi/models/configuration_item_allowed_value_details.py +++ b/src/oci/opsi/models/configuration_item_allowed_value_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/configuration_item_free_text_allowed_value_details.py b/src/oci/opsi/models/configuration_item_free_text_allowed_value_details.py index f0031e2cd5..5066ef8fa4 100644 --- a/src/oci/opsi/models/configuration_item_free_text_allowed_value_details.py +++ b/src/oci/opsi/models/configuration_item_free_text_allowed_value_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/configuration_item_limit_allowed_value_details.py b/src/oci/opsi/models/configuration_item_limit_allowed_value_details.py index c8564c3c87..06eb779d3e 100644 --- a/src/oci/opsi/models/configuration_item_limit_allowed_value_details.py +++ b/src/oci/opsi/models/configuration_item_limit_allowed_value_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/configuration_item_metadata.py b/src/oci/opsi/models/configuration_item_metadata.py index 26c5674f08..6685526c9d 100644 --- a/src/oci/opsi/models/configuration_item_metadata.py +++ b/src/oci/opsi/models/configuration_item_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/configuration_item_pick_allowed_value_details.py b/src/oci/opsi/models/configuration_item_pick_allowed_value_details.py index 19b576ff81..8a8d886373 100644 --- a/src/oci/opsi/models/configuration_item_pick_allowed_value_details.py +++ b/src/oci/opsi/models/configuration_item_pick_allowed_value_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/configuration_item_summary.py b/src/oci/opsi/models/configuration_item_summary.py index d18963cd13..3d54036739 100644 --- a/src/oci/opsi/models/configuration_item_summary.py +++ b/src/oci/opsi/models/configuration_item_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/configuration_item_unit_details.py b/src/oci/opsi/models/configuration_item_unit_details.py index ddb8cfeca4..65601708f2 100644 --- a/src/oci/opsi/models/configuration_item_unit_details.py +++ b/src/oci/opsi/models/configuration_item_unit_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/configuration_items_collection.py b/src/oci/opsi/models/configuration_items_collection.py index f099d06da3..71d570c708 100644 --- a/src/oci/opsi/models/configuration_items_collection.py +++ b/src/oci/opsi/models/configuration_items_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/connection_details.py b/src/oci/opsi/models/connection_details.py index e23fd1a26f..6f62192b1c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_autonomous_database_insight_details.py b/src/oci/opsi/models/create_autonomous_database_insight_details.py index e53537883b..4980a54062 100644 --- a/src/oci/opsi/models/create_autonomous_database_insight_details.py +++ b/src/oci/opsi/models/create_autonomous_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_awr_hub_details.py b/src/oci/opsi/models/create_awr_hub_details.py index 368846f598..12ae9b40f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_awr_hub_source_details.py b/src/oci/opsi/models/create_awr_hub_source_details.py index 754b0ebe61..4f0a5e15d2 100644 --- a/src/oci/opsi/models/create_awr_hub_source_details.py +++ b/src/oci/opsi/models/create_awr_hub_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_basic_configuration_item_details.py b/src/oci/opsi/models/create_basic_configuration_item_details.py index 4f847178aa..99c94818b2 100644 --- a/src/oci/opsi/models/create_basic_configuration_item_details.py +++ b/src/oci/opsi/models/create_basic_configuration_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_configuration_item_details.py b/src/oci/opsi/models/create_configuration_item_details.py index 5126dc11fc..205e955f6a 100644 --- a/src/oci/opsi/models/create_configuration_item_details.py +++ b/src/oci/opsi/models/create_configuration_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_database_insight_details.py b/src/oci/opsi/models/create_database_insight_details.py index 8609695a2e..ffa04c9834 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 9511506026..50058f8d8e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 22269840ce..11f06903ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 ea3e66a2d6..e7b42f326a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 c4c2a15d2a..3c16e2d1e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 58d69dafa4..f85aa4c0aa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_exadata_insight_details.py b/src/oci/opsi/models/create_exadata_insight_details.py index ae791f4bdc..02b2cd8ef7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_host_insight_details.py b/src/oci/opsi/models/create_host_insight_details.py index 75181328b5..5c17f12d56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_macs_managed_cloud_database_insight_details.py b/src/oci/opsi/models/create_macs_managed_cloud_database_insight_details.py index b64b452d8a..0df3a48395 100644 --- a/src/oci/opsi/models/create_macs_managed_cloud_database_insight_details.py +++ b/src/oci/opsi/models/create_macs_managed_cloud_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_macs_managed_cloud_exadata_cluster_details.py b/src/oci/opsi/models/create_macs_managed_cloud_exadata_cluster_details.py index 51ff30110b..8ffbd1a840 100644 --- a/src/oci/opsi/models/create_macs_managed_cloud_exadata_cluster_details.py +++ b/src/oci/opsi/models/create_macs_managed_cloud_exadata_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_macs_managed_cloud_exadata_insight_details.py b/src/oci/opsi/models/create_macs_managed_cloud_exadata_insight_details.py index ca3372425c..0553087cf9 100644 --- a/src/oci/opsi/models/create_macs_managed_cloud_exadata_insight_details.py +++ b/src/oci/opsi/models/create_macs_managed_cloud_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_macs_managed_cloud_exadata_vmcluster_details.py b/src/oci/opsi/models/create_macs_managed_cloud_exadata_vmcluster_details.py index e553bf0e28..532ac5742d 100644 --- a/src/oci/opsi/models/create_macs_managed_cloud_exadata_vmcluster_details.py +++ b/src/oci/opsi/models/create_macs_managed_cloud_exadata_vmcluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_macs_managed_cloud_host_insight_details.py b/src/oci/opsi/models/create_macs_managed_cloud_host_insight_details.py index 4d204ad4db..f42c422a05 100644 --- a/src/oci/opsi/models/create_macs_managed_cloud_host_insight_details.py +++ b/src/oci/opsi/models/create_macs_managed_cloud_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 42a1d1fe9a..6353ad6667 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_mds_my_sql_database_insight_details.py b/src/oci/opsi/models/create_mds_my_sql_database_insight_details.py index 79db4ae332..6567c16240 100644 --- a/src/oci/opsi/models/create_mds_my_sql_database_insight_details.py +++ b/src/oci/opsi/models/create_mds_my_sql_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_news_report_details.py b/src/oci/opsi/models/create_news_report_details.py index c69e847e06..4454b2bd4f 100644 --- a/src/oci/opsi/models/create_news_report_details.py +++ b/src/oci/opsi/models/create_news_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_operations_insights_private_endpoint_details.py b/src/oci/opsi/models/create_operations_insights_private_endpoint_details.py index 47e524b26d..34cdcb7312 100644 --- a/src/oci/opsi/models/create_operations_insights_private_endpoint_details.py +++ b/src/oci/opsi/models/create_operations_insights_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 905791bb60..30630f4af0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 95a9e25368..7142cfa551 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_opsi_configuration_details.py b/src/oci/opsi/models/create_opsi_configuration_details.py index 5db978b405..f681e47619 100644 --- a/src/oci/opsi/models/create_opsi_configuration_details.py +++ b/src/oci/opsi/models/create_opsi_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_opsi_ux_configuration_details.py b/src/oci/opsi/models/create_opsi_ux_configuration_details.py index d76b471d24..43ff608ef8 100644 --- a/src/oci/opsi/models/create_opsi_ux_configuration_details.py +++ b/src/oci/opsi/models/create_opsi_ux_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_pe_comanaged_database_insight_details.py b/src/oci/opsi/models/create_pe_comanaged_database_insight_details.py index c8a193ed3d..17078ac740 100644 --- a/src/oci/opsi/models/create_pe_comanaged_database_insight_details.py +++ b/src/oci/opsi/models/create_pe_comanaged_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_pe_comanaged_exadata_insight_details.py b/src/oci/opsi/models/create_pe_comanaged_exadata_insight_details.py index 2182fab272..6384a3daa3 100644 --- a/src/oci/opsi/models/create_pe_comanaged_exadata_insight_details.py +++ b/src/oci/opsi/models/create_pe_comanaged_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/create_pe_comanaged_exadata_vmcluster_details.py b/src/oci/opsi/models/create_pe_comanaged_exadata_vmcluster_details.py index 0ff8afbe93..d623ca6b82 100644 --- a/src/oci/opsi/models/create_pe_comanaged_exadata_vmcluster_details.py +++ b/src/oci/opsi/models/create_pe_comanaged_exadata_vmcluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/credential_by_iam.py b/src/oci/opsi/models/credential_by_iam.py index 04f4ccaa64..97e0ce03c6 100644 --- a/src/oci/opsi/models/credential_by_iam.py +++ b/src/oci/opsi/models/credential_by_iam.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/credential_by_vault.py b/src/oci/opsi/models/credential_by_vault.py index 493d320751..218bed646e 100644 --- a/src/oci/opsi/models/credential_by_vault.py +++ b/src/oci/opsi/models/credential_by_vault.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/credential_details.py b/src/oci/opsi/models/credential_details.py index c4baeeff53..a385969bab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/credentials_by_source.py b/src/oci/opsi/models/credentials_by_source.py index 67a7eed41b..985f08ca52 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_bind_parameter.py b/src/oci/opsi/models/data_object_bind_parameter.py index f6685b649b..b075eacaf4 100644 --- a/src/oci/opsi/models/data_object_bind_parameter.py +++ b/src/oci/opsi/models/data_object_bind_parameter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_column_metadata.py b/src/oci/opsi/models/data_object_column_metadata.py index 4b04ae2a06..39b46adc27 100644 --- a/src/oci/opsi/models/data_object_column_metadata.py +++ b/src/oci/opsi/models/data_object_column_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_column_unit.py b/src/oci/opsi/models/data_object_column_unit.py index 649d50dcfa..8d92de4098 100644 --- a/src/oci/opsi/models/data_object_column_unit.py +++ b/src/oci/opsi/models/data_object_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_core_column_unit.py b/src/oci/opsi/models/data_object_core_column_unit.py index 5ccb823537..d1cfbc240f 100644 --- a/src/oci/opsi/models/data_object_core_column_unit.py +++ b/src/oci/opsi/models/data_object_core_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_custom_column_unit.py b/src/oci/opsi/models/data_object_custom_column_unit.py index 591dc04564..e322d18da0 100644 --- a/src/oci/opsi/models/data_object_custom_column_unit.py +++ b/src/oci/opsi/models/data_object_custom_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_data_size_column_unit.py b/src/oci/opsi/models/data_object_data_size_column_unit.py index 04be0532f9..bbafd908c8 100644 --- a/src/oci/opsi/models/data_object_data_size_column_unit.py +++ b/src/oci/opsi/models/data_object_data_size_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_frequency_column_unit.py b/src/oci/opsi/models/data_object_frequency_column_unit.py index bfc1778f19..84ab46611a 100644 --- a/src/oci/opsi/models/data_object_frequency_column_unit.py +++ b/src/oci/opsi/models/data_object_frequency_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_other_standard_column_unit.py b/src/oci/opsi/models/data_object_other_standard_column_unit.py index f6a2fc5a4e..d347dd7413 100644 --- a/src/oci/opsi/models/data_object_other_standard_column_unit.py +++ b/src/oci/opsi/models/data_object_other_standard_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_power_column_unit.py b/src/oci/opsi/models/data_object_power_column_unit.py index 4a6d156e95..6a958421e9 100644 --- a/src/oci/opsi/models/data_object_power_column_unit.py +++ b/src/oci/opsi/models/data_object_power_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_query.py b/src/oci/opsi/models/data_object_query.py index 0fbb79803b..08d8c85242 100644 --- a/src/oci/opsi/models/data_object_query.py +++ b/src/oci/opsi/models/data_object_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_query_time_filters.py b/src/oci/opsi/models/data_object_query_time_filters.py index d15420aea4..0a50b2e1af 100644 --- a/src/oci/opsi/models/data_object_query_time_filters.py +++ b/src/oci/opsi/models/data_object_query_time_filters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_rate_column_unit.py b/src/oci/opsi/models/data_object_rate_column_unit.py index 515a46e73d..91096ea6fe 100644 --- a/src/oci/opsi/models/data_object_rate_column_unit.py +++ b/src/oci/opsi/models/data_object_rate_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_standard_query.py b/src/oci/opsi/models/data_object_standard_query.py index 9b5eeb0d88..f399109b9c 100644 --- a/src/oci/opsi/models/data_object_standard_query.py +++ b/src/oci/opsi/models/data_object_standard_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_temperature_column_unit.py b/src/oci/opsi/models/data_object_temperature_column_unit.py index 24f38e87e3..3d716ecdf2 100644 --- a/src/oci/opsi/models/data_object_temperature_column_unit.py +++ b/src/oci/opsi/models/data_object_temperature_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_templatized_query.py b/src/oci/opsi/models/data_object_templatized_query.py index 158223f45c..a174471829 100644 --- a/src/oci/opsi/models/data_object_templatized_query.py +++ b/src/oci/opsi/models/data_object_templatized_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/data_object_time_column_unit.py b/src/oci/opsi/models/data_object_time_column_unit.py index 9b4521b161..703595308a 100644 --- a/src/oci/opsi/models/data_object_time_column_unit.py +++ b/src/oci/opsi/models/data_object_time_column_unit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_configuration_collection.py b/src/oci/opsi/models/database_configuration_collection.py index a9fe911ad1..18dbdf04fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_configuration_metric_group.py b/src/oci/opsi/models/database_configuration_metric_group.py index 9e318680a4..5af31b26e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_configuration_summary.py b/src/oci/opsi/models/database_configuration_summary.py index 5f4ca36c79..8eb0b7fae3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_details.py b/src/oci/opsi/models/database_details.py index 93a5514f87..b2aba929db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_insight.py b/src/oci/opsi/models/database_insight.py index f733578b07..7c074cc823 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_insight_summary.py b/src/oci/opsi/models/database_insight_summary.py index d0d68ecdbd..121ae7ba18 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_insights.py b/src/oci/opsi/models/database_insights.py index cd666c3305..423831a2a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_insights_collection.py b/src/oci/opsi/models/database_insights_collection.py index 500a9c0ebf..50170fed0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_insights_data_object.py b/src/oci/opsi/models/database_insights_data_object.py index 00fbc6edf2..3b7d4aa05e 100644 --- a/src/oci/opsi/models/database_insights_data_object.py +++ b/src/oci/opsi/models/database_insights_data_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_insights_data_object_summary.py b/src/oci/opsi/models/database_insights_data_object_summary.py index 4f3fa75be2..1a93061cbb 100644 --- a/src/oci/opsi/models/database_insights_data_object_summary.py +++ b/src/oci/opsi/models/database_insights_data_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/database_parameter_type_details.py b/src/oci/opsi/models/database_parameter_type_details.py index 2f0e9ead97..89687b3765 100644 --- a/src/oci/opsi/models/database_parameter_type_details.py +++ b/src/oci/opsi/models/database_parameter_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/db_connection_status.py b/src/oci/opsi/models/db_connection_status.py index af7dc24a99..cd5b396721 100644 --- a/src/oci/opsi/models/db_connection_status.py +++ b/src/oci/opsi/models/db_connection_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/db_external_instance.py b/src/oci/opsi/models/db_external_instance.py index 2871bcc958..a46f7382fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/db_external_properties.py b/src/oci/opsi/models/db_external_properties.py index f4567deb6b..951397224e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/db_parameters.py b/src/oci/opsi/models/db_parameters.py index 272d4fef17..759c66c110 100644 --- a/src/oci/opsi/models/db_parameters.py +++ b/src/oci/opsi/models/db_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/dbos_config_instance.py b/src/oci/opsi/models/dbos_config_instance.py index 41d5faaaa1..0f13b4bc7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/disk_group_details.py b/src/oci/opsi/models/disk_group_details.py index ac36619458..cbe9877783 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/disk_statistics.py b/src/oci/opsi/models/disk_statistics.py index 7f02b017fe..796a9fceec 100644 --- a/src/oci/opsi/models/disk_statistics.py +++ b/src/oci/opsi/models/disk_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 c5b35c3c28..6ef30658fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 b04d9a8cb6..99f07d053c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 a4adf0cd56..2b36b76e22 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 ce543720e2..ad911da048 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 40a930d7eb..145340a169 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 43de1ed893..61bde3a998 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 0864571186..096f43f4cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 27f1fa708b..981ea15acf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 e67932470e..b6aa33968e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_autonomous_database_insight_advanced_features_details.py b/src/oci/opsi/models/enable_autonomous_database_insight_advanced_features_details.py index af428a9f92..b2f60ea0b2 100644 --- a/src/oci/opsi/models/enable_autonomous_database_insight_advanced_features_details.py +++ b/src/oci/opsi/models/enable_autonomous_database_insight_advanced_features_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_autonomous_database_insight_details.py b/src/oci/opsi/models/enable_autonomous_database_insight_details.py index 281ce293ba..0245e1c2c8 100644 --- a/src/oci/opsi/models/enable_autonomous_database_insight_details.py +++ b/src/oci/opsi/models/enable_autonomous_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_database_insight_details.py b/src/oci/opsi/models/enable_database_insight_details.py index ac3acc63a5..a7e8f6818d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 d0b216910d..d425b67673 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 1510201b8a..30adfc3fec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 f3a60886c7..b4d5964cb3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_exadata_insight_details.py b/src/oci/opsi/models/enable_exadata_insight_details.py index 76bf746c54..69485d1d6e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_host_insight_details.py b/src/oci/opsi/models/enable_host_insight_details.py index a8de2ab403..d64a13048c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_macs_managed_cloud_database_insight_details.py b/src/oci/opsi/models/enable_macs_managed_cloud_database_insight_details.py index 01b5f072af..0652706e6c 100644 --- a/src/oci/opsi/models/enable_macs_managed_cloud_database_insight_details.py +++ b/src/oci/opsi/models/enable_macs_managed_cloud_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_macs_managed_cloud_exadata_insight_details.py b/src/oci/opsi/models/enable_macs_managed_cloud_exadata_insight_details.py index e2383aa916..46c1c11282 100644 --- a/src/oci/opsi/models/enable_macs_managed_cloud_exadata_insight_details.py +++ b/src/oci/opsi/models/enable_macs_managed_cloud_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_macs_managed_cloud_host_insight_details.py b/src/oci/opsi/models/enable_macs_managed_cloud_host_insight_details.py index 4f24a0c246..0a02547f36 100644 --- a/src/oci/opsi/models/enable_macs_managed_cloud_host_insight_details.py +++ b/src/oci/opsi/models/enable_macs_managed_cloud_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 a1bd8b768e..15755d71da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_mds_my_sql_database_insight_details.py b/src/oci/opsi/models/enable_mds_my_sql_database_insight_details.py index 4ddd4c68b2..2c98f7b514 100644 --- a/src/oci/opsi/models/enable_mds_my_sql_database_insight_details.py +++ b/src/oci/opsi/models/enable_mds_my_sql_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_pe_comanaged_database_insight_details.py b/src/oci/opsi/models/enable_pe_comanaged_database_insight_details.py index 349685d913..300d455c08 100644 --- a/src/oci/opsi/models/enable_pe_comanaged_database_insight_details.py +++ b/src/oci/opsi/models/enable_pe_comanaged_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enable_pe_comanaged_exadata_insight_details.py b/src/oci/opsi/models/enable_pe_comanaged_exadata_insight_details.py index 120790fb2b..b7c4897b4d 100644 --- a/src/oci/opsi/models/enable_pe_comanaged_exadata_insight_details.py +++ b/src/oci/opsi/models/enable_pe_comanaged_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enterprise_manager_bridge.py b/src/oci/opsi/models/enterprise_manager_bridge.py index ff7f01d29d..799753b533 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enterprise_manager_bridge_collection.py b/src/oci/opsi/models/enterprise_manager_bridge_collection.py index ca90990d58..2e54101aae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enterprise_manager_bridge_summary.py b/src/oci/opsi/models/enterprise_manager_bridge_summary.py index a14c19f834..c89d466cdf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/enterprise_manager_bridges.py b/src/oci/opsi/models/enterprise_manager_bridges.py index 6cf71bf86e..37ca61c823 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_asm_entity.py b/src/oci/opsi/models/exadata_asm_entity.py index 08cffbee08..02b5e12245 100644 --- a/src/oci/opsi/models/exadata_asm_entity.py +++ b/src/oci/opsi/models/exadata_asm_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_cell_config.py b/src/oci/opsi/models/exadata_cell_config.py index 9f90ad6bc2..b5ce5a2eda 100644 --- a/src/oci/opsi/models/exadata_cell_config.py +++ b/src/oci/opsi/models/exadata_cell_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_configuration_collection.py b/src/oci/opsi/models/exadata_configuration_collection.py index c589b8aec7..327a81140a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_configuration_summary.py b/src/oci/opsi/models/exadata_configuration_summary.py index 7c44ad22ff..f4ee816238 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 8b6d9e1902..e5ea78d22c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_database_statistics_summary.py b/src/oci/opsi/models/exadata_database_statistics_summary.py index 849321b895..79f8ef3bf2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_details.py b/src/oci/opsi/models/exadata_details.py index 510d84a1e1..34853473e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_diskgroup_statistics_summary.py b/src/oci/opsi/models/exadata_diskgroup_statistics_summary.py index 647a60c758..c10f866c10 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_exacc_configuration_summary.py b/src/oci/opsi/models/exadata_exacc_configuration_summary.py index bfe405a539..8ceb740d02 100644 --- a/src/oci/opsi/models/exadata_exacc_configuration_summary.py +++ b/src/oci/opsi/models/exadata_exacc_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_exacs_configuration_summary.py b/src/oci/opsi/models/exadata_exacs_configuration_summary.py index 5963ed982c..8aeaa8ef9e 100644 --- a/src/oci/opsi/models/exadata_exacs_configuration_summary.py +++ b/src/oci/opsi/models/exadata_exacs_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_host_statistics_summary.py b/src/oci/opsi/models/exadata_host_statistics_summary.py index ad4957afe5..0318384c6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_insight.py b/src/oci/opsi/models/exadata_insight.py index 1b426339c4..05144fc78e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 6d68e55e07..d4c002f7ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 c6418bf563..b859fbd481 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 d7bfa65b3c..5c22f6ca85 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 157c347172..7565e91429 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_insight_resource_statistics.py b/src/oci/opsi/models/exadata_insight_resource_statistics.py index 654752ff0f..47c00ecaa3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 615b88c436..934a55d206 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_insight_summary.py b/src/oci/opsi/models/exadata_insight_summary.py index 856916b227..bae1799663 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_insight_summary_collection.py b/src/oci/opsi/models/exadata_insight_summary_collection.py index 6c0cdebc7d..cff2010700 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_insights.py b/src/oci/opsi/models/exadata_insights.py index cf33415e0e..42ea63f8de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_insights_data_object.py b/src/oci/opsi/models/exadata_insights_data_object.py index da6482f597..d7f6f94b40 100644 --- a/src/oci/opsi/models/exadata_insights_data_object.py +++ b/src/oci/opsi/models/exadata_insights_data_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_insights_data_object_summary.py b/src/oci/opsi/models/exadata_insights_data_object_summary.py index 6f4212f122..44568d5745 100644 --- a/src/oci/opsi/models/exadata_insights_data_object_summary.py +++ b/src/oci/opsi/models/exadata_insights_data_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_member_collection.py b/src/oci/opsi/models/exadata_member_collection.py index 9b38b3eed1..5d9e29a62f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/exadata_member_summary.py b/src/oci/opsi/models/exadata_member_summary.py index d92288ccd7..6c3b98c5b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 efe0d1944f..c85121fa78 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/historical_data_item.py b/src/oci/opsi/models/historical_data_item.py index c39934240f..c8a86a651c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_allocation.py b/src/oci/opsi/models/host_allocation.py index 069f6834ee..2e27021f84 100644 --- a/src/oci/opsi/models/host_allocation.py +++ b/src/oci/opsi/models/host_allocation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_configuration_collection.py b/src/oci/opsi/models/host_configuration_collection.py index 90d2e793c2..269a539a50 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_configuration_metric_group.py b/src/oci/opsi/models/host_configuration_metric_group.py index 487da09c0a..ce708ee486 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_configuration_summary.py b/src/oci/opsi/models/host_configuration_summary.py index 070482c546..754f643e5f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_containers.py b/src/oci/opsi/models/host_containers.py index 4fc8337706..a3ee93cac5 100644 --- a/src/oci/opsi/models/host_containers.py +++ b/src/oci/opsi/models/host_containers.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_cpu_hardware_configuration.py b/src/oci/opsi/models/host_cpu_hardware_configuration.py index 2551244988..248949b814 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_cpu_recommendations.py b/src/oci/opsi/models/host_cpu_recommendations.py index 87c48d167d..2528186423 100644 --- a/src/oci/opsi/models/host_cpu_recommendations.py +++ b/src/oci/opsi/models/host_cpu_recommendations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_cpu_statistics.py b/src/oci/opsi/models/host_cpu_statistics.py index 571f068065..da7b97dd1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_cpu_usage.py b/src/oci/opsi/models/host_cpu_usage.py index d9db542a68..a2c721fe94 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_details.py b/src/oci/opsi/models/host_details.py index 4db8b8a1b9..e1c1bf84e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_entities.py b/src/oci/opsi/models/host_entities.py index d79fd083e6..491b0f4503 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_filesystem_configuration.py b/src/oci/opsi/models/host_filesystem_configuration.py index 22bbeb9a15..e0488a5bd7 100644 --- a/src/oci/opsi/models/host_filesystem_configuration.py +++ b/src/oci/opsi/models/host_filesystem_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_filesystem_usage.py b/src/oci/opsi/models/host_filesystem_usage.py index 4c24f6d6fd..38e4ad4886 100644 --- a/src/oci/opsi/models/host_filesystem_usage.py +++ b/src/oci/opsi/models/host_filesystem_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_gpu_configuration.py b/src/oci/opsi/models/host_gpu_configuration.py index 09a31c8f5a..f5e288bd96 100644 --- a/src/oci/opsi/models/host_gpu_configuration.py +++ b/src/oci/opsi/models/host_gpu_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_gpu_processes.py b/src/oci/opsi/models/host_gpu_processes.py index e4341e8c27..2dbfbc0e70 100644 --- a/src/oci/opsi/models/host_gpu_processes.py +++ b/src/oci/opsi/models/host_gpu_processes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_gpu_usage.py b/src/oci/opsi/models/host_gpu_usage.py index fb2cc466a6..d0c253b657 100644 --- a/src/oci/opsi/models/host_gpu_usage.py +++ b/src/oci/opsi/models/host_gpu_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_hardware_configuration.py b/src/oci/opsi/models/host_hardware_configuration.py index 820041dfd0..fee15a7da6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 478e540d40..246018ae67 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_insight.py b/src/oci/opsi/models/host_insight.py index 48669c7b12..0e35ebd6cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_insight_host_recommendations.py b/src/oci/opsi/models/host_insight_host_recommendations.py index fa59264431..fa20240f93 100644 --- a/src/oci/opsi/models/host_insight_host_recommendations.py +++ b/src/oci/opsi/models/host_insight_host_recommendations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 4320f5724b..783689eb3d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_insight_summary.py b/src/oci/opsi/models/host_insight_summary.py index d9cf5de2be..a67d55e6b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_insight_summary_collection.py b/src/oci/opsi/models/host_insight_summary_collection.py index 2624c35b6b..3314b1e30c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_insights.py b/src/oci/opsi/models/host_insights.py index f56646edb5..3f2701cfa1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_insights_data_object.py b/src/oci/opsi/models/host_insights_data_object.py index bf7dbb8bb4..a467673af0 100644 --- a/src/oci/opsi/models/host_insights_data_object.py +++ b/src/oci/opsi/models/host_insights_data_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_insights_data_object_summary.py b/src/oci/opsi/models/host_insights_data_object_summary.py index 0baf3b39c6..bf9bb49201 100644 --- a/src/oci/opsi/models/host_insights_data_object_summary.py +++ b/src/oci/opsi/models/host_insights_data_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_instance_map.py b/src/oci/opsi/models/host_instance_map.py index ccb4927544..56accba5d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_io_statistics.py b/src/oci/opsi/models/host_io_statistics.py index 2402bead71..d3b72e85b7 100644 --- a/src/oci/opsi/models/host_io_statistics.py +++ b/src/oci/opsi/models/host_io_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_io_usage.py b/src/oci/opsi/models/host_io_usage.py index 989c909098..e2493c602a 100644 --- a/src/oci/opsi/models/host_io_usage.py +++ b/src/oci/opsi/models/host_io_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_memory_configuration.py b/src/oci/opsi/models/host_memory_configuration.py index 63a65b986e..6dd9463504 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_memory_recommendations.py b/src/oci/opsi/models/host_memory_recommendations.py index cb125b8348..40a2e1f0d8 100644 --- a/src/oci/opsi/models/host_memory_recommendations.py +++ b/src/oci/opsi/models/host_memory_recommendations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_memory_statistics.py b/src/oci/opsi/models/host_memory_statistics.py index 8ef9f89694..684fc305ed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_memory_usage.py b/src/oci/opsi/models/host_memory_usage.py index 2f037d4e42..47b28bb134 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_network_activity_summary.py b/src/oci/opsi/models/host_network_activity_summary.py index 5c74baeccf..e9e133d335 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_network_configuration.py b/src/oci/opsi/models/host_network_configuration.py index 613cd64073..608485d181 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_network_recommendations.py b/src/oci/opsi/models/host_network_recommendations.py index 70b5ad9515..2bb6a8817e 100644 --- a/src/oci/opsi/models/host_network_recommendations.py +++ b/src/oci/opsi/models/host_network_recommendations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_network_statistics.py b/src/oci/opsi/models/host_network_statistics.py index faa094e0b0..6baec222b0 100644 --- a/src/oci/opsi/models/host_network_statistics.py +++ b/src/oci/opsi/models/host_network_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_performance_metric_group.py b/src/oci/opsi/models/host_performance_metric_group.py index 47b458daf2..1bf9799f19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_product.py b/src/oci/opsi/models/host_product.py index 47493fbd2b..d6cc31c191 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_resource_allocation.py b/src/oci/opsi/models/host_resource_allocation.py index 58cd6fd7c1..67247b3b5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 4e753f86d4..46b637f894 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_resource_statistics.py b/src/oci/opsi/models/host_resource_statistics.py index d1addeb90c..2ed28110d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_storage_recommendations.py b/src/oci/opsi/models/host_storage_recommendations.py index e377f92c46..b5160b8f36 100644 --- a/src/oci/opsi/models/host_storage_recommendations.py +++ b/src/oci/opsi/models/host_storage_recommendations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_storage_statistics.py b/src/oci/opsi/models/host_storage_statistics.py index 35ed18d962..be0cc8b2ce 100644 --- a/src/oci/opsi/models/host_storage_statistics.py +++ b/src/oci/opsi/models/host_storage_statistics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/host_top_processes.py b/src/oci/opsi/models/host_top_processes.py index edf3636a28..40611cfba9 100644 --- a/src/oci/opsi/models/host_top_processes.py +++ b/src/oci/opsi/models/host_top_processes.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/hosted_entity_collection.py b/src/oci/opsi/models/hosted_entity_collection.py index dcfcbfc099..2057a0a12f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/hosted_entity_summary.py b/src/oci/opsi/models/hosted_entity_summary.py index fea5a4c82d..884ae40d52 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/importable_agent_entity_summary.py b/src/oci/opsi/models/importable_agent_entity_summary.py index 38095d7eba..e9bb13118f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 84f69ca621..73d2795991 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/importable_compute_entity_summary.py b/src/oci/opsi/models/importable_compute_entity_summary.py index bdeb09f47d..fe0f0ef558 100644 --- a/src/oci/opsi/models/importable_compute_entity_summary.py +++ b/src/oci/opsi/models/importable_compute_entity_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/importable_compute_entity_summary_collection.py b/src/oci/opsi/models/importable_compute_entity_summary_collection.py index 5459e689fc..c8a062630e 100644 --- a/src/oci/opsi/models/importable_compute_entity_summary_collection.py +++ b/src/oci/opsi/models/importable_compute_entity_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/importable_enterprise_manager_entity.py b/src/oci/opsi/models/importable_enterprise_manager_entity.py index 255003b15c..ffdccd004d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 24e12d467a..606595fb9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/individual_opsi_data_object_details_in_query.py b/src/oci/opsi/models/individual_opsi_data_object_details_in_query.py index 08906a37f6..4b472393c0 100644 --- a/src/oci/opsi/models/individual_opsi_data_object_details_in_query.py +++ b/src/oci/opsi/models/individual_opsi_data_object_details_in_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_addm_reports_details.py b/src/oci/opsi/models/ingest_addm_reports_details.py index 11ad9ad508..98a1b09875 100644 --- a/src/oci/opsi/models/ingest_addm_reports_details.py +++ b/src/oci/opsi/models/ingest_addm_reports_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_addm_reports_response_details.py b/src/oci/opsi/models/ingest_addm_reports_response_details.py index a2d6828114..1a05388644 100644 --- a/src/oci/opsi/models/ingest_addm_reports_response_details.py +++ b/src/oci/opsi/models/ingest_addm_reports_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_database_configuration_details.py b/src/oci/opsi/models/ingest_database_configuration_details.py index 864092d619..35fcea61d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 ae94569be9..3770c0adec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_host_configuration_details.py b/src/oci/opsi/models/ingest_host_configuration_details.py index 05c66f7e0f..3d01d17d44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 4fe412ed3c..1f996b73a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_host_metrics_details.py b/src/oci/opsi/models/ingest_host_metrics_details.py index 099fbf3c81..5fccacdd9e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 ebf0ce4a7a..ea4652e9f4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_my_sql_sql_stats_details.py b/src/oci/opsi/models/ingest_my_sql_sql_stats_details.py index e1f7dad3e1..d9ec5a5b64 100644 --- a/src/oci/opsi/models/ingest_my_sql_sql_stats_details.py +++ b/src/oci/opsi/models/ingest_my_sql_sql_stats_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_my_sql_sql_stats_response_details.py b/src/oci/opsi/models/ingest_my_sql_sql_stats_response_details.py index a2ea742786..5972a77c86 100644 --- a/src/oci/opsi/models/ingest_my_sql_sql_stats_response_details.py +++ b/src/oci/opsi/models/ingest_my_sql_sql_stats_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_my_sql_sql_text_details.py b/src/oci/opsi/models/ingest_my_sql_sql_text_details.py index 193325ca5e..b97b680cdc 100644 --- a/src/oci/opsi/models/ingest_my_sql_sql_text_details.py +++ b/src/oci/opsi/models/ingest_my_sql_sql_text_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_my_sql_sql_text_response_details.py b/src/oci/opsi/models/ingest_my_sql_sql_text_response_details.py index ac56064d8d..1ca7168efd 100644 --- a/src/oci/opsi/models/ingest_my_sql_sql_text_response_details.py +++ b/src/oci/opsi/models/ingest_my_sql_sql_text_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_sql_bucket_details.py b/src/oci/opsi/models/ingest_sql_bucket_details.py index 5b27d79082..223ff4b7a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 ae2c976d5d..d3d1c2a10d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 aace73d142..247852b97c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 83fde4ddc6..ac4c3c1bc6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_sql_stats_details.py b/src/oci/opsi/models/ingest_sql_stats_details.py index f499675c4e..b90c4d950d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 399e524ebc..da5ef118f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ingest_sql_text_details.py b/src/oci/opsi/models/ingest_sql_text_details.py index f317d3de2d..9f0b802e6d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 1074eb2ffd..064d6cf866 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/instance_metrics.py b/src/oci/opsi/models/instance_metrics.py index 53bb28ef44..8c31b740d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/io_usage_trend.py b/src/oci/opsi/models/io_usage_trend.py index 1ac9921fa2..ec785c91bd 100644 --- a/src/oci/opsi/models/io_usage_trend.py +++ b/src/oci/opsi/models/io_usage_trend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/io_usage_trend_aggregation.py b/src/oci/opsi/models/io_usage_trend_aggregation.py index 99108df576..c31b1a79e6 100644 --- a/src/oci/opsi/models/io_usage_trend_aggregation.py +++ b/src/oci/opsi/models/io_usage_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/list_objects.py b/src/oci/opsi/models/list_objects.py index 935b26a977..0e18b15e65 100644 --- a/src/oci/opsi/models/list_objects.py +++ b/src/oci/opsi/models/list_objects.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_database_configuration_summary.py b/src/oci/opsi/models/macs_managed_cloud_database_configuration_summary.py index 8d5d53146b..efb07733cc 100644 --- a/src/oci/opsi/models/macs_managed_cloud_database_configuration_summary.py +++ b/src/oci/opsi/models/macs_managed_cloud_database_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_database_host_insight.py b/src/oci/opsi/models/macs_managed_cloud_database_host_insight.py index bcd2bbd7ae..f447fa55b1 100644 --- a/src/oci/opsi/models/macs_managed_cloud_database_host_insight.py +++ b/src/oci/opsi/models/macs_managed_cloud_database_host_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_database_host_insight_summary.py b/src/oci/opsi/models/macs_managed_cloud_database_host_insight_summary.py index e1f25d9438..d7e999be0d 100644 --- a/src/oci/opsi/models/macs_managed_cloud_database_host_insight_summary.py +++ b/src/oci/opsi/models/macs_managed_cloud_database_host_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_database_insight.py b/src/oci/opsi/models/macs_managed_cloud_database_insight.py index 7e68d2deb4..ef623cbc94 100644 --- a/src/oci/opsi/models/macs_managed_cloud_database_insight.py +++ b/src/oci/opsi/models/macs_managed_cloud_database_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_database_insight_summary.py b/src/oci/opsi/models/macs_managed_cloud_database_insight_summary.py index 2db3b316e2..27c62935e9 100644 --- a/src/oci/opsi/models/macs_managed_cloud_database_insight_summary.py +++ b/src/oci/opsi/models/macs_managed_cloud_database_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_db_host_configuration_summary.py b/src/oci/opsi/models/macs_managed_cloud_db_host_configuration_summary.py index ff099df656..b901da373b 100644 --- a/src/oci/opsi/models/macs_managed_cloud_db_host_configuration_summary.py +++ b/src/oci/opsi/models/macs_managed_cloud_db_host_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_exadata_insight.py b/src/oci/opsi/models/macs_managed_cloud_exadata_insight.py index abb721a6b6..53a1f25cf2 100644 --- a/src/oci/opsi/models/macs_managed_cloud_exadata_insight.py +++ b/src/oci/opsi/models/macs_managed_cloud_exadata_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_exadata_insight_summary.py b/src/oci/opsi/models/macs_managed_cloud_exadata_insight_summary.py index d984d14614..95a9ea94c8 100644 --- a/src/oci/opsi/models/macs_managed_cloud_exadata_insight_summary.py +++ b/src/oci/opsi/models/macs_managed_cloud_exadata_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_host_configuration_summary.py b/src/oci/opsi/models/macs_managed_cloud_host_configuration_summary.py index 9313f118f2..77ab3d086e 100644 --- a/src/oci/opsi/models/macs_managed_cloud_host_configuration_summary.py +++ b/src/oci/opsi/models/macs_managed_cloud_host_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_host_insight.py b/src/oci/opsi/models/macs_managed_cloud_host_insight.py index 3b87b1d36e..50e919c9f1 100644 --- a/src/oci/opsi/models/macs_managed_cloud_host_insight.py +++ b/src/oci/opsi/models/macs_managed_cloud_host_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/macs_managed_cloud_host_insight_summary.py b/src/oci/opsi/models/macs_managed_cloud_host_insight_summary.py index be001a83eb..1f44cbb5d6 100644 --- a/src/oci/opsi/models/macs_managed_cloud_host_insight_summary.py +++ b/src/oci/opsi/models/macs_managed_cloud_host_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 296c2341c0..369088b263 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 af56350e7a..94efb369e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 7ac1eb54b2..99fa579d65 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 d942f8abe6..e1b195766d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 66299a8a47..d267b9e806 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 641d77b794..d59751d191 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/mds_my_sql_database_insight.py b/src/oci/opsi/models/mds_my_sql_database_insight.py index b7dcee48c9..8a3293aca7 100644 --- a/src/oci/opsi/models/mds_my_sql_database_insight.py +++ b/src/oci/opsi/models/mds_my_sql_database_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/mds_my_sql_database_insight_summary.py b/src/oci/opsi/models/mds_my_sql_database_insight_summary.py index 2aa517a6e3..5a44b03dc7 100644 --- a/src/oci/opsi/models/mds_my_sql_database_insight_summary.py +++ b/src/oci/opsi/models/mds_my_sql_database_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/mds_mysql_database_configuration_summary.py b/src/oci/opsi/models/mds_mysql_database_configuration_summary.py index eb2054b5da..79bfef8e95 100644 --- a/src/oci/opsi/models/mds_mysql_database_configuration_summary.py +++ b/src/oci/opsi/models/mds_mysql_database_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/my_sql_sql_stats.py b/src/oci/opsi/models/my_sql_sql_stats.py index 230c0e25e6..e6b36aa031 100644 --- a/src/oci/opsi/models/my_sql_sql_stats.py +++ b/src/oci/opsi/models/my_sql_sql_stats.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/my_sql_sql_text.py b/src/oci/opsi/models/my_sql_sql_text.py index 4280740418..20d04875be 100644 --- a/src/oci/opsi/models/my_sql_sql_text.py +++ b/src/oci/opsi/models/my_sql_sql_text.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/network_usage_trend.py b/src/oci/opsi/models/network_usage_trend.py index 21de3c12ab..fa0b98e8b9 100644 --- a/src/oci/opsi/models/network_usage_trend.py +++ b/src/oci/opsi/models/network_usage_trend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/network_usage_trend_aggregation.py b/src/oci/opsi/models/network_usage_trend_aggregation.py index 01e5a7aa79..1c7f8a26b8 100644 --- a/src/oci/opsi/models/network_usage_trend_aggregation.py +++ b/src/oci/opsi/models/network_usage_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/news_content_types.py b/src/oci/opsi/models/news_content_types.py index 76da86c592..aebbefb45d 100644 --- a/src/oci/opsi/models/news_content_types.py +++ b/src/oci/opsi/models/news_content_types.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/news_report.py b/src/oci/opsi/models/news_report.py index 78ae2b4e8a..666d5e7312 100644 --- a/src/oci/opsi/models/news_report.py +++ b/src/oci/opsi/models/news_report.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/news_report_collection.py b/src/oci/opsi/models/news_report_collection.py index 7cca396a67..f2ed43207a 100644 --- a/src/oci/opsi/models/news_report_collection.py +++ b/src/oci/opsi/models/news_report_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/news_report_summary.py b/src/oci/opsi/models/news_report_summary.py index f53594dc9e..141f707c7a 100644 --- a/src/oci/opsi/models/news_report_summary.py +++ b/src/oci/opsi/models/news_report_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/news_reports.py b/src/oci/opsi/models/news_reports.py index 58580a0e23..6cbfeb991f 100644 --- a/src/oci/opsi/models/news_reports.py +++ b/src/oci/opsi/models/news_reports.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/object_summary.py b/src/oci/opsi/models/object_summary.py index aa727a51a8..23d92ed3a3 100644 --- a/src/oci/opsi/models/object_summary.py +++ b/src/oci/opsi/models/object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/operations_insights_private_endpoint.py b/src/oci/opsi/models/operations_insights_private_endpoint.py index 7e075182fd..bdd437ac00 100644 --- a/src/oci/opsi/models/operations_insights_private_endpoint.py +++ b/src/oci/opsi/models/operations_insights_private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/operations_insights_private_endpoint_collection.py b/src/oci/opsi/models/operations_insights_private_endpoint_collection.py index 7cdaaddd15..9e01ecf332 100644 --- a/src/oci/opsi/models/operations_insights_private_endpoint_collection.py +++ b/src/oci/opsi/models/operations_insights_private_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/operations_insights_private_endpoint_summary.py b/src/oci/opsi/models/operations_insights_private_endpoint_summary.py index 83d1da190c..4de2905739 100644 --- a/src/oci/opsi/models/operations_insights_private_endpoint_summary.py +++ b/src/oci/opsi/models/operations_insights_private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/operations_insights_warehouse.py b/src/oci/opsi/models/operations_insights_warehouse.py index c3d05545e5..72ad57ac65 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/operations_insights_warehouse_summary.py b/src/oci/opsi/models/operations_insights_warehouse_summary.py index 554bbf4a79..6aedefc59a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 9efbc2de29..f2d1e0568e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/operations_insights_warehouse_user.py b/src/oci/opsi/models/operations_insights_warehouse_user.py index 1d06ea4ef4..350dff72cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 938fffc185..6db6a1c5b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 0e40c66b1a..88c137bd2e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/operations_insights_warehouse_users.py b/src/oci/opsi/models/operations_insights_warehouse_users.py index 4ef3da2ba8..e0602a8b9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/operations_insights_warehouses.py b/src/oci/opsi/models/operations_insights_warehouses.py index 6cb7966a50..8226dde677 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_configuration.py b/src/oci/opsi/models/opsi_configuration.py index 8047cc7762..bc4816fd66 100644 --- a/src/oci/opsi/models/opsi_configuration.py +++ b/src/oci/opsi/models/opsi_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_configuration_basic_configuration_item_summary.py b/src/oci/opsi/models/opsi_configuration_basic_configuration_item_summary.py index 89c0ccb4b8..02db6137d8 100644 --- a/src/oci/opsi/models/opsi_configuration_basic_configuration_item_summary.py +++ b/src/oci/opsi/models/opsi_configuration_basic_configuration_item_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_configuration_configuration_item_summary.py b/src/oci/opsi/models/opsi_configuration_configuration_item_summary.py index a6da5bbcf1..dc87d8a6fd 100644 --- a/src/oci/opsi/models/opsi_configuration_configuration_item_summary.py +++ b/src/oci/opsi/models/opsi_configuration_configuration_item_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_configuration_summary.py b/src/oci/opsi/models/opsi_configuration_summary.py index 4856b2e3e6..df30c42fcf 100644 --- a/src/oci/opsi/models/opsi_configuration_summary.py +++ b/src/oci/opsi/models/opsi_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_configurations.py b/src/oci/opsi/models/opsi_configurations.py index 55c27b9ce1..d33cb5d12d 100644 --- a/src/oci/opsi/models/opsi_configurations.py +++ b/src/oci/opsi/models/opsi_configurations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_configurations_collection.py b/src/oci/opsi/models/opsi_configurations_collection.py index 542355a38a..1421e95a7d 100644 --- a/src/oci/opsi/models/opsi_configurations_collection.py +++ b/src/oci/opsi/models/opsi_configurations_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_data_object.py b/src/oci/opsi/models/opsi_data_object.py index 3c5e3e8337..f96ce7c970 100644 --- a/src/oci/opsi/models/opsi_data_object.py +++ b/src/oci/opsi/models/opsi_data_object.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_data_object_details_in_query.py b/src/oci/opsi/models/opsi_data_object_details_in_query.py index 1c4091f1ab..701149c27b 100644 --- a/src/oci/opsi/models/opsi_data_object_details_in_query.py +++ b/src/oci/opsi/models/opsi_data_object_details_in_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_data_object_query_param.py b/src/oci/opsi/models/opsi_data_object_query_param.py index 2a2515e289..8e7387c8af 100644 --- a/src/oci/opsi/models/opsi_data_object_query_param.py +++ b/src/oci/opsi/models/opsi_data_object_query_param.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_data_object_summary.py b/src/oci/opsi/models/opsi_data_object_summary.py index e281ab74d9..b1075b6a99 100644 --- a/src/oci/opsi/models/opsi_data_object_summary.py +++ b/src/oci/opsi/models/opsi_data_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_data_object_supported_query_param.py b/src/oci/opsi/models/opsi_data_object_supported_query_param.py index 3e3b4011db..a3e7b33f5a 100644 --- a/src/oci/opsi/models/opsi_data_object_supported_query_param.py +++ b/src/oci/opsi/models/opsi_data_object_supported_query_param.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_data_object_type_opsi_data_object_details_in_query.py b/src/oci/opsi/models/opsi_data_object_type_opsi_data_object_details_in_query.py index 3520971eea..b230cbbe0b 100644 --- a/src/oci/opsi/models/opsi_data_object_type_opsi_data_object_details_in_query.py +++ b/src/oci/opsi/models/opsi_data_object_type_opsi_data_object_details_in_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_data_objects.py b/src/oci/opsi/models/opsi_data_objects.py index 0115e15010..62b1bfe4f4 100644 --- a/src/oci/opsi/models/opsi_data_objects.py +++ b/src/oci/opsi/models/opsi_data_objects.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_data_objects_collection.py b/src/oci/opsi/models/opsi_data_objects_collection.py index 04a24cb6f3..033fdf7038 100644 --- a/src/oci/opsi/models/opsi_data_objects_collection.py +++ b/src/oci/opsi/models/opsi_data_objects_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_ux_configuration.py b/src/oci/opsi/models/opsi_ux_configuration.py index 7deac1919c..5b4a25a44d 100644 --- a/src/oci/opsi/models/opsi_ux_configuration.py +++ b/src/oci/opsi/models/opsi_ux_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_ux_configuration_summary.py b/src/oci/opsi/models/opsi_ux_configuration_summary.py index 61d0d0fcb1..676602421f 100644 --- a/src/oci/opsi/models/opsi_ux_configuration_summary.py +++ b/src/oci/opsi/models/opsi_ux_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/opsi_warehouse_data_objects.py b/src/oci/opsi/models/opsi_warehouse_data_objects.py index 882499a592..c16ffe0303 100644 --- a/src/oci/opsi/models/opsi_warehouse_data_objects.py +++ b/src/oci/opsi/models/opsi_warehouse_data_objects.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_database_connection_details.py b/src/oci/opsi/models/pe_comanaged_database_connection_details.py index 8ca78f7b8f..bb198fbf48 100644 --- a/src/oci/opsi/models/pe_comanaged_database_connection_details.py +++ b/src/oci/opsi/models/pe_comanaged_database_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_database_host_details.py b/src/oci/opsi/models/pe_comanaged_database_host_details.py index f6d8586276..871a519001 100644 --- a/src/oci/opsi/models/pe_comanaged_database_host_details.py +++ b/src/oci/opsi/models/pe_comanaged_database_host_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_database_insight.py b/src/oci/opsi/models/pe_comanaged_database_insight.py index 3934ef6677..cfb37d5f5a 100644 --- a/src/oci/opsi/models/pe_comanaged_database_insight.py +++ b/src/oci/opsi/models/pe_comanaged_database_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_database_insight_summary.py b/src/oci/opsi/models/pe_comanaged_database_insight_summary.py index be9c4b4b59..5f4f55248d 100644 --- a/src/oci/opsi/models/pe_comanaged_database_insight_summary.py +++ b/src/oci/opsi/models/pe_comanaged_database_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_exadata_insight.py b/src/oci/opsi/models/pe_comanaged_exadata_insight.py index 22701c2d59..7ce520e98d 100644 --- a/src/oci/opsi/models/pe_comanaged_exadata_insight.py +++ b/src/oci/opsi/models/pe_comanaged_exadata_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_exadata_insight_summary.py b/src/oci/opsi/models/pe_comanaged_exadata_insight_summary.py index 598cad169e..836f3af867 100644 --- a/src/oci/opsi/models/pe_comanaged_exadata_insight_summary.py +++ b/src/oci/opsi/models/pe_comanaged_exadata_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_host_configuration_summary.py b/src/oci/opsi/models/pe_comanaged_host_configuration_summary.py index ac378aab22..ec22445b4d 100644 --- a/src/oci/opsi/models/pe_comanaged_host_configuration_summary.py +++ b/src/oci/opsi/models/pe_comanaged_host_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_host_insight.py b/src/oci/opsi/models/pe_comanaged_host_insight.py index fefdcc9a29..4b30d16d6d 100644 --- a/src/oci/opsi/models/pe_comanaged_host_insight.py +++ b/src/oci/opsi/models/pe_comanaged_host_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_host_insight_summary.py b/src/oci/opsi/models/pe_comanaged_host_insight_summary.py index c36e7bdc05..429241c9b9 100644 --- a/src/oci/opsi/models/pe_comanaged_host_insight_summary.py +++ b/src/oci/opsi/models/pe_comanaged_host_insight_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/pe_comanaged_managed_external_database_configuration_summary.py b/src/oci/opsi/models/pe_comanaged_managed_external_database_configuration_summary.py index acc6fa2694..83ea432ddb 100644 --- a/src/oci/opsi/models/pe_comanaged_managed_external_database_configuration_summary.py +++ b/src/oci/opsi/models/pe_comanaged_managed_external_database_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/projected_data_item.py b/src/oci/opsi/models/projected_data_item.py index 4d958cc2ec..a42c819894 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/query_data_object_json_result_set_rows_collection.py b/src/oci/opsi/models/query_data_object_json_result_set_rows_collection.py index 779fe69d37..1c85944691 100644 --- a/src/oci/opsi/models/query_data_object_json_result_set_rows_collection.py +++ b/src/oci/opsi/models/query_data_object_json_result_set_rows_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/query_data_object_result_set_column_metadata.py b/src/oci/opsi/models/query_data_object_result_set_column_metadata.py index 53b938a9ab..7ee4c8f92a 100644 --- a/src/oci/opsi/models/query_data_object_result_set_column_metadata.py +++ b/src/oci/opsi/models/query_data_object_result_set_column_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/query_data_object_result_set_rows_collection.py b/src/oci/opsi/models/query_data_object_result_set_rows_collection.py index 48573c2adf..d8a7f10199 100644 --- a/src/oci/opsi/models/query_data_object_result_set_rows_collection.py +++ b/src/oci/opsi/models/query_data_object_result_set_rows_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/query_opsi_data_object_data_details.py b/src/oci/opsi/models/query_opsi_data_object_data_details.py index 6d392aa7f8..52035766f0 100644 --- a/src/oci/opsi/models/query_opsi_data_object_data_details.py +++ b/src/oci/opsi/models/query_opsi_data_object_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/query_warehouse_data_object_data_details.py b/src/oci/opsi/models/query_warehouse_data_object_data_details.py index dff6ff38f9..ef0bc248d4 100644 --- a/src/oci/opsi/models/query_warehouse_data_object_data_details.py +++ b/src/oci/opsi/models/query_warehouse_data_object_data_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/related_object_type_details.py b/src/oci/opsi/models/related_object_type_details.py index 96f5d24b44..c659e9f4d0 100644 --- a/src/oci/opsi/models/related_object_type_details.py +++ b/src/oci/opsi/models/related_object_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/resource_capacity_trend_aggregation.py b/src/oci/opsi/models/resource_capacity_trend_aggregation.py index a221c26c88..4846822183 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/resource_filters.py b/src/oci/opsi/models/resource_filters.py index 581a96e77f..efe1831df1 100644 --- a/src/oci/opsi/models/resource_filters.py +++ b/src/oci/opsi/models/resource_filters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/resource_insight_current_utilization.py b/src/oci/opsi/models/resource_insight_current_utilization.py index d5da4fbe39..b6642e3187 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/resource_insight_projected_utilization.py b/src/oci/opsi/models/resource_insight_projected_utilization.py index 8ad5661fc8..ef7c52c24c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 40e86d3351..bda3489fbf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/resource_statistics.py b/src/oci/opsi/models/resource_statistics.py index fc7f2d9ff1..b7137dc235 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/resource_statistics_aggregation.py b/src/oci/opsi/models/resource_statistics_aggregation.py index 61418b7589..58dc0ba83f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/resource_usage_summary.py b/src/oci/opsi/models/resource_usage_summary.py index 12c19dddfd..178aff37e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/resource_usage_trend_aggregation.py b/src/oci/opsi/models/resource_usage_trend_aggregation.py index 2e4a0a8855..f40b9f4d46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/schema_object_type_details.py b/src/oci/opsi/models/schema_object_type_details.py index e494b8e5b0..1b23e34912 100644 --- a/src/oci/opsi/models/schema_object_type_details.py +++ b/src/oci/opsi/models/schema_object_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_bucket.py b/src/oci/opsi/models/sql_bucket.py index ee50faf137..c3d8799d3e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_insight_aggregation.py b/src/oci/opsi/models/sql_insight_aggregation.py index 770b34d6f7..e9b1a545c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_insight_aggregation_collection.py b/src/oci/opsi/models/sql_insight_aggregation_collection.py index 77363a3ef5..39f045368a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_insight_thresholds.py b/src/oci/opsi/models/sql_insight_thresholds.py index aeb3cb5096..ffcf070b37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_inventory.py b/src/oci/opsi/models/sql_inventory.py index 7e796b5eeb..3a0a99b535 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_plan_collection.py b/src/oci/opsi/models/sql_plan_collection.py index b62165bbeb..dc46626a1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_plan_insight_aggregation.py b/src/oci/opsi/models/sql_plan_insight_aggregation.py index 42ed9c22ef..ac0a87a867 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 997d36a506..1f3ede5e7d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_plan_insights.py b/src/oci/opsi/models/sql_plan_insights.py index c8a9710b1f..ab1ca32773 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_plan_line.py b/src/oci/opsi/models/sql_plan_line.py index b2e77dd494..8d7d76f329 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_plan_summary.py b/src/oci/opsi/models/sql_plan_summary.py index 54704ad38b..7ac18157c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 da20e8b443..dfdc0f074d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 3c95b712bc..6d4fad5ed2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_search_collection.py b/src/oci/opsi/models/sql_search_collection.py index 4a534cfa96..778e40c5a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_search_summary.py b/src/oci/opsi/models/sql_search_summary.py index 765f509f5e..f34f0f74eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_statistic_aggregation.py b/src/oci/opsi/models/sql_statistic_aggregation.py index 66e6de6349..53dd570c0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_statistic_aggregation_collection.py b/src/oci/opsi/models/sql_statistic_aggregation_collection.py index 9f0409f16c..5c076a6d44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_statistics.py b/src/oci/opsi/models/sql_statistics.py index 80ebf8531b..88aba8b09a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_statistics_time_series.py b/src/oci/opsi/models/sql_statistics_time_series.py index c25f50bcdd..f5a6eec903 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 3449d12281..f25fa30695 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 bbb0a3010a..a2edcdaa97 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 01329bf0ad..ece5cdbc1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 21258588db..be4a54850c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_stats.py b/src/oci/opsi/models/sql_stats.py index 89e8df5c6e..6c9228c35c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_text.py b/src/oci/opsi/models/sql_text.py index 4c7336103f..05f4c7a68a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_text_collection.py b/src/oci/opsi/models/sql_text_collection.py index de20aaf6c4..31473d2a76 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_text_summary.py b/src/oci/opsi/models/sql_text_summary.py index e866e1ecff..d9684dee58 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/sql_type_details.py b/src/oci/opsi/models/sql_type_details.py index 3c85f8b9b1..60e33542f1 100644 --- a/src/oci/opsi/models/sql_type_details.py +++ b/src/oci/opsi/models/sql_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/storage_server_details.py b/src/oci/opsi/models/storage_server_details.py index 970559dbf9..3ce3080488 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/storage_usage_trend.py b/src/oci/opsi/models/storage_usage_trend.py index d05bf1150a..269bfbdbd4 100644 --- a/src/oci/opsi/models/storage_usage_trend.py +++ b/src/oci/opsi/models/storage_usage_trend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/storage_usage_trend_aggregation.py b/src/oci/opsi/models/storage_usage_trend_aggregation.py index 17bbb7eef2..6d20ddd02e 100644 --- a/src/oci/opsi/models/storage_usage_trend_aggregation.py +++ b/src/oci/opsi/models/storage_usage_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 902a03ffdc..a14bdb2332 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 ec0a370b66..a1675ee293 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 643539fb97..fe96b86591 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 5827084418..f18b8ae99c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 a95598841e..c0f1270f38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 a337555100..6d9cf5bffb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 0fccd60c12..43d82879b5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 effa96cfb5..7bb9bc914a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 2998dd2421..d4f527a714 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 aa099c79d8..16214c6d95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 0b4fdee6f8..3d2a08bb93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 79cf4b0750..ce54526c90 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 ecb95a0cb9..ebbb75eb51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 db075d5196..f56052128b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 f279cbb9ba..3185f3887e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 70d5b3e9fe..6342a36aff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/summarize_host_insight_host_recommendation_aggregation.py b/src/oci/opsi/models/summarize_host_insight_host_recommendation_aggregation.py index 9ba311272d..f81a081bbc 100644 --- a/src/oci/opsi/models/summarize_host_insight_host_recommendation_aggregation.py +++ b/src/oci/opsi/models/summarize_host_insight_host_recommendation_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/summarize_host_insight_io_usage_trend_aggregation_collection.py b/src/oci/opsi/models/summarize_host_insight_io_usage_trend_aggregation_collection.py index 776b805031..48090f7956 100644 --- a/src/oci/opsi/models/summarize_host_insight_io_usage_trend_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_host_insight_io_usage_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/summarize_host_insight_network_usage_trend_aggregation_collection.py b/src/oci/opsi/models/summarize_host_insight_network_usage_trend_aggregation_collection.py index 0e7cbb6348..56fbe1af66 100644 --- a/src/oci/opsi/models/summarize_host_insight_network_usage_trend_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_host_insight_network_usage_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 2954d45c29..1627ccb971 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 e8f8715bd6..3546cf3ac9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 736bce1a75..3d49144f8d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 b8ebeb5f59..5300bd096b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 1b816d1293..37908b9a9f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 c7e2dd3bed..b8811bd7e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/summarize_host_insight_storage_usage_trend_aggregation_collection.py b/src/oci/opsi/models/summarize_host_insight_storage_usage_trend_aggregation_collection.py index 24fdb3984f..5299ee767b 100644 --- a/src/oci/opsi/models/summarize_host_insight_storage_usage_trend_aggregation_collection.py +++ b/src/oci/opsi/models/summarize_host_insight_storage_usage_trend_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/summarize_host_insights_disk_statistics_collection.py b/src/oci/opsi/models/summarize_host_insights_disk_statistics_collection.py index 6251c94a08..6269b07eda 100644 --- a/src/oci/opsi/models/summarize_host_insights_disk_statistics_collection.py +++ b/src/oci/opsi/models/summarize_host_insights_disk_statistics_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/summarize_host_insights_top_processes_usage_collection.py b/src/oci/opsi/models/summarize_host_insights_top_processes_usage_collection.py index 9c2854388e..59a0c0bfb5 100644 --- a/src/oci/opsi/models/summarize_host_insights_top_processes_usage_collection.py +++ b/src/oci/opsi/models/summarize_host_insights_top_processes_usage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/summarize_host_insights_top_processes_usage_trend_collection.py b/src/oci/opsi/models/summarize_host_insights_top_processes_usage_trend_collection.py index 4af45eb4ca..913ce3d77f 100644 --- a/src/oci/opsi/models/summarize_host_insights_top_processes_usage_trend_collection.py +++ b/src/oci/opsi/models/summarize_host_insights_top_processes_usage_trend_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 c531015d98..9de7b1bc2d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/summary_statistics.py b/src/oci/opsi/models/summary_statistics.py index 4676f098fd..0225733e47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/tablespace_usage_trend.py b/src/oci/opsi/models/tablespace_usage_trend.py index a495bc99d1..4a840fde52 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/tablespace_usage_trend_aggregation.py b/src/oci/opsi/models/tablespace_usage_trend_aggregation.py index 97c4e7827e..48770c2405 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/test_macs_managed_cloud_database_insight_connection_details.py b/src/oci/opsi/models/test_macs_managed_cloud_database_insight_connection_details.py index 468f4504d1..d17c87eee2 100644 --- a/src/oci/opsi/models/test_macs_managed_cloud_database_insight_connection_details.py +++ b/src/oci/opsi/models/test_macs_managed_cloud_database_insight_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/top_processes_usage.py b/src/oci/opsi/models/top_processes_usage.py index 6950a1c560..1163b008fc 100644 --- a/src/oci/opsi/models/top_processes_usage.py +++ b/src/oci/opsi/models/top_processes_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/top_processes_usage_trend.py b/src/oci/opsi/models/top_processes_usage_trend.py index 125b2e48f7..04e2872cf6 100644 --- a/src/oci/opsi/models/top_processes_usage_trend.py +++ b/src/oci/opsi/models/top_processes_usage_trend.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/top_processes_usage_trend_aggregation.py b/src/oci/opsi/models/top_processes_usage_trend_aggregation.py index a7ad6b2ec6..400a469d64 100644 --- a/src/oci/opsi/models/top_processes_usage_trend_aggregation.py +++ b/src/oci/opsi/models/top_processes_usage_trend_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 82610e3b47..81b1ba349f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_awr_hub_details.py b/src/oci/opsi/models/update_awr_hub_details.py index 6f69178ef8..e35c95d62e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_awr_hub_source_details.py b/src/oci/opsi/models/update_awr_hub_source_details.py index 5a0c12a46f..ae18ca2da6 100644 --- a/src/oci/opsi/models/update_awr_hub_source_details.py +++ b/src/oci/opsi/models/update_awr_hub_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_basic_configuration_item_details.py b/src/oci/opsi/models/update_basic_configuration_item_details.py index 2d9af699fe..bcb097ce6c 100644 --- a/src/oci/opsi/models/update_basic_configuration_item_details.py +++ b/src/oci/opsi/models/update_basic_configuration_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_configuration_item_details.py b/src/oci/opsi/models/update_configuration_item_details.py index 4ec0073f84..0857cebdea 100644 --- a/src/oci/opsi/models/update_configuration_item_details.py +++ b/src/oci/opsi/models/update_configuration_item_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_database_insight_details.py b/src/oci/opsi/models/update_database_insight_details.py index a12a89a4b7..649bd9be93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 9a8c5e026a..84812616ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 926eac92a5..5731772f1c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 bd3b8ba12a..6ceb4b2908 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 a5a74bf055..c1fa0eb54f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_exadata_insight_details.py b/src/oci/opsi/models/update_exadata_insight_details.py index 1758d8e4e9..d9e8eeceab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_host_insight_details.py b/src/oci/opsi/models/update_host_insight_details.py index d6c2f6ee34..3095a1b218 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_macs_managed_cloud_database_host_insight_details.py b/src/oci/opsi/models/update_macs_managed_cloud_database_host_insight_details.py index b8ad03c4c0..38ddec8ba8 100644 --- a/src/oci/opsi/models/update_macs_managed_cloud_database_host_insight_details.py +++ b/src/oci/opsi/models/update_macs_managed_cloud_database_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_macs_managed_cloud_database_insight_details.py b/src/oci/opsi/models/update_macs_managed_cloud_database_insight_details.py index fc991c3690..9a4cfed9be 100644 --- a/src/oci/opsi/models/update_macs_managed_cloud_database_insight_details.py +++ b/src/oci/opsi/models/update_macs_managed_cloud_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_macs_managed_cloud_exadata_insight_details.py b/src/oci/opsi/models/update_macs_managed_cloud_exadata_insight_details.py index 65bb74ec6c..084cab225a 100644 --- a/src/oci/opsi/models/update_macs_managed_cloud_exadata_insight_details.py +++ b/src/oci/opsi/models/update_macs_managed_cloud_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_macs_managed_cloud_host_insight_details.py b/src/oci/opsi/models/update_macs_managed_cloud_host_insight_details.py index 694578db28..7e932c0269 100644 --- a/src/oci/opsi/models/update_macs_managed_cloud_host_insight_details.py +++ b/src/oci/opsi/models/update_macs_managed_cloud_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 a60e406375..e85279e427 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 afa69f7e14..3d4ac8a35e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_mds_my_sql_database_insight.py b/src/oci/opsi/models/update_mds_my_sql_database_insight.py index f69a2fac4a..bebf063161 100644 --- a/src/oci/opsi/models/update_mds_my_sql_database_insight.py +++ b/src/oci/opsi/models/update_mds_my_sql_database_insight.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_news_report_details.py b/src/oci/opsi/models/update_news_report_details.py index 5114c63c15..da35537868 100644 --- a/src/oci/opsi/models/update_news_report_details.py +++ b/src/oci/opsi/models/update_news_report_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_operations_insights_private_endpoint_details.py b/src/oci/opsi/models/update_operations_insights_private_endpoint_details.py index 5fe90d0f02..882a481511 100644 --- a/src/oci/opsi/models/update_operations_insights_private_endpoint_details.py +++ b/src/oci/opsi/models/update_operations_insights_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 c533cc2bee..7b57772146 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 f90d1c9ff7..91f10c56af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_opsi_configuration_details.py b/src/oci/opsi/models/update_opsi_configuration_details.py index 59ba10c310..6e126a2e62 100644 --- a/src/oci/opsi/models/update_opsi_configuration_details.py +++ b/src/oci/opsi/models/update_opsi_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_opsi_ux_configuration_details.py b/src/oci/opsi/models/update_opsi_ux_configuration_details.py index 2637285531..26b8c3621b 100644 --- a/src/oci/opsi/models/update_opsi_ux_configuration_details.py +++ b/src/oci/opsi/models/update_opsi_ux_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_pe_comanaged_database_insight_details.py b/src/oci/opsi/models/update_pe_comanaged_database_insight_details.py index e30fd83b0a..dfeb86cd54 100644 --- a/src/oci/opsi/models/update_pe_comanaged_database_insight_details.py +++ b/src/oci/opsi/models/update_pe_comanaged_database_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_pe_comanaged_exadata_insight_details.py b/src/oci/opsi/models/update_pe_comanaged_exadata_insight_details.py index e773b1ff94..641545692a 100644 --- a/src/oci/opsi/models/update_pe_comanaged_exadata_insight_details.py +++ b/src/oci/opsi/models/update_pe_comanaged_exadata_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/update_pe_comanaged_host_insight_details.py b/src/oci/opsi/models/update_pe_comanaged_host_insight_details.py index 0b97cae8e9..101afa6225 100644 --- a/src/oci/opsi/models/update_pe_comanaged_host_insight_details.py +++ b/src/oci/opsi/models/update_pe_comanaged_host_insight_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/ux_configuration_items_collection.py b/src/oci/opsi/models/ux_configuration_items_collection.py index f856491698..1c3e46a41b 100644 --- a/src/oci/opsi/models/ux_configuration_items_collection.py +++ b/src/oci/opsi/models/ux_configuration_items_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/vm_cluster_summary.py b/src/oci/opsi/models/vm_cluster_summary.py index ecbac5efb3..ddfcc181a8 100644 --- a/src/oci/opsi/models/vm_cluster_summary.py +++ b/src/oci/opsi/models/vm_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/warehouse_data_object_collection.py b/src/oci/opsi/models/warehouse_data_object_collection.py index 11fa495df9..4942854560 100644 --- a/src/oci/opsi/models/warehouse_data_object_collection.py +++ b/src/oci/opsi/models/warehouse_data_object_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/warehouse_data_object_details.py b/src/oci/opsi/models/warehouse_data_object_details.py index 9e39c87cb6..7cf80d0bd4 100644 --- a/src/oci/opsi/models/warehouse_data_object_details.py +++ b/src/oci/opsi/models/warehouse_data_object_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/warehouse_data_object_summary.py b/src/oci/opsi/models/warehouse_data_object_summary.py index 11c05a5f08..6c42feba8c 100644 --- a/src/oci/opsi/models/warehouse_data_object_summary.py +++ b/src/oci/opsi/models/warehouse_data_object_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/warehouse_table_data_object_details.py b/src/oci/opsi/models/warehouse_table_data_object_details.py index 5e6696551a..44db87aa4e 100644 --- a/src/oci/opsi/models/warehouse_table_data_object_details.py +++ b/src/oci/opsi/models/warehouse_table_data_object_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/warehouse_view_data_object_details.py b/src/oci/opsi/models/warehouse_view_data_object_details.py index cd9c9dd6d2..003d609e09 100644 --- a/src/oci/opsi/models/warehouse_view_data_object_details.py +++ b/src/oci/opsi/models/warehouse_view_data_object_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/work_request.py b/src/oci/opsi/models/work_request.py index dc627ace64..038ead841f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/work_request_collection.py b/src/oci/opsi/models/work_request_collection.py index d41b8ccb70..48037909e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/work_request_error.py b/src/oci/opsi/models/work_request_error.py index 227fc5ddef..53ae204e7d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/work_request_error_collection.py b/src/oci/opsi/models/work_request_error_collection.py index 7ecb5a7a26..aaec76d0a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/work_request_log_entry.py b/src/oci/opsi/models/work_request_log_entry.py index ff64cd62ac..6f21f73475 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 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 fee5c51805..b4d1f798e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/work_request_resource.py b/src/oci/opsi/models/work_request_resource.py index aab6c127fd..ea09d76ff3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/models/work_requests.py b/src/oci/opsi/models/work_requests.py index a80c37117a..c581e41226 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/operations_insights_client.py b/src/oci/opsi/operations_insights_client.py index cb3f028dcb..499043f4c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/opsi/operations_insights_client_composite_operations.py b/src/oci/opsi/operations_insights_client_composite_operations.py index 8db55fc7b3..24264ce713 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200630 diff --git a/src/oci/optimizer/__init__.py b/src/oci/optimizer/__init__.py index 470b3d0075..7b1761d72a 100644 --- a/src/oci/optimizer/__init__.py +++ b/src/oci/optimizer/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/__init__.py b/src/oci/optimizer/models/__init__.py index d57cdccc5c..070d9219f1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/action.py b/src/oci/optimizer/models/action.py index 11e6cf474d..c8911e776b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/bulk_apply_recommendations_details.py b/src/oci/optimizer/models/bulk_apply_recommendations_details.py index 591abf61d3..9ba152a8cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/bulk_apply_resource_action.py b/src/oci/optimizer/models/bulk_apply_resource_action.py index 17f84c6e70..73efeef386 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/category.py b/src/oci/optimizer/models/category.py index 60a63381fc..f3017464d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/category_collection.py b/src/oci/optimizer/models/category_collection.py index 911453af91..f897c14516 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/category_summary.py b/src/oci/optimizer/models/category_summary.py index 07a20b5909..9a983c5cc7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/create_profile_details.py b/src/oci/optimizer/models/create_profile_details.py index 207788da57..330e4c41e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/enrollment_status.py b/src/oci/optimizer/models/enrollment_status.py index e7e6c2ffc8..19e67b54d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/enrollment_status_collection.py b/src/oci/optimizer/models/enrollment_status_collection.py index f8ef3a4358..b725ccf0af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/enrollment_status_summary.py b/src/oci/optimizer/models/enrollment_status_summary.py index 30f8a1b1c7..a44aa9e583 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/evaluated_metric.py b/src/oci/optimizer/models/evaluated_metric.py index c945de7a4d..2cf72de65b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/history_collection.py b/src/oci/optimizer/models/history_collection.py index 6705d59b0e..998c030e1c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/history_summary.py b/src/oci/optimizer/models/history_summary.py index 1a1c4f2266..ba11b1d72b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/level_configuration.py b/src/oci/optimizer/models/level_configuration.py index c768380a05..a6245a5872 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/levels_configuration.py b/src/oci/optimizer/models/levels_configuration.py index bf0c22c61d..57a60f58b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/profile.py b/src/oci/optimizer/models/profile.py index 37cb1fb0e3..3a6aa94e50 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/profile_collection.py b/src/oci/optimizer/models/profile_collection.py index 050fc5a1d2..80fec3dc71 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/profile_level_collection.py b/src/oci/optimizer/models/profile_level_collection.py index ad1db49a70..c301108cee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/profile_level_summary.py b/src/oci/optimizer/models/profile_level_summary.py index 49da683beb..795bcc2b2f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/profile_summary.py b/src/oci/optimizer/models/profile_summary.py index fa9dc4addb..1ef83e5e38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/query_details.py b/src/oci/optimizer/models/query_details.py index 5824377210..5b5969b8c0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/queryable_field_collection.py b/src/oci/optimizer/models/queryable_field_collection.py index 2347ba91c2..ec119eeac5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/queryable_field_summary.py b/src/oci/optimizer/models/queryable_field_summary.py index 607750478c..6606035198 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/recommendation.py b/src/oci/optimizer/models/recommendation.py index 6659a749fa..f18dbdae31 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/recommendation_collection.py b/src/oci/optimizer/models/recommendation_collection.py index 414648b4c7..7f1d684ca6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/recommendation_count.py b/src/oci/optimizer/models/recommendation_count.py index cb277fd13a..b8a58bfc6c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/recommendation_strategy_collection.py b/src/oci/optimizer/models/recommendation_strategy_collection.py index 5c700ebade..1c5de38d41 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/recommendation_strategy_summary.py b/src/oci/optimizer/models/recommendation_strategy_summary.py index 92da2b3286..f1c7cd4a73 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/recommendation_summary.py b/src/oci/optimizer/models/recommendation_summary.py index b4436d4e97..6ca7569734 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/resource_action.py b/src/oci/optimizer/models/resource_action.py index bcb3500add..56c32d1f63 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/resource_action_collection.py b/src/oci/optimizer/models/resource_action_collection.py index 561de4b760..cd98ab7201 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/resource_action_summary.py b/src/oci/optimizer/models/resource_action_summary.py index e58619e98d..393598bc7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/resource_count.py b/src/oci/optimizer/models/resource_count.py index 575441223e..aa8cd9c4cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/strategy.py b/src/oci/optimizer/models/strategy.py index 147447dd4e..71cb544949 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/strategy_parameter.py b/src/oci/optimizer/models/strategy_parameter.py index 4beb4fa567..5df589fe09 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/supported_level.py b/src/oci/optimizer/models/supported_level.py index 564bba4cf9..f65e599e59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/supported_levels.py b/src/oci/optimizer/models/supported_levels.py index ed890cc69a..7bf4a5c354 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/target_compartments.py b/src/oci/optimizer/models/target_compartments.py index 13efc43a9a..8cb99b1e91 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/target_tag.py b/src/oci/optimizer/models/target_tag.py index 0c03daca67..5a9c2680be 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/target_tags.py b/src/oci/optimizer/models/target_tags.py index f3688c4a46..e7a548683c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/update_enrollment_status_details.py b/src/oci/optimizer/models/update_enrollment_status_details.py index b489a1e964..d88c0f6b51 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/update_profile_details.py b/src/oci/optimizer/models/update_profile_details.py index a514127142..aa575bcae4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/update_recommendation_details.py b/src/oci/optimizer/models/update_recommendation_details.py index 961d2698c3..5a5a07b0a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/update_resource_action_details.py b/src/oci/optimizer/models/update_resource_action_details.py index 9121506fc1..a51ab33f11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/work_request.py b/src/oci/optimizer/models/work_request.py index 27e32adedf..8ef94330f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/work_request_collection.py b/src/oci/optimizer/models/work_request_collection.py index 9cd07d749a..88a7a50883 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/work_request_error.py b/src/oci/optimizer/models/work_request_error.py index b9ae768e41..a535c992ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/work_request_error_collection.py b/src/oci/optimizer/models/work_request_error_collection.py index 4adfac86d2..e662de018f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/work_request_log_entry.py b/src/oci/optimizer/models/work_request_log_entry.py index 4278b3f3a6..1a255ed81e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 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 0d01830dfc..de6e8a19a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/models/work_request_resource.py b/src/oci/optimizer/models/work_request_resource.py index dcddf66618..0027f7bf20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/optimizer_client.py b/src/oci/optimizer/optimizer_client.py index a42d6bd54e..27c6784d15 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/optimizer/optimizer_client_composite_operations.py b/src/oci/optimizer/optimizer_client_composite_operations.py index bebb90f87d..3ba294c4e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200606 diff --git a/src/oci/os_management/__init__.py b/src/oci/os_management/__init__.py index 29b78d625a..b7612f0163 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/event_client.py b/src/oci/os_management/event_client.py index 2f6e79c105..a2a902d3c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/event_client_composite_operations.py b/src/oci/os_management/event_client_composite_operations.py index ba76eb52b6..591b884fab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/__init__.py b/src/oci/os_management/models/__init__.py index b6ab43efdc..db2d12aa0e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 2fac36d40a..bc1eac06ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/api_error.py b/src/oci/os_management/models/api_error.py index 184dac537f..fad3e952d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 526ed82ac3..48e648f56e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 1af9fa2548..2447ced28b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/autonomous_settings.py b/src/oci/os_management/models/autonomous_settings.py index 6be85909d5..002fb3b6e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 2e16fdd44b..62b46e2be3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/available_update_summary.py b/src/oci/os_management/models/available_update_summary.py index 99872f3727..b5a5469457 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 ab56aae65d..3ab9e06add 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 eb4a83bb00..f5f0987577 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 0ffe70df5b..7c069db6a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 9977742897..24932221a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 c64c6cb6dc..e8ec3addb3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 d9a905e60a..4b67f538fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 3352328746..dda583e01a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 ebdf7cde1a..f87c1304d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 2bb4a6f318..2f15e9ae49 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 dd3777e46c..5bfb7a28b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/erratum.py b/src/oci/os_management/models/erratum.py index 72d13a40b1..9e784e40db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/erratum_summary.py b/src/oci/os_management/models/erratum_summary.py index 60a3a5510a..fe62b863e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/event.py b/src/oci/os_management/models/event.py index b84b241a9c..c80fc9634f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/event_collection.py b/src/oci/os_management/models/event_collection.py index 105646a97b..92c4ae9ac6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/event_content.py b/src/oci/os_management/models/event_content.py index d948acf19c..87fb540271 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/event_report.py b/src/oci/os_management/models/event_report.py index 74cfc066a0..47f66a83f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/event_summary.py b/src/oci/os_management/models/event_summary.py index d20081d74e..22d2ae9d2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/id.py b/src/oci/os_management/models/id.py index 7c81030f4e..c6713c7fbe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/installable_package_summary.py b/src/oci/os_management/models/installable_package_summary.py index b665d3deb4..386e674e50 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/installed_package_summary.py b/src/oci/os_management/models/installed_package_summary.py index 263f23e3a0..b8699e0aad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 ab6d2be061..b7ad4c7400 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/kernel_crash_event.py b/src/oci/os_management/models/kernel_crash_event.py index f151564b6d..7766272d10 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/kernel_oops_event.py b/src/oci/os_management/models/kernel_oops_event.py index bf3752471d..669e0493dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 170843db15..fec2266fa6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/manage_module_streams_on_managed_instance_details.py b/src/oci/os_management/models/manage_module_streams_on_managed_instance_details.py index a764d8584c..89429d516b 100644 --- a/src/oci/os_management/models/manage_module_streams_on_managed_instance_details.py +++ b/src/oci/os_management/models/manage_module_streams_on_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/managed_instance.py b/src/oci/os_management/models/managed_instance.py index a2cfec5720..ed8b201bcd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/managed_instance_group.py b/src/oci/os_management/models/managed_instance_group.py index cb27151601..3a59216510 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 b275d5a220..3a14d41d05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/managed_instance_summary.py b/src/oci/os_management/models/managed_instance_summary.py index 60ca3d949f..6b44306978 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/module_stream.py b/src/oci/os_management/models/module_stream.py index 5e2e761974..4a0492cf84 100644 --- a/src/oci/os_management/models/module_stream.py +++ b/src/oci/os_management/models/module_stream.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/module_stream_details.py b/src/oci/os_management/models/module_stream_details.py index 18ae901250..0836ef1da2 100644 --- a/src/oci/os_management/models/module_stream_details.py +++ b/src/oci/os_management/models/module_stream_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/module_stream_on_managed_instance_summary.py b/src/oci/os_management/models/module_stream_on_managed_instance_summary.py index 27b07734a5..9873a3ce49 100644 --- a/src/oci/os_management/models/module_stream_on_managed_instance_summary.py +++ b/src/oci/os_management/models/module_stream_on_managed_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/module_stream_profile.py b/src/oci/os_management/models/module_stream_profile.py index e66bc2064d..e21873b1d5 100644 --- a/src/oci/os_management/models/module_stream_profile.py +++ b/src/oci/os_management/models/module_stream_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/module_stream_profile_details.py b/src/oci/os_management/models/module_stream_profile_details.py index 8bfbb76af1..99fcc32e12 100644 --- a/src/oci/os_management/models/module_stream_profile_details.py +++ b/src/oci/os_management/models/module_stream_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/module_stream_profile_on_managed_instance_summary.py b/src/oci/os_management/models/module_stream_profile_on_managed_instance_summary.py index 5c2d200e4c..3464c63480 100644 --- a/src/oci/os_management/models/module_stream_profile_on_managed_instance_summary.py +++ b/src/oci/os_management/models/module_stream_profile_on_managed_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/module_stream_profile_summary.py b/src/oci/os_management/models/module_stream_profile_summary.py index 471d65ca0d..9d02a5f40a 100644 --- a/src/oci/os_management/models/module_stream_profile_summary.py +++ b/src/oci/os_management/models/module_stream_profile_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/module_stream_summary.py b/src/oci/os_management/models/module_stream_summary.py index da0dda4291..369e68f1cb 100644 --- a/src/oci/os_management/models/module_stream_summary.py +++ b/src/oci/os_management/models/module_stream_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/package_name.py b/src/oci/os_management/models/package_name.py index d3125b2eb2..7626aaa230 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/recurrence.py b/src/oci/os_management/models/recurrence.py index cb51a6207d..914c05063b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/related_event_collection.py b/src/oci/os_management/models/related_event_collection.py index 03c04d02fd..bf9f9b9336 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/related_event_summary.py b/src/oci/os_management/models/related_event_summary.py index e3385ca65b..8d67f4fb02 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 20e8722168..689f749cf8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/scheduled_job.py b/src/oci/os_management/models/scheduled_job.py index 343847286c..a4d650bf25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/scheduled_job_summary.py b/src/oci/os_management/models/scheduled_job_summary.py index 73f4da538f..9155090682 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/software_package.py b/src/oci/os_management/models/software_package.py index d2348ca15c..a566030b29 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/software_package_dependency.py b/src/oci/os_management/models/software_package_dependency.py index 7b11671b83..3da8e10eed 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/software_package_file.py b/src/oci/os_management/models/software_package_file.py index fa31ebf7b6..909faf04a7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 f4503f6d3e..1b82609f47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/software_package_summary.py b/src/oci/os_management/models/software_package_summary.py index 97fa54afd2..abb6d30bdb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/software_source.py b/src/oci/os_management/models/software_source.py index 65ba2f5343..9fb91fbad1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/software_source_id.py b/src/oci/os_management/models/software_source_id.py index a12bdbb8b5..d3ba98822a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/software_source_summary.py b/src/oci/os_management/models/software_source_summary.py index ac881559d6..0ba2126096 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/update_event_details.py b/src/oci/os_management/models/update_event_details.py index f7cf153aca..39b733e060 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 ae8f54962c..5ebef5ba21 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 c3fd5d68d7..5425ce020e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/update_module_details.py b/src/oci/os_management/models/update_module_details.py index 6bfeed93f0..f5def2858c 100644 --- a/src/oci/os_management/models/update_module_details.py +++ b/src/oci/os_management/models/update_module_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/update_module_stream_details.py b/src/oci/os_management/models/update_module_stream_details.py index 8a8e488223..51be1c0534 100644 --- a/src/oci/os_management/models/update_module_stream_details.py +++ b/src/oci/os_management/models/update_module_stream_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/update_module_stream_profile_details.py b/src/oci/os_management/models/update_module_stream_profile_details.py index cdbb9cb355..2877cdb4f2 100644 --- a/src/oci/os_management/models/update_module_stream_profile_details.py +++ b/src/oci/os_management/models/update_module_stream_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/update_module_stream_state_details.py b/src/oci/os_management/models/update_module_stream_state_details.py index bc0228cd84..7c91cc6c75 100644 --- a/src/oci/os_management/models/update_module_stream_state_details.py +++ b/src/oci/os_management/models/update_module_stream_state_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 65da7106fa..2c4b0c4a45 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 7d334b45a8..938364a9b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/windows_update.py b/src/oci/os_management/models/windows_update.py index a6d494a4e5..23f73725b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/windows_update_summary.py b/src/oci/os_management/models/windows_update_summary.py index f396d410e6..8fbd48d43b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/work_request.py b/src/oci/os_management/models/work_request.py index cf3346f0f5..8334277452 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/work_request_error.py b/src/oci/os_management/models/work_request_error.py index 5c95b921f2..9355e99ea1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 4d6f89305b..5430063d6f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/work_request_resource.py b/src/oci/os_management/models/work_request_resource.py index 9d03b6441d..13b7b637bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/models/work_request_summary.py b/src/oci/os_management/models/work_request_summary.py index 0a6b1c8b6a..9fc58e034a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management/os_management_client.py b/src/oci/os_management/os_management_client.py index e43b4057eb..2882ffdabe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 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 21e8329b79..5c592f2501 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190801 diff --git a/src/oci/os_management_hub/__init__.py b/src/oci/os_management_hub/__init__.py index d37b82b9a1..4074ed899d 100644 --- a/src/oci/os_management_hub/__init__.py +++ b/src/oci/os_management_hub/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/event_client.py b/src/oci/os_management_hub/event_client.py index 4373808f01..e4dfd8699a 100644 --- a/src/oci/os_management_hub/event_client.py +++ b/src/oci/os_management_hub/event_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/event_client_composite_operations.py b/src/oci/os_management_hub/event_client_composite_operations.py index 69952fece3..8913045bcd 100644 --- a/src/oci/os_management_hub/event_client_composite_operations.py +++ b/src/oci/os_management_hub/event_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/lifecycle_environment_client.py b/src/oci/os_management_hub/lifecycle_environment_client.py index 5a9cca5d0b..8e70cd6e5e 100644 --- a/src/oci/os_management_hub/lifecycle_environment_client.py +++ b/src/oci/os_management_hub/lifecycle_environment_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/lifecycle_environment_client_composite_operations.py b/src/oci/os_management_hub/lifecycle_environment_client_composite_operations.py index 73350b88a3..1b4bda5a32 100644 --- a/src/oci/os_management_hub/lifecycle_environment_client_composite_operations.py +++ b/src/oci/os_management_hub/lifecycle_environment_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/managed_instance_client.py b/src/oci/os_management_hub/managed_instance_client.py index b3142b572b..dc28b4f398 100644 --- a/src/oci/os_management_hub/managed_instance_client.py +++ b/src/oci/os_management_hub/managed_instance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/managed_instance_client_composite_operations.py b/src/oci/os_management_hub/managed_instance_client_composite_operations.py index 3d4a5938ea..492b90d77d 100644 --- a/src/oci/os_management_hub/managed_instance_client_composite_operations.py +++ b/src/oci/os_management_hub/managed_instance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/managed_instance_group_client.py b/src/oci/os_management_hub/managed_instance_group_client.py index 2cf06aa0b6..720495f24e 100644 --- a/src/oci/os_management_hub/managed_instance_group_client.py +++ b/src/oci/os_management_hub/managed_instance_group_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/managed_instance_group_client_composite_operations.py b/src/oci/os_management_hub/managed_instance_group_client_composite_operations.py index a9eb1f9426..26ef5a4f3e 100644 --- a/src/oci/os_management_hub/managed_instance_group_client_composite_operations.py +++ b/src/oci/os_management_hub/managed_instance_group_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/management_station_client.py b/src/oci/os_management_hub/management_station_client.py index a3ea109edc..479449bfe8 100644 --- a/src/oci/os_management_hub/management_station_client.py +++ b/src/oci/os_management_hub/management_station_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/management_station_client_composite_operations.py b/src/oci/os_management_hub/management_station_client_composite_operations.py index 7a57698630..bed6a7c292 100644 --- a/src/oci/os_management_hub/management_station_client_composite_operations.py +++ b/src/oci/os_management_hub/management_station_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/__init__.py b/src/oci/os_management_hub/models/__init__.py index 3c02425c6f..3174000b70 100644 --- a/src/oci/os_management_hub/models/__init__.py +++ b/src/oci/os_management_hub/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/add_packages_to_software_source_details.py b/src/oci/os_management_hub/models/add_packages_to_software_source_details.py index fcf9ba2794..731e19cf7e 100644 --- a/src/oci/os_management_hub/models/add_packages_to_software_source_details.py +++ b/src/oci/os_management_hub/models/add_packages_to_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/agent_event.py b/src/oci/os_management_hub/models/agent_event.py index 83cdeddfd4..117b616842 100644 --- a/src/oci/os_management_hub/models/agent_event.py +++ b/src/oci/os_management_hub/models/agent_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/agent_event_data.py b/src/oci/os_management_hub/models/agent_event_data.py index 343e3685e6..5c9598de45 100644 --- a/src/oci/os_management_hub/models/agent_event_data.py +++ b/src/oci/os_management_hub/models/agent_event_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/attach_managed_instances_to_lifecycle_stage_details.py b/src/oci/os_management_hub/models/attach_managed_instances_to_lifecycle_stage_details.py index bd5bc2e8c6..eb405fa548 100644 --- a/src/oci/os_management_hub/models/attach_managed_instances_to_lifecycle_stage_details.py +++ b/src/oci/os_management_hub/models/attach_managed_instances_to_lifecycle_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/attach_managed_instances_to_managed_instance_group_details.py b/src/oci/os_management_hub/models/attach_managed_instances_to_managed_instance_group_details.py index 938ef21b33..adf13cb889 100644 --- a/src/oci/os_management_hub/models/attach_managed_instances_to_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/attach_managed_instances_to_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/attach_profile_to_managed_instance_details.py b/src/oci/os_management_hub/models/attach_profile_to_managed_instance_details.py index a00329a77c..ed8ef77843 100644 --- a/src/oci/os_management_hub/models/attach_profile_to_managed_instance_details.py +++ b/src/oci/os_management_hub/models/attach_profile_to_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/attach_software_sources_to_managed_instance_details.py b/src/oci/os_management_hub/models/attach_software_sources_to_managed_instance_details.py index d71dcb764f..5920d7cf2a 100644 --- a/src/oci/os_management_hub/models/attach_software_sources_to_managed_instance_details.py +++ b/src/oci/os_management_hub/models/attach_software_sources_to_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/attach_software_sources_to_managed_instance_group_details.py b/src/oci/os_management_hub/models/attach_software_sources_to_managed_instance_group_details.py index cf0fc47414..f191fa3129 100644 --- a/src/oci/os_management_hub/models/attach_software_sources_to_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/attach_software_sources_to_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/autonomous_settings.py b/src/oci/os_management_hub/models/autonomous_settings.py index 85f8d02677..f749c70a54 100644 --- a/src/oci/os_management_hub/models/autonomous_settings.py +++ b/src/oci/os_management_hub/models/autonomous_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/available_package_collection.py b/src/oci/os_management_hub/models/available_package_collection.py index ea7c98e020..e66f2f5db7 100644 --- a/src/oci/os_management_hub/models/available_package_collection.py +++ b/src/oci/os_management_hub/models/available_package_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/available_package_summary.py b/src/oci/os_management_hub/models/available_package_summary.py index 36daf83bf0..2c6e2bf06c 100644 --- a/src/oci/os_management_hub/models/available_package_summary.py +++ b/src/oci/os_management_hub/models/available_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/available_software_source_collection.py b/src/oci/os_management_hub/models/available_software_source_collection.py index 737800bf91..2f8073cf5b 100644 --- a/src/oci/os_management_hub/models/available_software_source_collection.py +++ b/src/oci/os_management_hub/models/available_software_source_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/available_software_source_summary.py b/src/oci/os_management_hub/models/available_software_source_summary.py index bcaed26fab..8fdd9a2f72 100644 --- a/src/oci/os_management_hub/models/available_software_source_summary.py +++ b/src/oci/os_management_hub/models/available_software_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/available_windows_update_collection.py b/src/oci/os_management_hub/models/available_windows_update_collection.py index 3d824d72a4..dc1bf76c95 100644 --- a/src/oci/os_management_hub/models/available_windows_update_collection.py +++ b/src/oci/os_management_hub/models/available_windows_update_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/available_windows_update_summary.py b/src/oci/os_management_hub/models/available_windows_update_summary.py index cf6289fbb5..c21d3062fe 100644 --- a/src/oci/os_management_hub/models/available_windows_update_summary.py +++ b/src/oci/os_management_hub/models/available_windows_update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/change_availability_of_software_sources_details.py b/src/oci/os_management_hub/models/change_availability_of_software_sources_details.py index 5dbd740019..e4e183c67f 100644 --- a/src/oci/os_management_hub/models/change_availability_of_software_sources_details.py +++ b/src/oci/os_management_hub/models/change_availability_of_software_sources_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/change_event_compartment_details.py b/src/oci/os_management_hub/models/change_event_compartment_details.py index d7c06a82de..e681e0c811 100644 --- a/src/oci/os_management_hub/models/change_event_compartment_details.py +++ b/src/oci/os_management_hub/models/change_event_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/change_lifecycle_environment_compartment_details.py b/src/oci/os_management_hub/models/change_lifecycle_environment_compartment_details.py index e4eb1cfbb8..0040fce706 100644 --- a/src/oci/os_management_hub/models/change_lifecycle_environment_compartment_details.py +++ b/src/oci/os_management_hub/models/change_lifecycle_environment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/change_managed_instance_group_compartment_details.py b/src/oci/os_management_hub/models/change_managed_instance_group_compartment_details.py index 98cc7127fe..ccb9d60e5a 100644 --- a/src/oci/os_management_hub/models/change_managed_instance_group_compartment_details.py +++ b/src/oci/os_management_hub/models/change_managed_instance_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/change_management_station_compartment_details.py b/src/oci/os_management_hub/models/change_management_station_compartment_details.py index b634146980..252f1e001d 100644 --- a/src/oci/os_management_hub/models/change_management_station_compartment_details.py +++ b/src/oci/os_management_hub/models/change_management_station_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/change_profile_compartment_details.py b/src/oci/os_management_hub/models/change_profile_compartment_details.py index 6cee359a10..c2d401117f 100644 --- a/src/oci/os_management_hub/models/change_profile_compartment_details.py +++ b/src/oci/os_management_hub/models/change_profile_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/change_scheduled_job_compartment_details.py b/src/oci/os_management_hub/models/change_scheduled_job_compartment_details.py index d6bba959db..9f6fe04770 100644 --- a/src/oci/os_management_hub/models/change_scheduled_job_compartment_details.py +++ b/src/oci/os_management_hub/models/change_scheduled_job_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/change_software_source_compartment_details.py b/src/oci/os_management_hub/models/change_software_source_compartment_details.py index d36b5f6806..189a1e5484 100644 --- a/src/oci/os_management_hub/models/change_software_source_compartment_details.py +++ b/src/oci/os_management_hub/models/change_software_source_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_custom_software_source_details.py b/src/oci/os_management_hub/models/create_custom_software_source_details.py index e3a917b52e..4d0b2b987d 100644 --- a/src/oci/os_management_hub/models/create_custom_software_source_details.py +++ b/src/oci/os_management_hub/models/create_custom_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_entitlement_details.py b/src/oci/os_management_hub/models/create_entitlement_details.py index 92d6d71bda..5d5b6fed3b 100644 --- a/src/oci/os_management_hub/models/create_entitlement_details.py +++ b/src/oci/os_management_hub/models/create_entitlement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_group_profile_details.py b/src/oci/os_management_hub/models/create_group_profile_details.py index f9dac50969..ef8e06418f 100644 --- a/src/oci/os_management_hub/models/create_group_profile_details.py +++ b/src/oci/os_management_hub/models/create_group_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_lifecycle_environment_details.py b/src/oci/os_management_hub/models/create_lifecycle_environment_details.py index 08cb95cd9d..1bfbff322b 100644 --- a/src/oci/os_management_hub/models/create_lifecycle_environment_details.py +++ b/src/oci/os_management_hub/models/create_lifecycle_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_lifecycle_profile_details.py b/src/oci/os_management_hub/models/create_lifecycle_profile_details.py index b5be369c2f..cc3ac31cd3 100644 --- a/src/oci/os_management_hub/models/create_lifecycle_profile_details.py +++ b/src/oci/os_management_hub/models/create_lifecycle_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_lifecycle_stage_details.py b/src/oci/os_management_hub/models/create_lifecycle_stage_details.py index f8a526f2f6..768e14f379 100644 --- a/src/oci/os_management_hub/models/create_lifecycle_stage_details.py +++ b/src/oci/os_management_hub/models/create_lifecycle_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_managed_instance_group_details.py b/src/oci/os_management_hub/models/create_managed_instance_group_details.py index 2ddcad03b8..796a51a254 100644 --- a/src/oci/os_management_hub/models/create_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/create_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_management_station_details.py b/src/oci/os_management_hub/models/create_management_station_details.py index d4c83c73a4..ae8ef6c558 100644 --- a/src/oci/os_management_hub/models/create_management_station_details.py +++ b/src/oci/os_management_hub/models/create_management_station_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_mirror_configuration_details.py b/src/oci/os_management_hub/models/create_mirror_configuration_details.py index 4954a6158e..3f53b780f0 100644 --- a/src/oci/os_management_hub/models/create_mirror_configuration_details.py +++ b/src/oci/os_management_hub/models/create_mirror_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_profile_details.py b/src/oci/os_management_hub/models/create_profile_details.py index c23f4367e7..6c25a3c4c0 100644 --- a/src/oci/os_management_hub/models/create_profile_details.py +++ b/src/oci/os_management_hub/models/create_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_proxy_configuration_details.py b/src/oci/os_management_hub/models/create_proxy_configuration_details.py index efa4d6acd3..0946b918ef 100644 --- a/src/oci/os_management_hub/models/create_proxy_configuration_details.py +++ b/src/oci/os_management_hub/models/create_proxy_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_scheduled_job_details.py b/src/oci/os_management_hub/models/create_scheduled_job_details.py index e16379f196..8613670607 100644 --- a/src/oci/os_management_hub/models/create_scheduled_job_details.py +++ b/src/oci/os_management_hub/models/create_scheduled_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_software_source_details.py b/src/oci/os_management_hub/models/create_software_source_details.py index e2a41324c3..45c07d915e 100644 --- a/src/oci/os_management_hub/models/create_software_source_details.py +++ b/src/oci/os_management_hub/models/create_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_software_source_profile_details.py b/src/oci/os_management_hub/models/create_software_source_profile_details.py index 50a27aa8ef..8444b70a5e 100644 --- a/src/oci/os_management_hub/models/create_software_source_profile_details.py +++ b/src/oci/os_management_hub/models/create_software_source_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_station_profile_details.py b/src/oci/os_management_hub/models/create_station_profile_details.py index 7683353b3e..ad2f733f21 100644 --- a/src/oci/os_management_hub/models/create_station_profile_details.py +++ b/src/oci/os_management_hub/models/create_station_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_vendor_software_source_details.py b/src/oci/os_management_hub/models/create_vendor_software_source_details.py index c8409da91f..770112f271 100644 --- a/src/oci/os_management_hub/models/create_vendor_software_source_details.py +++ b/src/oci/os_management_hub/models/create_vendor_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/create_versioned_custom_software_source_details.py b/src/oci/os_management_hub/models/create_versioned_custom_software_source_details.py index acc68b4386..c0fd40f5f4 100644 --- a/src/oci/os_management_hub/models/create_versioned_custom_software_source_details.py +++ b/src/oci/os_management_hub/models/create_versioned_custom_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/custom_software_source.py b/src/oci/os_management_hub/models/custom_software_source.py index 19f9cd1575..f942414014 100644 --- a/src/oci/os_management_hub/models/custom_software_source.py +++ b/src/oci/os_management_hub/models/custom_software_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/custom_software_source_filter.py b/src/oci/os_management_hub/models/custom_software_source_filter.py index 4bcf73967d..b3bc821233 100644 --- a/src/oci/os_management_hub/models/custom_software_source_filter.py +++ b/src/oci/os_management_hub/models/custom_software_source_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/custom_software_source_summary.py b/src/oci/os_management_hub/models/custom_software_source_summary.py index 98b55716c5..c707052352 100644 --- a/src/oci/os_management_hub/models/custom_software_source_summary.py +++ b/src/oci/os_management_hub/models/custom_software_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/detach_managed_instances_from_lifecycle_stage_details.py b/src/oci/os_management_hub/models/detach_managed_instances_from_lifecycle_stage_details.py index b0f3d90d13..3a503f0e89 100644 --- a/src/oci/os_management_hub/models/detach_managed_instances_from_lifecycle_stage_details.py +++ b/src/oci/os_management_hub/models/detach_managed_instances_from_lifecycle_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/detach_managed_instances_from_managed_instance_group_details.py b/src/oci/os_management_hub/models/detach_managed_instances_from_managed_instance_group_details.py index 810911b7eb..f333d38803 100644 --- a/src/oci/os_management_hub/models/detach_managed_instances_from_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/detach_managed_instances_from_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/detach_software_sources_from_managed_instance_details.py b/src/oci/os_management_hub/models/detach_software_sources_from_managed_instance_details.py index fc9856dbd0..89722debc0 100644 --- a/src/oci/os_management_hub/models/detach_software_sources_from_managed_instance_details.py +++ b/src/oci/os_management_hub/models/detach_software_sources_from_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/detach_software_sources_from_managed_instance_group_details.py b/src/oci/os_management_hub/models/detach_software_sources_from_managed_instance_group_details.py index 400299ed2a..55beace4bc 100644 --- a/src/oci/os_management_hub/models/detach_software_sources_from_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/detach_software_sources_from_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/disable_module_stream_on_managed_instance_details.py b/src/oci/os_management_hub/models/disable_module_stream_on_managed_instance_details.py index 3b3ed9e0f2..81cec24873 100644 --- a/src/oci/os_management_hub/models/disable_module_stream_on_managed_instance_details.py +++ b/src/oci/os_management_hub/models/disable_module_stream_on_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/disable_module_stream_on_managed_instance_group_details.py b/src/oci/os_management_hub/models/disable_module_stream_on_managed_instance_group_details.py index 5d04ce59fc..8f17861939 100644 --- a/src/oci/os_management_hub/models/disable_module_stream_on_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/disable_module_stream_on_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/enable_module_stream_on_managed_instance_details.py b/src/oci/os_management_hub/models/enable_module_stream_on_managed_instance_details.py index 97f5b49dd1..341d01769f 100644 --- a/src/oci/os_management_hub/models/enable_module_stream_on_managed_instance_details.py +++ b/src/oci/os_management_hub/models/enable_module_stream_on_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/enable_module_stream_on_managed_instance_group_details.py b/src/oci/os_management_hub/models/enable_module_stream_on_managed_instance_group_details.py index 2f1eecdf93..62805378f4 100644 --- a/src/oci/os_management_hub/models/enable_module_stream_on_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/enable_module_stream_on_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/entitlement_collection.py b/src/oci/os_management_hub/models/entitlement_collection.py index f6a52f52f9..c7660ddf92 100644 --- a/src/oci/os_management_hub/models/entitlement_collection.py +++ b/src/oci/os_management_hub/models/entitlement_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/entitlement_summary.py b/src/oci/os_management_hub/models/entitlement_summary.py index 455f0201bd..08e88631f0 100644 --- a/src/oci/os_management_hub/models/entitlement_summary.py +++ b/src/oci/os_management_hub/models/entitlement_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/erratum.py b/src/oci/os_management_hub/models/erratum.py index 853fbc0286..34079229b3 100644 --- a/src/oci/os_management_hub/models/erratum.py +++ b/src/oci/os_management_hub/models/erratum.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/erratum_collection.py b/src/oci/os_management_hub/models/erratum_collection.py index 96e881d624..6b5427b64d 100644 --- a/src/oci/os_management_hub/models/erratum_collection.py +++ b/src/oci/os_management_hub/models/erratum_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/erratum_summary.py b/src/oci/os_management_hub/models/erratum_summary.py index 929b148037..72c0db42d2 100644 --- a/src/oci/os_management_hub/models/erratum_summary.py +++ b/src/oci/os_management_hub/models/erratum_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/event.py b/src/oci/os_management_hub/models/event.py index abf9fdf05b..3d68f482c8 100644 --- a/src/oci/os_management_hub/models/event.py +++ b/src/oci/os_management_hub/models/event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/event_collection.py b/src/oci/os_management_hub/models/event_collection.py index e928642317..2a14238a1a 100644 --- a/src/oci/os_management_hub/models/event_collection.py +++ b/src/oci/os_management_hub/models/event_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/event_content.py b/src/oci/os_management_hub/models/event_content.py index 213a80928b..5c104a6c97 100644 --- a/src/oci/os_management_hub/models/event_content.py +++ b/src/oci/os_management_hub/models/event_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/event_summary.py b/src/oci/os_management_hub/models/event_summary.py index 25501b3751..14c68d2c3c 100644 --- a/src/oci/os_management_hub/models/event_summary.py +++ b/src/oci/os_management_hub/models/event_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/exploit_attempt_additional_details.py b/src/oci/os_management_hub/models/exploit_attempt_additional_details.py index d83faf9c6f..6a4c880117 100644 --- a/src/oci/os_management_hub/models/exploit_attempt_additional_details.py +++ b/src/oci/os_management_hub/models/exploit_attempt_additional_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/exploit_attempt_event.py b/src/oci/os_management_hub/models/exploit_attempt_event.py index 7ac896fd2d..f4e4fb792f 100644 --- a/src/oci/os_management_hub/models/exploit_attempt_event.py +++ b/src/oci/os_management_hub/models/exploit_attempt_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/exploit_attempt_event_content.py b/src/oci/os_management_hub/models/exploit_attempt_event_content.py index d2aa8f5d26..f6ef70ba68 100644 --- a/src/oci/os_management_hub/models/exploit_attempt_event_content.py +++ b/src/oci/os_management_hub/models/exploit_attempt_event_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/exploit_attempt_event_data.py b/src/oci/os_management_hub/models/exploit_attempt_event_data.py index 49e62e8594..12ea16b48d 100644 --- a/src/oci/os_management_hub/models/exploit_attempt_event_data.py +++ b/src/oci/os_management_hub/models/exploit_attempt_event_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/group_profile.py b/src/oci/os_management_hub/models/group_profile.py index d7d5da4e2b..a957f7c793 100644 --- a/src/oci/os_management_hub/models/group_profile.py +++ b/src/oci/os_management_hub/models/group_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/id.py b/src/oci/os_management_hub/models/id.py index 626f37937f..9c6c64c65a 100644 --- a/src/oci/os_management_hub/models/id.py +++ b/src/oci/os_management_hub/models/id.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/install_all_windows_updates_on_managed_instances_in_compartment_details.py b/src/oci/os_management_hub/models/install_all_windows_updates_on_managed_instances_in_compartment_details.py index 4497f09e7c..b471aa1ba8 100644 --- a/src/oci/os_management_hub/models/install_all_windows_updates_on_managed_instances_in_compartment_details.py +++ b/src/oci/os_management_hub/models/install_all_windows_updates_on_managed_instances_in_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/install_module_stream_profile_on_managed_instance_details.py b/src/oci/os_management_hub/models/install_module_stream_profile_on_managed_instance_details.py index e8dd15f4bc..098b176b40 100644 --- a/src/oci/os_management_hub/models/install_module_stream_profile_on_managed_instance_details.py +++ b/src/oci/os_management_hub/models/install_module_stream_profile_on_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/install_module_stream_profile_on_managed_instance_group_details.py b/src/oci/os_management_hub/models/install_module_stream_profile_on_managed_instance_group_details.py index 2c70b0d5ac..1d40750444 100644 --- a/src/oci/os_management_hub/models/install_module_stream_profile_on_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/install_module_stream_profile_on_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/install_packages_on_managed_instance_details.py b/src/oci/os_management_hub/models/install_packages_on_managed_instance_details.py index eb56e2650f..30fc4a3488 100644 --- a/src/oci/os_management_hub/models/install_packages_on_managed_instance_details.py +++ b/src/oci/os_management_hub/models/install_packages_on_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/install_packages_on_managed_instance_group_details.py b/src/oci/os_management_hub/models/install_packages_on_managed_instance_group_details.py index 0b06e8093d..de13e893cc 100644 --- a/src/oci/os_management_hub/models/install_packages_on_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/install_packages_on_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/install_windows_updates_on_managed_instance_details.py b/src/oci/os_management_hub/models/install_windows_updates_on_managed_instance_details.py index b814fea2a9..9f829c2111 100644 --- a/src/oci/os_management_hub/models/install_windows_updates_on_managed_instance_details.py +++ b/src/oci/os_management_hub/models/install_windows_updates_on_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/install_windows_updates_on_managed_instance_group_details.py b/src/oci/os_management_hub/models/install_windows_updates_on_managed_instance_group_details.py index 054695c24d..e9f237eeef 100644 --- a/src/oci/os_management_hub/models/install_windows_updates_on_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/install_windows_updates_on_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/installed_package_collection.py b/src/oci/os_management_hub/models/installed_package_collection.py index 8f59d1bdae..7cbb69fc4a 100644 --- a/src/oci/os_management_hub/models/installed_package_collection.py +++ b/src/oci/os_management_hub/models/installed_package_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/installed_package_summary.py b/src/oci/os_management_hub/models/installed_package_summary.py index ad07d1f66b..9b1ae3df1a 100644 --- a/src/oci/os_management_hub/models/installed_package_summary.py +++ b/src/oci/os_management_hub/models/installed_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/installed_windows_update_collection.py b/src/oci/os_management_hub/models/installed_windows_update_collection.py index fd2017ce6a..540e085c2f 100644 --- a/src/oci/os_management_hub/models/installed_windows_update_collection.py +++ b/src/oci/os_management_hub/models/installed_windows_update_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/installed_windows_update_summary.py b/src/oci/os_management_hub/models/installed_windows_update_summary.py index 30c9d65c54..a63eaa99bd 100644 --- a/src/oci/os_management_hub/models/installed_windows_update_summary.py +++ b/src/oci/os_management_hub/models/installed_windows_update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/kernel_crash_event.py b/src/oci/os_management_hub/models/kernel_crash_event.py index d18ef917db..deb1f1783b 100644 --- a/src/oci/os_management_hub/models/kernel_crash_event.py +++ b/src/oci/os_management_hub/models/kernel_crash_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/kernel_event_additional_details.py b/src/oci/os_management_hub/models/kernel_event_additional_details.py index fa292ba055..fbd48466bf 100644 --- a/src/oci/os_management_hub/models/kernel_event_additional_details.py +++ b/src/oci/os_management_hub/models/kernel_event_additional_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/kernel_event_content.py b/src/oci/os_management_hub/models/kernel_event_content.py index 9807e6c372..a202e1e8e0 100644 --- a/src/oci/os_management_hub/models/kernel_event_content.py +++ b/src/oci/os_management_hub/models/kernel_event_content.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/kernel_event_data.py b/src/oci/os_management_hub/models/kernel_event_data.py index 960f2abf32..70e77401be 100644 --- a/src/oci/os_management_hub/models/kernel_event_data.py +++ b/src/oci/os_management_hub/models/kernel_event_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/kernel_oops_event.py b/src/oci/os_management_hub/models/kernel_oops_event.py index 999112ec03..f611d0a917 100644 --- a/src/oci/os_management_hub/models/kernel_oops_event.py +++ b/src/oci/os_management_hub/models/kernel_oops_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/ksplice_update_event.py b/src/oci/os_management_hub/models/ksplice_update_event.py index 7ede92e245..30c2036bfb 100644 --- a/src/oci/os_management_hub/models/ksplice_update_event.py +++ b/src/oci/os_management_hub/models/ksplice_update_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/ksplice_update_event_data.py b/src/oci/os_management_hub/models/ksplice_update_event_data.py index 891eeab53c..6e7f444d27 100644 --- a/src/oci/os_management_hub/models/ksplice_update_event_data.py +++ b/src/oci/os_management_hub/models/ksplice_update_event_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/lifecycle_environment.py b/src/oci/os_management_hub/models/lifecycle_environment.py index b4ed13e722..9c16b3c970 100644 --- a/src/oci/os_management_hub/models/lifecycle_environment.py +++ b/src/oci/os_management_hub/models/lifecycle_environment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/lifecycle_environment_collection.py b/src/oci/os_management_hub/models/lifecycle_environment_collection.py index 55e8345ee7..b29669c736 100644 --- a/src/oci/os_management_hub/models/lifecycle_environment_collection.py +++ b/src/oci/os_management_hub/models/lifecycle_environment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/lifecycle_environment_details.py b/src/oci/os_management_hub/models/lifecycle_environment_details.py index 08c7444c81..edfea2b7ce 100644 --- a/src/oci/os_management_hub/models/lifecycle_environment_details.py +++ b/src/oci/os_management_hub/models/lifecycle_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/lifecycle_environment_summary.py b/src/oci/os_management_hub/models/lifecycle_environment_summary.py index a1b958c90d..5604153bfd 100644 --- a/src/oci/os_management_hub/models/lifecycle_environment_summary.py +++ b/src/oci/os_management_hub/models/lifecycle_environment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/lifecycle_profile.py b/src/oci/os_management_hub/models/lifecycle_profile.py index 996562e5af..74f24cc0c8 100644 --- a/src/oci/os_management_hub/models/lifecycle_profile.py +++ b/src/oci/os_management_hub/models/lifecycle_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/lifecycle_stage.py b/src/oci/os_management_hub/models/lifecycle_stage.py index 6394e2e2f3..374cb1cab4 100644 --- a/src/oci/os_management_hub/models/lifecycle_stage.py +++ b/src/oci/os_management_hub/models/lifecycle_stage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/lifecycle_stage_collection.py b/src/oci/os_management_hub/models/lifecycle_stage_collection.py index a1e64e7899..9de10f10d1 100644 --- a/src/oci/os_management_hub/models/lifecycle_stage_collection.py +++ b/src/oci/os_management_hub/models/lifecycle_stage_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/lifecycle_stage_details.py b/src/oci/os_management_hub/models/lifecycle_stage_details.py index 25d908e610..eed7df4854 100644 --- a/src/oci/os_management_hub/models/lifecycle_stage_details.py +++ b/src/oci/os_management_hub/models/lifecycle_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/lifecycle_stage_summary.py b/src/oci/os_management_hub/models/lifecycle_stage_summary.py index 0b72573daa..5740af76dd 100644 --- a/src/oci/os_management_hub/models/lifecycle_stage_summary.py +++ b/src/oci/os_management_hub/models/lifecycle_stage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/manage_module_streams_in_scheduled_job_details.py b/src/oci/os_management_hub/models/manage_module_streams_in_scheduled_job_details.py index b4bbf42a1d..6df0cb127b 100644 --- a/src/oci/os_management_hub/models/manage_module_streams_in_scheduled_job_details.py +++ b/src/oci/os_management_hub/models/manage_module_streams_in_scheduled_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.py b/src/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.py index afdae6964f..c99c2ad849 100644 --- a/src/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.py +++ b/src/oci/os_management_hub/models/manage_module_streams_on_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/manage_module_streams_on_managed_instance_group_details.py b/src/oci/os_management_hub/models/manage_module_streams_on_managed_instance_group_details.py index 1cf867f804..510826f13e 100644 --- a/src/oci/os_management_hub/models/manage_module_streams_on_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/manage_module_streams_on_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance.py b/src/oci/os_management_hub/models/managed_instance.py index 631dbe9ffb..d1e83abe03 100644 --- a/src/oci/os_management_hub/models/managed_instance.py +++ b/src/oci/os_management_hub/models/managed_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_analytic_collection.py b/src/oci/os_management_hub/models/managed_instance_analytic_collection.py index 77d4673a9a..0bd9ed247f 100644 --- a/src/oci/os_management_hub/models/managed_instance_analytic_collection.py +++ b/src/oci/os_management_hub/models/managed_instance_analytic_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_analytic_summary.py b/src/oci/os_management_hub/models/managed_instance_analytic_summary.py index b7272a9082..8b15e79047 100644 --- a/src/oci/os_management_hub/models/managed_instance_analytic_summary.py +++ b/src/oci/os_management_hub/models/managed_instance_analytic_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_collection.py b/src/oci/os_management_hub/models/managed_instance_collection.py index ae11cb409e..ecc21a411a 100644 --- a/src/oci/os_management_hub/models/managed_instance_collection.py +++ b/src/oci/os_management_hub/models/managed_instance_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_details.py b/src/oci/os_management_hub/models/managed_instance_details.py index 750637dcbb..2ef64048cc 100644 --- a/src/oci/os_management_hub/models/managed_instance_details.py +++ b/src/oci/os_management_hub/models/managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_erratum_summary.py b/src/oci/os_management_hub/models/managed_instance_erratum_summary.py index 3108054c7c..cc8646d4c0 100644 --- a/src/oci/os_management_hub/models/managed_instance_erratum_summary.py +++ b/src/oci/os_management_hub/models/managed_instance_erratum_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_erratum_summary_collection.py b/src/oci/os_management_hub/models/managed_instance_erratum_summary_collection.py index 9dd9139a85..f84efb1b6f 100644 --- a/src/oci/os_management_hub/models/managed_instance_erratum_summary_collection.py +++ b/src/oci/os_management_hub/models/managed_instance_erratum_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group.py b/src/oci/os_management_hub/models/managed_instance_group.py index b66c101cd1..eea7e4e29a 100644 --- a/src/oci/os_management_hub/models/managed_instance_group.py +++ b/src/oci/os_management_hub/models/managed_instance_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_available_module_collection.py b/src/oci/os_management_hub/models/managed_instance_group_available_module_collection.py index a96e369b1d..1df8e2a59a 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_available_module_collection.py +++ b/src/oci/os_management_hub/models/managed_instance_group_available_module_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_available_module_summary.py b/src/oci/os_management_hub/models/managed_instance_group_available_module_summary.py index 093a9574d2..f91b5ad686 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_available_module_summary.py +++ b/src/oci/os_management_hub/models/managed_instance_group_available_module_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_available_package_collection.py b/src/oci/os_management_hub/models/managed_instance_group_available_package_collection.py index 62936d740a..1bfab637eb 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_available_package_collection.py +++ b/src/oci/os_management_hub/models/managed_instance_group_available_package_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_available_package_summary.py b/src/oci/os_management_hub/models/managed_instance_group_available_package_summary.py index e66a513cb8..827b811bd3 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_available_package_summary.py +++ b/src/oci/os_management_hub/models/managed_instance_group_available_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_collection.py b/src/oci/os_management_hub/models/managed_instance_group_collection.py index d552dc6cc3..f3433c969d 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_collection.py +++ b/src/oci/os_management_hub/models/managed_instance_group_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_details.py b/src/oci/os_management_hub/models/managed_instance_group_details.py index 2b35379da3..7b220ec48c 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_installed_package_collection.py b/src/oci/os_management_hub/models/managed_instance_group_installed_package_collection.py index 57a65b5690..aa40992da2 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_installed_package_collection.py +++ b/src/oci/os_management_hub/models/managed_instance_group_installed_package_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_installed_package_summary.py b/src/oci/os_management_hub/models/managed_instance_group_installed_package_summary.py index 41c908bf06..7824b5c17b 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_installed_package_summary.py +++ b/src/oci/os_management_hub/models/managed_instance_group_installed_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_module_collection.py b/src/oci/os_management_hub/models/managed_instance_group_module_collection.py index b02465ee07..b563a089a2 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_module_collection.py +++ b/src/oci/os_management_hub/models/managed_instance_group_module_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_module_summary.py b/src/oci/os_management_hub/models/managed_instance_group_module_summary.py index 3f7faed408..1b42b2bab8 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_module_summary.py +++ b/src/oci/os_management_hub/models/managed_instance_group_module_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_group_summary.py b/src/oci/os_management_hub/models/managed_instance_group_summary.py index afa030a802..7d3ea181a3 100644 --- a/src/oci/os_management_hub/models/managed_instance_group_summary.py +++ b/src/oci/os_management_hub/models/managed_instance_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_module_collection.py b/src/oci/os_management_hub/models/managed_instance_module_collection.py index c5e4061019..4415c6240c 100644 --- a/src/oci/os_management_hub/models/managed_instance_module_collection.py +++ b/src/oci/os_management_hub/models/managed_instance_module_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_module_summary.py b/src/oci/os_management_hub/models/managed_instance_module_summary.py index 825397c5a1..7a2f81fd0b 100644 --- a/src/oci/os_management_hub/models/managed_instance_module_summary.py +++ b/src/oci/os_management_hub/models/managed_instance_module_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instance_summary.py b/src/oci/os_management_hub/models/managed_instance_summary.py index 8657513aee..489df0f062 100644 --- a/src/oci/os_management_hub/models/managed_instance_summary.py +++ b/src/oci/os_management_hub/models/managed_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/managed_instances_details.py b/src/oci/os_management_hub/models/managed_instances_details.py index 5fb10786c3..ef76a1a6fa 100644 --- a/src/oci/os_management_hub/models/managed_instances_details.py +++ b/src/oci/os_management_hub/models/managed_instances_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/management_station.py b/src/oci/os_management_hub/models/management_station.py index 9e8062d105..13ef56a673 100644 --- a/src/oci/os_management_hub/models/management_station.py +++ b/src/oci/os_management_hub/models/management_station.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/management_station_collection.py b/src/oci/os_management_hub/models/management_station_collection.py index 487eb5580e..f6e2456027 100644 --- a/src/oci/os_management_hub/models/management_station_collection.py +++ b/src/oci/os_management_hub/models/management_station_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/management_station_details.py b/src/oci/os_management_hub/models/management_station_details.py index e5689a87cd..28df099ac6 100644 --- a/src/oci/os_management_hub/models/management_station_details.py +++ b/src/oci/os_management_hub/models/management_station_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/management_station_event.py b/src/oci/os_management_hub/models/management_station_event.py index 7fef21a96e..574b1534ab 100644 --- a/src/oci/os_management_hub/models/management_station_event.py +++ b/src/oci/os_management_hub/models/management_station_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/management_station_event_data.py b/src/oci/os_management_hub/models/management_station_event_data.py index c9c1dbf936..55bb59d749 100644 --- a/src/oci/os_management_hub/models/management_station_event_data.py +++ b/src/oci/os_management_hub/models/management_station_event_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/management_station_summary.py b/src/oci/os_management_hub/models/management_station_summary.py index 7e7352e80b..185ed21a15 100644 --- a/src/oci/os_management_hub/models/management_station_summary.py +++ b/src/oci/os_management_hub/models/management_station_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/mirror_configuration.py b/src/oci/os_management_hub/models/mirror_configuration.py index 8c7eefa84d..b5ef501050 100644 --- a/src/oci/os_management_hub/models/mirror_configuration.py +++ b/src/oci/os_management_hub/models/mirror_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/mirror_summary.py b/src/oci/os_management_hub/models/mirror_summary.py index b42fbb9509..140e00e44c 100644 --- a/src/oci/os_management_hub/models/mirror_summary.py +++ b/src/oci/os_management_hub/models/mirror_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/mirror_sync_status.py b/src/oci/os_management_hub/models/mirror_sync_status.py index da15c1d4ff..9c2a6822ec 100644 --- a/src/oci/os_management_hub/models/mirror_sync_status.py +++ b/src/oci/os_management_hub/models/mirror_sync_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/mirrors_collection.py b/src/oci/os_management_hub/models/mirrors_collection.py index 3033208836..c507a7137a 100644 --- a/src/oci/os_management_hub/models/mirrors_collection.py +++ b/src/oci/os_management_hub/models/mirrors_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_collection.py b/src/oci/os_management_hub/models/module_collection.py index e2512a1983..eedfd317c7 100644 --- a/src/oci/os_management_hub/models/module_collection.py +++ b/src/oci/os_management_hub/models/module_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_spec_details.py b/src/oci/os_management_hub/models/module_spec_details.py index 32b3153744..0a0370defd 100644 --- a/src/oci/os_management_hub/models/module_spec_details.py +++ b/src/oci/os_management_hub/models/module_spec_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream.py b/src/oci/os_management_hub/models/module_stream.py index ca2556e65a..3eb855153c 100644 --- a/src/oci/os_management_hub/models/module_stream.py +++ b/src/oci/os_management_hub/models/module_stream.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_collection.py b/src/oci/os_management_hub/models/module_stream_collection.py index 667acbdcb8..f4f78cb00a 100644 --- a/src/oci/os_management_hub/models/module_stream_collection.py +++ b/src/oci/os_management_hub/models/module_stream_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_details.py b/src/oci/os_management_hub/models/module_stream_details.py index 4d4dcd5e80..5f07ccfa03 100644 --- a/src/oci/os_management_hub/models/module_stream_details.py +++ b/src/oci/os_management_hub/models/module_stream_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_details_body.py b/src/oci/os_management_hub/models/module_stream_details_body.py index 646aab92b0..1d8f760930 100644 --- a/src/oci/os_management_hub/models/module_stream_details_body.py +++ b/src/oci/os_management_hub/models/module_stream_details_body.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_profile.py b/src/oci/os_management_hub/models/module_stream_profile.py index 8fef4c6d73..1be9df7742 100644 --- a/src/oci/os_management_hub/models/module_stream_profile.py +++ b/src/oci/os_management_hub/models/module_stream_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_profile_collection.py b/src/oci/os_management_hub/models/module_stream_profile_collection.py index 447d790155..cd18ce63c0 100644 --- a/src/oci/os_management_hub/models/module_stream_profile_collection.py +++ b/src/oci/os_management_hub/models/module_stream_profile_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_profile_details.py b/src/oci/os_management_hub/models/module_stream_profile_details.py index 28d102ebac..9cdc66bc3f 100644 --- a/src/oci/os_management_hub/models/module_stream_profile_details.py +++ b/src/oci/os_management_hub/models/module_stream_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_profile_details_body.py b/src/oci/os_management_hub/models/module_stream_profile_details_body.py index 61c9445cf2..04c6346a6a 100644 --- a/src/oci/os_management_hub/models/module_stream_profile_details_body.py +++ b/src/oci/os_management_hub/models/module_stream_profile_details_body.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_profile_filter.py b/src/oci/os_management_hub/models/module_stream_profile_filter.py index ed91d97ae4..f890371e68 100644 --- a/src/oci/os_management_hub/models/module_stream_profile_filter.py +++ b/src/oci/os_management_hub/models/module_stream_profile_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_profile_summary.py b/src/oci/os_management_hub/models/module_stream_profile_summary.py index 3151773df2..b0fc3ef510 100644 --- a/src/oci/os_management_hub/models/module_stream_profile_summary.py +++ b/src/oci/os_management_hub/models/module_stream_profile_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_stream_summary.py b/src/oci/os_management_hub/models/module_stream_summary.py index 768438a8d0..92bdce29e8 100644 --- a/src/oci/os_management_hub/models/module_stream_summary.py +++ b/src/oci/os_management_hub/models/module_stream_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/module_summary.py b/src/oci/os_management_hub/models/module_summary.py index 580953a13a..89d042a526 100644 --- a/src/oci/os_management_hub/models/module_summary.py +++ b/src/oci/os_management_hub/models/module_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/package_filter.py b/src/oci/os_management_hub/models/package_filter.py index a2f0ff1dd5..c6cc2fcaf7 100644 --- a/src/oci/os_management_hub/models/package_filter.py +++ b/src/oci/os_management_hub/models/package_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/package_group.py b/src/oci/os_management_hub/models/package_group.py index e2d6eb7682..03dda504ec 100644 --- a/src/oci/os_management_hub/models/package_group.py +++ b/src/oci/os_management_hub/models/package_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/package_group_collection.py b/src/oci/os_management_hub/models/package_group_collection.py index 28237a2027..380db5ddcc 100644 --- a/src/oci/os_management_hub/models/package_group_collection.py +++ b/src/oci/os_management_hub/models/package_group_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/package_group_filter.py b/src/oci/os_management_hub/models/package_group_filter.py index 611c290a20..82110bdb8f 100644 --- a/src/oci/os_management_hub/models/package_group_filter.py +++ b/src/oci/os_management_hub/models/package_group_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/package_group_summary.py b/src/oci/os_management_hub/models/package_group_summary.py index 359e9657d3..f542e8db74 100644 --- a/src/oci/os_management_hub/models/package_group_summary.py +++ b/src/oci/os_management_hub/models/package_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/package_name_summary.py b/src/oci/os_management_hub/models/package_name_summary.py index 65f039c272..20a2d9174d 100644 --- a/src/oci/os_management_hub/models/package_name_summary.py +++ b/src/oci/os_management_hub/models/package_name_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/package_summary.py b/src/oci/os_management_hub/models/package_summary.py index b8157e377b..386c4b1895 100644 --- a/src/oci/os_management_hub/models/package_summary.py +++ b/src/oci/os_management_hub/models/package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/profile.py b/src/oci/os_management_hub/models/profile.py index 4ce93801f9..12fc4e6e90 100644 --- a/src/oci/os_management_hub/models/profile.py +++ b/src/oci/os_management_hub/models/profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/profile_collection.py b/src/oci/os_management_hub/models/profile_collection.py index 1c58664ed4..4e0bd6a2a9 100644 --- a/src/oci/os_management_hub/models/profile_collection.py +++ b/src/oci/os_management_hub/models/profile_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/profile_summary.py b/src/oci/os_management_hub/models/profile_summary.py index 5d743e62ee..73f111b3a2 100644 --- a/src/oci/os_management_hub/models/profile_summary.py +++ b/src/oci/os_management_hub/models/profile_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/promote_software_source_to_lifecycle_stage_details.py b/src/oci/os_management_hub/models/promote_software_source_to_lifecycle_stage_details.py index 822d214a3e..d7ce48a2a5 100644 --- a/src/oci/os_management_hub/models/promote_software_source_to_lifecycle_stage_details.py +++ b/src/oci/os_management_hub/models/promote_software_source_to_lifecycle_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/proxy_configuration.py b/src/oci/os_management_hub/models/proxy_configuration.py index 2e2c613a89..0c1e953d9f 100644 --- a/src/oci/os_management_hub/models/proxy_configuration.py +++ b/src/oci/os_management_hub/models/proxy_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/remove_module_stream_profile_from_managed_instance_details.py b/src/oci/os_management_hub/models/remove_module_stream_profile_from_managed_instance_details.py index c568f024e5..5e2f9f977c 100644 --- a/src/oci/os_management_hub/models/remove_module_stream_profile_from_managed_instance_details.py +++ b/src/oci/os_management_hub/models/remove_module_stream_profile_from_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/remove_module_stream_profile_from_managed_instance_group_details.py b/src/oci/os_management_hub/models/remove_module_stream_profile_from_managed_instance_group_details.py index 4fc416bea1..8bc2a14618 100644 --- a/src/oci/os_management_hub/models/remove_module_stream_profile_from_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/remove_module_stream_profile_from_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/remove_packages_from_managed_instance_details.py b/src/oci/os_management_hub/models/remove_packages_from_managed_instance_details.py index 6b65adef40..7e2c4df028 100644 --- a/src/oci/os_management_hub/models/remove_packages_from_managed_instance_details.py +++ b/src/oci/os_management_hub/models/remove_packages_from_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/remove_packages_from_managed_instance_group_details.py b/src/oci/os_management_hub/models/remove_packages_from_managed_instance_group_details.py index 4322594580..8671279f9b 100644 --- a/src/oci/os_management_hub/models/remove_packages_from_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/remove_packages_from_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/scheduled_job.py b/src/oci/os_management_hub/models/scheduled_job.py index 1efcbd67ce..35b489fb1a 100644 --- a/src/oci/os_management_hub/models/scheduled_job.py +++ b/src/oci/os_management_hub/models/scheduled_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/scheduled_job_collection.py b/src/oci/os_management_hub/models/scheduled_job_collection.py index b1c7db633d..7d0587dd9f 100644 --- a/src/oci/os_management_hub/models/scheduled_job_collection.py +++ b/src/oci/os_management_hub/models/scheduled_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/scheduled_job_operation.py b/src/oci/os_management_hub/models/scheduled_job_operation.py index ebb94a0598..52ee10b201 100644 --- a/src/oci/os_management_hub/models/scheduled_job_operation.py +++ b/src/oci/os_management_hub/models/scheduled_job_operation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/scheduled_job_summary.py b/src/oci/os_management_hub/models/scheduled_job_summary.py index 51d6c34ff7..62fc68b958 100644 --- a/src/oci/os_management_hub/models/scheduled_job_summary.py +++ b/src/oci/os_management_hub/models/scheduled_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/search_software_source_module_streams_details.py b/src/oci/os_management_hub/models/search_software_source_module_streams_details.py index 4820f74013..efaac53a4e 100644 --- a/src/oci/os_management_hub/models/search_software_source_module_streams_details.py +++ b/src/oci/os_management_hub/models/search_software_source_module_streams_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/search_software_source_modules_details.py b/src/oci/os_management_hub/models/search_software_source_modules_details.py index 174be6f70e..511fac9058 100644 --- a/src/oci/os_management_hub/models/search_software_source_modules_details.py +++ b/src/oci/os_management_hub/models/search_software_source_modules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/search_software_source_package_groups_details.py b/src/oci/os_management_hub/models/search_software_source_package_groups_details.py index 58b9435a4c..2fbcbcb6a9 100644 --- a/src/oci/os_management_hub/models/search_software_source_package_groups_details.py +++ b/src/oci/os_management_hub/models/search_software_source_package_groups_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_package.py b/src/oci/os_management_hub/models/software_package.py index 79f9fbb95d..722d20a5fe 100644 --- a/src/oci/os_management_hub/models/software_package.py +++ b/src/oci/os_management_hub/models/software_package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_package_collection.py b/src/oci/os_management_hub/models/software_package_collection.py index c68b1679e7..dc82f742f8 100644 --- a/src/oci/os_management_hub/models/software_package_collection.py +++ b/src/oci/os_management_hub/models/software_package_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_package_dependency.py b/src/oci/os_management_hub/models/software_package_dependency.py index 43a6165426..f7288042c8 100644 --- a/src/oci/os_management_hub/models/software_package_dependency.py +++ b/src/oci/os_management_hub/models/software_package_dependency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_package_file.py b/src/oci/os_management_hub/models/software_package_file.py index 315b618b14..9ddc748c8b 100644 --- a/src/oci/os_management_hub/models/software_package_file.py +++ b/src/oci/os_management_hub/models/software_package_file.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_package_summary.py b/src/oci/os_management_hub/models/software_package_summary.py index fe3b54e55c..0e8e5cd51a 100644 --- a/src/oci/os_management_hub/models/software_package_summary.py +++ b/src/oci/os_management_hub/models/software_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_packages_details.py b/src/oci/os_management_hub/models/software_packages_details.py index e8a02d89a6..beea69277b 100644 --- a/src/oci/os_management_hub/models/software_packages_details.py +++ b/src/oci/os_management_hub/models/software_packages_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source.py b/src/oci/os_management_hub/models/software_source.py index a972f7278f..4bc6741012 100644 --- a/src/oci/os_management_hub/models/software_source.py +++ b/src/oci/os_management_hub/models/software_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source_availability.py b/src/oci/os_management_hub/models/software_source_availability.py index ee37715b89..458b7ca3d7 100644 --- a/src/oci/os_management_hub/models/software_source_availability.py +++ b/src/oci/os_management_hub/models/software_source_availability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source_collection.py b/src/oci/os_management_hub/models/software_source_collection.py index 2f74933b7a..6ce99dbd87 100644 --- a/src/oci/os_management_hub/models/software_source_collection.py +++ b/src/oci/os_management_hub/models/software_source_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source_details.py b/src/oci/os_management_hub/models/software_source_details.py index 121f78886a..00b788c079 100644 --- a/src/oci/os_management_hub/models/software_source_details.py +++ b/src/oci/os_management_hub/models/software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source_event.py b/src/oci/os_management_hub/models/software_source_event.py index 109d73a9c3..020d20b581 100644 --- a/src/oci/os_management_hub/models/software_source_event.py +++ b/src/oci/os_management_hub/models/software_source_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source_event_data.py b/src/oci/os_management_hub/models/software_source_event_data.py index 8ecc52f7f5..0828c5db08 100644 --- a/src/oci/os_management_hub/models/software_source_event_data.py +++ b/src/oci/os_management_hub/models/software_source_event_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source_profile.py b/src/oci/os_management_hub/models/software_source_profile.py index cd4877d25c..4d52aaaa0f 100644 --- a/src/oci/os_management_hub/models/software_source_profile.py +++ b/src/oci/os_management_hub/models/software_source_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source_summary.py b/src/oci/os_management_hub/models/software_source_summary.py index b26b856dd9..c052e96a70 100644 --- a/src/oci/os_management_hub/models/software_source_summary.py +++ b/src/oci/os_management_hub/models/software_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source_vendor_collection.py b/src/oci/os_management_hub/models/software_source_vendor_collection.py index 3f7a4df48b..c4893c7644 100644 --- a/src/oci/os_management_hub/models/software_source_vendor_collection.py +++ b/src/oci/os_management_hub/models/software_source_vendor_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_source_vendor_summary.py b/src/oci/os_management_hub/models/software_source_vendor_summary.py index c548e06ed0..44c21fe1f3 100644 --- a/src/oci/os_management_hub/models/software_source_vendor_summary.py +++ b/src/oci/os_management_hub/models/software_source_vendor_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_sources_details.py b/src/oci/os_management_hub/models/software_sources_details.py index 88f2b1e69b..59b3a6744a 100644 --- a/src/oci/os_management_hub/models/software_sources_details.py +++ b/src/oci/os_management_hub/models/software_sources_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_update_event.py b/src/oci/os_management_hub/models/software_update_event.py index ca5ab0026b..572d5855e8 100644 --- a/src/oci/os_management_hub/models/software_update_event.py +++ b/src/oci/os_management_hub/models/software_update_event.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/software_update_event_data.py b/src/oci/os_management_hub/models/software_update_event_data.py index 0e32e31fb1..45e526bc09 100644 --- a/src/oci/os_management_hub/models/software_update_event_data.py +++ b/src/oci/os_management_hub/models/software_update_event_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/station_health.py b/src/oci/os_management_hub/models/station_health.py index 0464b74515..f9bf30d1ca 100644 --- a/src/oci/os_management_hub/models/station_health.py +++ b/src/oci/os_management_hub/models/station_health.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/station_profile.py b/src/oci/os_management_hub/models/station_profile.py index 467f53883d..4db28fffc8 100644 --- a/src/oci/os_management_hub/models/station_profile.py +++ b/src/oci/os_management_hub/models/station_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/switch_module_stream_on_managed_instance_details.py b/src/oci/os_management_hub/models/switch_module_stream_on_managed_instance_details.py index 37985f6ced..d4fee79d22 100644 --- a/src/oci/os_management_hub/models/switch_module_stream_on_managed_instance_details.py +++ b/src/oci/os_management_hub/models/switch_module_stream_on_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/switch_module_stream_on_managed_instance_group_details.py b/src/oci/os_management_hub/models/switch_module_stream_on_managed_instance_group_details.py index 91bb7ab6da..fa71667b17 100644 --- a/src/oci/os_management_hub/models/switch_module_stream_on_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/switch_module_stream_on_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/synchronize_mirrors_details.py b/src/oci/os_management_hub/models/synchronize_mirrors_details.py index 7ed31e83e9..60de44eb9c 100644 --- a/src/oci/os_management_hub/models/synchronize_mirrors_details.py +++ b/src/oci/os_management_hub/models/synchronize_mirrors_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/system_details.py b/src/oci/os_management_hub/models/system_details.py index 32d8b1ce95..86da79792c 100644 --- a/src/oci/os_management_hub/models/system_details.py +++ b/src/oci/os_management_hub/models/system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/updatable_autonomous_settings.py b/src/oci/os_management_hub/models/updatable_autonomous_settings.py index bd866603ec..6fd54e0f7d 100644 --- a/src/oci/os_management_hub/models/updatable_autonomous_settings.py +++ b/src/oci/os_management_hub/models/updatable_autonomous_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/updatable_package_collection.py b/src/oci/os_management_hub/models/updatable_package_collection.py index da9f68a036..ab20f2c146 100644 --- a/src/oci/os_management_hub/models/updatable_package_collection.py +++ b/src/oci/os_management_hub/models/updatable_package_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/updatable_package_summary.py b/src/oci/os_management_hub/models/updatable_package_summary.py index 31cf4d5e35..15dd497dd5 100644 --- a/src/oci/os_management_hub/models/updatable_package_summary.py +++ b/src/oci/os_management_hub/models/updatable_package_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_all_packages_on_managed_instance_group_details.py b/src/oci/os_management_hub/models/update_all_packages_on_managed_instance_group_details.py index 95d56184ac..068485a625 100644 --- a/src/oci/os_management_hub/models/update_all_packages_on_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/update_all_packages_on_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_all_packages_on_managed_instances_in_compartment_details.py b/src/oci/os_management_hub/models/update_all_packages_on_managed_instances_in_compartment_details.py index 36ac394b62..458435a1a0 100644 --- a/src/oci/os_management_hub/models/update_all_packages_on_managed_instances_in_compartment_details.py +++ b/src/oci/os_management_hub/models/update_all_packages_on_managed_instances_in_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_custom_software_source_details.py b/src/oci/os_management_hub/models/update_custom_software_source_details.py index 099c80ef1c..3f240c24d2 100644 --- a/src/oci/os_management_hub/models/update_custom_software_source_details.py +++ b/src/oci/os_management_hub/models/update_custom_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_event_details.py b/src/oci/os_management_hub/models/update_event_details.py index 97747a536a..756d9ea71e 100644 --- a/src/oci/os_management_hub/models/update_event_details.py +++ b/src/oci/os_management_hub/models/update_event_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_lifecycle_environment_details.py b/src/oci/os_management_hub/models/update_lifecycle_environment_details.py index b19a699144..cc955b42c8 100644 --- a/src/oci/os_management_hub/models/update_lifecycle_environment_details.py +++ b/src/oci/os_management_hub/models/update_lifecycle_environment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_lifecycle_stage_details.py b/src/oci/os_management_hub/models/update_lifecycle_stage_details.py index 9a8f9a1cb9..20bc0a725b 100644 --- a/src/oci/os_management_hub/models/update_lifecycle_stage_details.py +++ b/src/oci/os_management_hub/models/update_lifecycle_stage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_managed_instance_details.py b/src/oci/os_management_hub/models/update_managed_instance_details.py index 06a57d5a87..5d7a0dd0ab 100644 --- a/src/oci/os_management_hub/models/update_managed_instance_details.py +++ b/src/oci/os_management_hub/models/update_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_managed_instance_group_details.py b/src/oci/os_management_hub/models/update_managed_instance_group_details.py index 1bb4794b01..12315d6fdb 100644 --- a/src/oci/os_management_hub/models/update_managed_instance_group_details.py +++ b/src/oci/os_management_hub/models/update_managed_instance_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_management_station_details.py b/src/oci/os_management_hub/models/update_management_station_details.py index d733fe3459..4abb668fe2 100644 --- a/src/oci/os_management_hub/models/update_management_station_details.py +++ b/src/oci/os_management_hub/models/update_management_station_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_mirror_configuration_details.py b/src/oci/os_management_hub/models/update_mirror_configuration_details.py index 938fd08eee..376ae2b5f4 100644 --- a/src/oci/os_management_hub/models/update_mirror_configuration_details.py +++ b/src/oci/os_management_hub/models/update_mirror_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_packages_on_managed_instance_details.py b/src/oci/os_management_hub/models/update_packages_on_managed_instance_details.py index 3235a3e59b..4a43099e5c 100644 --- a/src/oci/os_management_hub/models/update_packages_on_managed_instance_details.py +++ b/src/oci/os_management_hub/models/update_packages_on_managed_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_profile_details.py b/src/oci/os_management_hub/models/update_profile_details.py index db2fd8ada4..83fa6dcd99 100644 --- a/src/oci/os_management_hub/models/update_profile_details.py +++ b/src/oci/os_management_hub/models/update_profile_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_proxy_configuration_details.py b/src/oci/os_management_hub/models/update_proxy_configuration_details.py index ad33e101b0..80e68b0e62 100644 --- a/src/oci/os_management_hub/models/update_proxy_configuration_details.py +++ b/src/oci/os_management_hub/models/update_proxy_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_scheduled_job_details.py b/src/oci/os_management_hub/models/update_scheduled_job_details.py index 0717e822e5..f2838aa0d5 100644 --- a/src/oci/os_management_hub/models/update_scheduled_job_details.py +++ b/src/oci/os_management_hub/models/update_scheduled_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_software_source_details.py b/src/oci/os_management_hub/models/update_software_source_details.py index ad1a37e1e2..e958864068 100644 --- a/src/oci/os_management_hub/models/update_software_source_details.py +++ b/src/oci/os_management_hub/models/update_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_vendor_software_source_details.py b/src/oci/os_management_hub/models/update_vendor_software_source_details.py index 5ca79812d9..9cd17e8564 100644 --- a/src/oci/os_management_hub/models/update_vendor_software_source_details.py +++ b/src/oci/os_management_hub/models/update_vendor_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_versioned_custom_software_source_details.py b/src/oci/os_management_hub/models/update_versioned_custom_software_source_details.py index cb339918dc..c28526c8fd 100644 --- a/src/oci/os_management_hub/models/update_versioned_custom_software_source_details.py +++ b/src/oci/os_management_hub/models/update_versioned_custom_software_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/update_work_request_details.py b/src/oci/os_management_hub/models/update_work_request_details.py index fd78a89060..b6dfeefcaf 100644 --- a/src/oci/os_management_hub/models/update_work_request_details.py +++ b/src/oci/os_management_hub/models/update_work_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/vendor_software_source.py b/src/oci/os_management_hub/models/vendor_software_source.py index 1780b2b243..f1bf34a77b 100644 --- a/src/oci/os_management_hub/models/vendor_software_source.py +++ b/src/oci/os_management_hub/models/vendor_software_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/vendor_software_source_summary.py b/src/oci/os_management_hub/models/vendor_software_source_summary.py index 059d5ec4ca..a49b0455f6 100644 --- a/src/oci/os_management_hub/models/vendor_software_source_summary.py +++ b/src/oci/os_management_hub/models/vendor_software_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/versioned_custom_software_source.py b/src/oci/os_management_hub/models/versioned_custom_software_source.py index f57df992f1..5671a47fd0 100644 --- a/src/oci/os_management_hub/models/versioned_custom_software_source.py +++ b/src/oci/os_management_hub/models/versioned_custom_software_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/versioned_custom_software_source_summary.py b/src/oci/os_management_hub/models/versioned_custom_software_source_summary.py index 80772e4941..25d4c742a5 100644 --- a/src/oci/os_management_hub/models/versioned_custom_software_source_summary.py +++ b/src/oci/os_management_hub/models/versioned_custom_software_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/vmcore_details.py b/src/oci/os_management_hub/models/vmcore_details.py index a79bd9c220..a270484a85 100644 --- a/src/oci/os_management_hub/models/vmcore_details.py +++ b/src/oci/os_management_hub/models/vmcore_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/windows_standalone_profile.py b/src/oci/os_management_hub/models/windows_standalone_profile.py index e9c9f1d7b0..d3372ceafd 100644 --- a/src/oci/os_management_hub/models/windows_standalone_profile.py +++ b/src/oci/os_management_hub/models/windows_standalone_profile.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/windows_update.py b/src/oci/os_management_hub/models/windows_update.py index 73193d2fd9..8a5a938cb7 100644 --- a/src/oci/os_management_hub/models/windows_update.py +++ b/src/oci/os_management_hub/models/windows_update.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/windows_update_collection.py b/src/oci/os_management_hub/models/windows_update_collection.py index f6e1642e37..fbae0070bc 100644 --- a/src/oci/os_management_hub/models/windows_update_collection.py +++ b/src/oci/os_management_hub/models/windows_update_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/windows_update_summary.py b/src/oci/os_management_hub/models/windows_update_summary.py index 69738182f2..9e2753c22e 100644 --- a/src/oci/os_management_hub/models/windows_update_summary.py +++ b/src/oci/os_management_hub/models/windows_update_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request.py b/src/oci/os_management_hub/models/work_request.py index 38577ed96a..e53a2c6180 100644 --- a/src/oci/os_management_hub/models/work_request.py +++ b/src/oci/os_management_hub/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_details.py b/src/oci/os_management_hub/models/work_request_details.py index e56ed32fae..d2bde30b3a 100644 --- a/src/oci/os_management_hub/models/work_request_details.py +++ b/src/oci/os_management_hub/models/work_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_error.py b/src/oci/os_management_hub/models/work_request_error.py index 634e35460a..f15288e159 100644 --- a/src/oci/os_management_hub/models/work_request_error.py +++ b/src/oci/os_management_hub/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_error_collection.py b/src/oci/os_management_hub/models/work_request_error_collection.py index 61054948b4..be0f7ec9db 100644 --- a/src/oci/os_management_hub/models/work_request_error_collection.py +++ b/src/oci/os_management_hub/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_event_data_additional_details.py b/src/oci/os_management_hub/models/work_request_event_data_additional_details.py index 6e19901290..6d4dbc23ed 100644 --- a/src/oci/os_management_hub/models/work_request_event_data_additional_details.py +++ b/src/oci/os_management_hub/models/work_request_event_data_additional_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_log_entry.py b/src/oci/os_management_hub/models/work_request_log_entry.py index 50d0a7718e..52a3a44213 100644 --- a/src/oci/os_management_hub/models/work_request_log_entry.py +++ b/src/oci/os_management_hub/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_log_entry_collection.py b/src/oci/os_management_hub/models/work_request_log_entry_collection.py index 29daa10320..025ef71f76 100644 --- a/src/oci/os_management_hub/models/work_request_log_entry_collection.py +++ b/src/oci/os_management_hub/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_management_station_details.py b/src/oci/os_management_hub/models/work_request_management_station_details.py index fae51854e3..c5e1b352ab 100644 --- a/src/oci/os_management_hub/models/work_request_management_station_details.py +++ b/src/oci/os_management_hub/models/work_request_management_station_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_resource.py b/src/oci/os_management_hub/models/work_request_resource.py index 14bbb42531..8825f91ce4 100644 --- a/src/oci/os_management_hub/models/work_request_resource.py +++ b/src/oci/os_management_hub/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_summary.py b/src/oci/os_management_hub/models/work_request_summary.py index 3b28f0a428..df81e48d5a 100644 --- a/src/oci/os_management_hub/models/work_request_summary.py +++ b/src/oci/os_management_hub/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/models/work_request_summary_collection.py b/src/oci/os_management_hub/models/work_request_summary_collection.py index 8bcaf728fd..132f8dac46 100644 --- a/src/oci/os_management_hub/models/work_request_summary_collection.py +++ b/src/oci/os_management_hub/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/onboarding_client.py b/src/oci/os_management_hub/onboarding_client.py index 25f9d94a6d..6b22cee010 100644 --- a/src/oci/os_management_hub/onboarding_client.py +++ b/src/oci/os_management_hub/onboarding_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/onboarding_client_composite_operations.py b/src/oci/os_management_hub/onboarding_client_composite_operations.py index 788208f9e3..55d2c100e1 100644 --- a/src/oci/os_management_hub/onboarding_client_composite_operations.py +++ b/src/oci/os_management_hub/onboarding_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/reporting_managed_instance_client.py b/src/oci/os_management_hub/reporting_managed_instance_client.py index 4cb3d27e82..31bbfc6db5 100644 --- a/src/oci/os_management_hub/reporting_managed_instance_client.py +++ b/src/oci/os_management_hub/reporting_managed_instance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/reporting_managed_instance_client_composite_operations.py b/src/oci/os_management_hub/reporting_managed_instance_client_composite_operations.py index 104d6708ab..f7f1b89f97 100644 --- a/src/oci/os_management_hub/reporting_managed_instance_client_composite_operations.py +++ b/src/oci/os_management_hub/reporting_managed_instance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/scheduled_job_client.py b/src/oci/os_management_hub/scheduled_job_client.py index 9e6d6f2c13..6d4f7e05ce 100644 --- a/src/oci/os_management_hub/scheduled_job_client.py +++ b/src/oci/os_management_hub/scheduled_job_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/scheduled_job_client_composite_operations.py b/src/oci/os_management_hub/scheduled_job_client_composite_operations.py index 2ade6759be..c1f1d46c5a 100644 --- a/src/oci/os_management_hub/scheduled_job_client_composite_operations.py +++ b/src/oci/os_management_hub/scheduled_job_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/software_source_client.py b/src/oci/os_management_hub/software_source_client.py index b55d5b8a03..1d63483df7 100644 --- a/src/oci/os_management_hub/software_source_client.py +++ b/src/oci/os_management_hub/software_source_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/software_source_client_composite_operations.py b/src/oci/os_management_hub/software_source_client_composite_operations.py index 3deed08a0c..a4843d35fb 100644 --- a/src/oci/os_management_hub/software_source_client_composite_operations.py +++ b/src/oci/os_management_hub/software_source_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/work_request_client.py b/src/oci/os_management_hub/work_request_client.py index 1f4aa8a80a..584db09853 100644 --- a/src/oci/os_management_hub/work_request_client.py +++ b/src/oci/os_management_hub/work_request_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/os_management_hub/work_request_client_composite_operations.py b/src/oci/os_management_hub/work_request_client_composite_operations.py index 6ce90ead74..2d1e62d2f4 100644 --- a/src/oci/os_management_hub/work_request_client_composite_operations.py +++ b/src/oci/os_management_hub/work_request_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/osp_gateway/__init__.py b/src/oci/osp_gateway/__init__.py index 0806746e53..c0062c574a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/address_rule_service_client.py b/src/oci/osp_gateway/address_rule_service_client.py index 1c75bfb5df..10559e1e9e 100644 --- a/src/oci/osp_gateway/address_rule_service_client.py +++ b/src/oci/osp_gateway/address_rule_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/address_rule_service_client_composite_operations.py b/src/oci/osp_gateway/address_rule_service_client_composite_operations.py index 3a57398ba2..d82e5a4b5d 100644 --- a/src/oci/osp_gateway/address_rule_service_client_composite_operations.py +++ b/src/oci/osp_gateway/address_rule_service_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/address_service_client.py b/src/oci/osp_gateway/address_service_client.py index 9b3d949a89..155fdbe8e1 100644 --- a/src/oci/osp_gateway/address_service_client.py +++ b/src/oci/osp_gateway/address_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/address_service_client_composite_operations.py b/src/oci/osp_gateway/address_service_client_composite_operations.py index ffd7140b71..fa50a91653 100644 --- a/src/oci/osp_gateway/address_service_client_composite_operations.py +++ b/src/oci/osp_gateway/address_service_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/invoice_service_client.py b/src/oci/osp_gateway/invoice_service_client.py index dba2c6df6e..b28fe08b44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 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 78aea8ed4c..9586f1a374 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/__init__.py b/src/oci/osp_gateway/models/__init__.py index 2c01c2299a..78a227875b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/address.py b/src/oci/osp_gateway/models/address.py index dc3740cb66..40c52db168 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/address_rule.py b/src/oci/osp_gateway/models/address_rule.py index 74d6d3fc8b..4069bd9ef2 100644 --- a/src/oci/osp_gateway/models/address_rule.py +++ b/src/oci/osp_gateway/models/address_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/address_type_rule.py b/src/oci/osp_gateway/models/address_type_rule.py index 1892b7dfc7..658f5ff4b2 100644 --- a/src/oci/osp_gateway/models/address_type_rule.py +++ b/src/oci/osp_gateway/models/address_type_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/authorize_subscription_payment_details.py b/src/oci/osp_gateway/models/authorize_subscription_payment_details.py index a9c21a95ca..eca2cdae25 100644 --- a/src/oci/osp_gateway/models/authorize_subscription_payment_details.py +++ b/src/oci/osp_gateway/models/authorize_subscription_payment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/authorize_subscription_payment_receipt.py b/src/oci/osp_gateway/models/authorize_subscription_payment_receipt.py index 714c19b8b0..5a03906b5b 100644 --- a/src/oci/osp_gateway/models/authorize_subscription_payment_receipt.py +++ b/src/oci/osp_gateway/models/authorize_subscription_payment_receipt.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/bill_to_address.py b/src/oci/osp_gateway/models/bill_to_address.py index b1ed0d7177..d26cbdfeb1 100644 --- a/src/oci/osp_gateway/models/bill_to_address.py +++ b/src/oci/osp_gateway/models/bill_to_address.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/contact_type_rule.py b/src/oci/osp_gateway/models/contact_type_rule.py index d5f00cd968..ecefb40907 100644 --- a/src/oci/osp_gateway/models/contact_type_rule.py +++ b/src/oci/osp_gateway/models/contact_type_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/country.py b/src/oci/osp_gateway/models/country.py index a8713825ec..e57f0a3de0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 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 41ea96c0a9..c6ab05d664 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/credit_card_payment_option.py b/src/oci/osp_gateway/models/credit_card_payment_option.py index 11a0e9ef56..e4e2e45b43 100644 --- a/src/oci/osp_gateway/models/credit_card_payment_option.py +++ b/src/oci/osp_gateway/models/credit_card_payment_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/currency.py b/src/oci/osp_gateway/models/currency.py index 08963114f2..af3f58ce11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/echeck_payment_detail.py b/src/oci/osp_gateway/models/echeck_payment_detail.py index bbbd53277f..167840345f 100644 --- a/src/oci/osp_gateway/models/echeck_payment_detail.py +++ b/src/oci/osp_gateway/models/echeck_payment_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/field.py b/src/oci/osp_gateway/models/field.py index 0038354c9c..4caa345399 100644 --- a/src/oci/osp_gateway/models/field.py +++ b/src/oci/osp_gateway/models/field.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/format.py b/src/oci/osp_gateway/models/format.py index 179edba74f..931404513f 100644 --- a/src/oci/osp_gateway/models/format.py +++ b/src/oci/osp_gateway/models/format.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/invoice.py b/src/oci/osp_gateway/models/invoice.py index 06991956ff..b24d36aa87 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/invoice_collection.py b/src/oci/osp_gateway/models/invoice_collection.py index 4c559d8a44..63ba0d108c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/invoice_line_collection.py b/src/oci/osp_gateway/models/invoice_line_collection.py index 1ccc9a9faf..77979e68a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/invoice_line_summary.py b/src/oci/osp_gateway/models/invoice_line_summary.py index 1f3f126d36..e9580650c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/invoice_summary.py b/src/oci/osp_gateway/models/invoice_summary.py index 44805a74c2..f5e3dd0fbb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/label.py b/src/oci/osp_gateway/models/label.py index eeb92673b7..460a180536 100644 --- a/src/oci/osp_gateway/models/label.py +++ b/src/oci/osp_gateway/models/label.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/merchant_defined_data.py b/src/oci/osp_gateway/models/merchant_defined_data.py index a7477720ae..8b699814e3 100644 --- a/src/oci/osp_gateway/models/merchant_defined_data.py +++ b/src/oci/osp_gateway/models/merchant_defined_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/other_payment_detail.py b/src/oci/osp_gateway/models/other_payment_detail.py index 7f08657cd6..aaa18abfae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/pay_invoice_details.py b/src/oci/osp_gateway/models/pay_invoice_details.py index 1f2f604a7b..7ea9fb776f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/pay_invoice_receipt.py b/src/oci/osp_gateway/models/pay_invoice_receipt.py index bcc356f011..df6b9411e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/pay_subscription_details.py b/src/oci/osp_gateway/models/pay_subscription_details.py index 9379e082e6..9bc8182242 100644 --- a/src/oci/osp_gateway/models/pay_subscription_details.py +++ b/src/oci/osp_gateway/models/pay_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/pay_subscription_receipt.py b/src/oci/osp_gateway/models/pay_subscription_receipt.py index e10eb8e98a..491fd1bae8 100644 --- a/src/oci/osp_gateway/models/pay_subscription_receipt.py +++ b/src/oci/osp_gateway/models/pay_subscription_receipt.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/payment_detail.py b/src/oci/osp_gateway/models/payment_detail.py index fb19c9123f..514cb201ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/payment_gateway.py b/src/oci/osp_gateway/models/payment_gateway.py index 889deb89b5..e152ae7bfd 100644 --- a/src/oci/osp_gateway/models/payment_gateway.py +++ b/src/oci/osp_gateway/models/payment_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/payment_option.py b/src/oci/osp_gateway/models/payment_option.py index 682e21cef2..5b5a959dab 100644 --- a/src/oci/osp_gateway/models/payment_option.py +++ b/src/oci/osp_gateway/models/payment_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/paypal_payment_detail.py b/src/oci/osp_gateway/models/paypal_payment_detail.py index 9897df8cec..c7ddfc50d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/paypal_payment_option.py b/src/oci/osp_gateway/models/paypal_payment_option.py index 4f753f0312..a64a36fc0f 100644 --- a/src/oci/osp_gateway/models/paypal_payment_option.py +++ b/src/oci/osp_gateway/models/paypal_payment_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/subscription.py b/src/oci/osp_gateway/models/subscription.py index afecc00424..7b5e59cef5 100644 --- a/src/oci/osp_gateway/models/subscription.py +++ b/src/oci/osp_gateway/models/subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/subscription_collection.py b/src/oci/osp_gateway/models/subscription_collection.py index 0f75232988..66b15bb359 100644 --- a/src/oci/osp_gateway/models/subscription_collection.py +++ b/src/oci/osp_gateway/models/subscription_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/subscription_summary.py b/src/oci/osp_gateway/models/subscription_summary.py index 2a56ae2b15..b79f3b4067 100644 --- a/src/oci/osp_gateway/models/subscription_summary.py +++ b/src/oci/osp_gateway/models/subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/tax_info.py b/src/oci/osp_gateway/models/tax_info.py index 07b1c6456d..66a68b0ab6 100644 --- a/src/oci/osp_gateway/models/tax_info.py +++ b/src/oci/osp_gateway/models/tax_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/tax_type_rule.py b/src/oci/osp_gateway/models/tax_type_rule.py index c3e0f002c6..f34e85af0b 100644 --- a/src/oci/osp_gateway/models/tax_type_rule.py +++ b/src/oci/osp_gateway/models/tax_type_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/update_subscription_details.py b/src/oci/osp_gateway/models/update_subscription_details.py index b237312fe8..0c5320942c 100644 --- a/src/oci/osp_gateway/models/update_subscription_details.py +++ b/src/oci/osp_gateway/models/update_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/value_set_entity.py b/src/oci/osp_gateway/models/value_set_entity.py index 308ac7a82b..12e15b9e09 100644 --- a/src/oci/osp_gateway/models/value_set_entity.py +++ b/src/oci/osp_gateway/models/value_set_entity.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/verify_address_details.py b/src/oci/osp_gateway/models/verify_address_details.py index 315163f906..785e7d7599 100644 --- a/src/oci/osp_gateway/models/verify_address_details.py +++ b/src/oci/osp_gateway/models/verify_address_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/models/verify_address_receipt.py b/src/oci/osp_gateway/models/verify_address_receipt.py index 6887f51b99..49cbf04fc5 100644 --- a/src/oci/osp_gateway/models/verify_address_receipt.py +++ b/src/oci/osp_gateway/models/verify_address_receipt.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/subscription_service_client.py b/src/oci/osp_gateway/subscription_service_client.py index 2add40e78e..930518cea9 100644 --- a/src/oci/osp_gateway/subscription_service_client.py +++ b/src/oci/osp_gateway/subscription_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osp_gateway/subscription_service_client_composite_operations.py b/src/oci/osp_gateway/subscription_service_client_composite_operations.py index 873ac01fd4..b3dc330ccd 100644 --- a/src/oci/osp_gateway/subscription_service_client_composite_operations.py +++ b/src/oci/osp_gateway/subscription_service_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20191001 diff --git a/src/oci/osub_billing_schedule/__init__.py b/src/oci/osub_billing_schedule/__init__.py index 7d447106d5..a3d3ada217 100644 --- a/src/oci/osub_billing_schedule/__init__.py +++ b/src/oci/osub_billing_schedule/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_billing_schedule/billing_schedule_client.py b/src/oci/osub_billing_schedule/billing_schedule_client.py index 3a159e2410..46163cb692 100644 --- a/src/oci/osub_billing_schedule/billing_schedule_client.py +++ b/src/oci/osub_billing_schedule/billing_schedule_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_billing_schedule/billing_schedule_client_composite_operations.py b/src/oci/osub_billing_schedule/billing_schedule_client_composite_operations.py index 2ed448ea3e..ce4279735a 100644 --- a/src/oci/osub_billing_schedule/billing_schedule_client_composite_operations.py +++ b/src/oci/osub_billing_schedule/billing_schedule_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_billing_schedule/models/__init__.py b/src/oci/osub_billing_schedule/models/__init__.py index ff89c2bdbf..f909a36958 100644 --- a/src/oci/osub_billing_schedule/models/__init__.py +++ b/src/oci/osub_billing_schedule/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_billing_schedule/models/billing_schedule_summary.py b/src/oci/osub_billing_schedule/models/billing_schedule_summary.py index 819ddfa99a..fefc50173c 100644 --- a/src/oci/osub_billing_schedule/models/billing_schedule_summary.py +++ b/src/oci/osub_billing_schedule/models/billing_schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_billing_schedule/models/product.py b/src/oci/osub_billing_schedule/models/product.py index 295171dc4b..1ab3af448b 100644 --- a/src/oci/osub_billing_schedule/models/product.py +++ b/src/oci/osub_billing_schedule/models/product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_organization_subscription/__init__.py b/src/oci/osub_organization_subscription/__init__.py index 7ce2131a4e..85d154ee0d 100644 --- a/src/oci/osub_organization_subscription/__init__.py +++ b/src/oci/osub_organization_subscription/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_organization_subscription/models/__init__.py b/src/oci/osub_organization_subscription/models/__init__.py index d368bde6dc..778989303d 100644 --- a/src/oci/osub_organization_subscription/models/__init__.py +++ b/src/oci/osub_organization_subscription/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_organization_subscription/models/currency.py b/src/oci/osub_organization_subscription/models/currency.py index ac6af5e1be..dcf1a748ec 100644 --- a/src/oci/osub_organization_subscription/models/currency.py +++ b/src/oci/osub_organization_subscription/models/currency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_organization_subscription/models/subscription_summary.py b/src/oci/osub_organization_subscription/models/subscription_summary.py index 4c9d259a16..acb4dc5a24 100644 --- a/src/oci/osub_organization_subscription/models/subscription_summary.py +++ b/src/oci/osub_organization_subscription/models/subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_organization_subscription/organization_subscription_client.py b/src/oci/osub_organization_subscription/organization_subscription_client.py index 5f5d57a321..356d928105 100644 --- a/src/oci/osub_organization_subscription/organization_subscription_client.py +++ b/src/oci/osub_organization_subscription/organization_subscription_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_organization_subscription/organization_subscription_client_composite_operations.py b/src/oci/osub_organization_subscription/organization_subscription_client_composite_operations.py index 6560695a54..acd1187a6e 100644 --- a/src/oci/osub_organization_subscription/organization_subscription_client_composite_operations.py +++ b/src/oci/osub_organization_subscription/organization_subscription_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/__init__.py b/src/oci/osub_subscription/__init__.py index 402ed743b1..a54b9357d2 100644 --- a/src/oci/osub_subscription/__init__.py +++ b/src/oci/osub_subscription/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/commitment_client.py b/src/oci/osub_subscription/commitment_client.py index e3b6ed15c9..f7f29870f5 100644 --- a/src/oci/osub_subscription/commitment_client.py +++ b/src/oci/osub_subscription/commitment_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/commitment_client_composite_operations.py b/src/oci/osub_subscription/commitment_client_composite_operations.py index 4bde75901c..9dee774fff 100644 --- a/src/oci/osub_subscription/commitment_client_composite_operations.py +++ b/src/oci/osub_subscription/commitment_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/__init__.py b/src/oci/osub_subscription/models/__init__.py index 4a1df72355..7e820eff3f 100644 --- a/src/oci/osub_subscription/models/__init__.py +++ b/src/oci/osub_subscription/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/commitment.py b/src/oci/osub_subscription/models/commitment.py index ae3c41e6ed..63c2d2099f 100644 --- a/src/oci/osub_subscription/models/commitment.py +++ b/src/oci/osub_subscription/models/commitment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/commitment_detail.py b/src/oci/osub_subscription/models/commitment_detail.py index 0619773072..325f1752ce 100644 --- a/src/oci/osub_subscription/models/commitment_detail.py +++ b/src/oci/osub_subscription/models/commitment_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/commitment_summary.py b/src/oci/osub_subscription/models/commitment_summary.py index 1f80fa564f..0ea25a9d71 100644 --- a/src/oci/osub_subscription/models/commitment_summary.py +++ b/src/oci/osub_subscription/models/commitment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/currency.py b/src/oci/osub_subscription/models/currency.py index ac6af5e1be..dcf1a748ec 100644 --- a/src/oci/osub_subscription/models/currency.py +++ b/src/oci/osub_subscription/models/currency.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/product.py b/src/oci/osub_subscription/models/product.py index a8528fe0a7..5747850fc9 100644 --- a/src/oci/osub_subscription/models/product.py +++ b/src/oci/osub_subscription/models/product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/rate_card_summary.py b/src/oci/osub_subscription/models/rate_card_summary.py index cc0d62d222..eeaf05bacc 100644 --- a/src/oci/osub_subscription/models/rate_card_summary.py +++ b/src/oci/osub_subscription/models/rate_card_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/rate_card_tier.py b/src/oci/osub_subscription/models/rate_card_tier.py index 0d83e1654e..74cd33fd8b 100644 --- a/src/oci/osub_subscription/models/rate_card_tier.py +++ b/src/oci/osub_subscription/models/rate_card_tier.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/subscribed_service_summary.py b/src/oci/osub_subscription/models/subscribed_service_summary.py index 1875815737..ecdef5f0f1 100644 --- a/src/oci/osub_subscription/models/subscribed_service_summary.py +++ b/src/oci/osub_subscription/models/subscribed_service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/subscription_product.py b/src/oci/osub_subscription/models/subscription_product.py index 9ca44079c2..42d7420f1c 100644 --- a/src/oci/osub_subscription/models/subscription_product.py +++ b/src/oci/osub_subscription/models/subscription_product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/models/subscription_summary.py b/src/oci/osub_subscription/models/subscription_summary.py index b26fdf6081..5aaef14fd8 100644 --- a/src/oci/osub_subscription/models/subscription_summary.py +++ b/src/oci/osub_subscription/models/subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/ratecard_client.py b/src/oci/osub_subscription/ratecard_client.py index ecf8f89ac8..b4be78904b 100644 --- a/src/oci/osub_subscription/ratecard_client.py +++ b/src/oci/osub_subscription/ratecard_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/ratecard_client_composite_operations.py b/src/oci/osub_subscription/ratecard_client_composite_operations.py index bf966b5e01..3646f27eb2 100644 --- a/src/oci/osub_subscription/ratecard_client_composite_operations.py +++ b/src/oci/osub_subscription/ratecard_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/subscription_client.py b/src/oci/osub_subscription/subscription_client.py index 9eb1a65a40..8436c07d2a 100644 --- a/src/oci/osub_subscription/subscription_client.py +++ b/src/oci/osub_subscription/subscription_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_subscription/subscription_client_composite_operations.py b/src/oci/osub_subscription/subscription_client_composite_operations.py index e42ffcf1c7..aa202ccd4a 100644 --- a/src/oci/osub_subscription/subscription_client_composite_operations.py +++ b/src/oci/osub_subscription/subscription_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_usage/__init__.py b/src/oci/osub_usage/__init__.py index d80fdf7f65..76dc8f164d 100644 --- a/src/oci/osub_usage/__init__.py +++ b/src/oci/osub_usage/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_usage/computed_usage_client.py b/src/oci/osub_usage/computed_usage_client.py index d7887858f5..df078fc72b 100644 --- a/src/oci/osub_usage/computed_usage_client.py +++ b/src/oci/osub_usage/computed_usage_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_usage/computed_usage_client_composite_operations.py b/src/oci/osub_usage/computed_usage_client_composite_operations.py index ca58f5dac3..a2c103885a 100644 --- a/src/oci/osub_usage/computed_usage_client_composite_operations.py +++ b/src/oci/osub_usage/computed_usage_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_usage/models/__init__.py b/src/oci/osub_usage/models/__init__.py index 00d3baefea..82d963cc49 100644 --- a/src/oci/osub_usage/models/__init__.py +++ b/src/oci/osub_usage/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_usage/models/computed_usage.py b/src/oci/osub_usage/models/computed_usage.py index b3d4d4b646..0531754bae 100644 --- a/src/oci/osub_usage/models/computed_usage.py +++ b/src/oci/osub_usage/models/computed_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_usage/models/computed_usage_aggregated_summary.py b/src/oci/osub_usage/models/computed_usage_aggregated_summary.py index a42484d1c2..d8ecf6671c 100644 --- a/src/oci/osub_usage/models/computed_usage_aggregated_summary.py +++ b/src/oci/osub_usage/models/computed_usage_aggregated_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_usage/models/computed_usage_aggregation.py b/src/oci/osub_usage/models/computed_usage_aggregation.py index 217b32242d..6f788445d5 100644 --- a/src/oci/osub_usage/models/computed_usage_aggregation.py +++ b/src/oci/osub_usage/models/computed_usage_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_usage/models/computed_usage_summary.py b/src/oci/osub_usage/models/computed_usage_summary.py index d513e23a77..0fb968028c 100644 --- a/src/oci/osub_usage/models/computed_usage_summary.py +++ b/src/oci/osub_usage/models/computed_usage_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/osub_usage/models/product.py b/src/oci/osub_usage/models/product.py index c6b92a38c6..23bcc7041c 100644 --- a/src/oci/osub_usage/models/product.py +++ b/src/oci/osub_usage/models/product.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210501 diff --git a/src/oci/pagination/__init__.py b/src/oci/pagination/__init__.py index 25d7a13e2b..9838e137b7 100644 --- a/src/oci/pagination/__init__.py +++ b/src/oci/pagination/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 1a9fefb632..fdf78dffef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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/psql/__init__.py b/src/oci/psql/__init__.py index 5370e70294..e9b2d68dd4 100644 --- a/src/oci/psql/__init__.py +++ b/src/oci/psql/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/__init__.py b/src/oci/psql/models/__init__.py index 75ed75f487..921fbad263 100644 --- a/src/oci/psql/models/__init__.py +++ b/src/oci/psql/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/backup.py b/src/oci/psql/models/backup.py index 40476cf235..93500c39af 100644 --- a/src/oci/psql/models/backup.py +++ b/src/oci/psql/models/backup.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/backup_collection.py b/src/oci/psql/models/backup_collection.py index 278114f15c..216c610f73 100644 --- a/src/oci/psql/models/backup_collection.py +++ b/src/oci/psql/models/backup_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/backup_policy.py b/src/oci/psql/models/backup_policy.py index 5d181921d3..89a61e1fb7 100644 --- a/src/oci/psql/models/backup_policy.py +++ b/src/oci/psql/models/backup_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/backup_source_details.py b/src/oci/psql/models/backup_source_details.py index 67dac1cad6..396739f974 100644 --- a/src/oci/psql/models/backup_source_details.py +++ b/src/oci/psql/models/backup_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/backup_summary.py b/src/oci/psql/models/backup_summary.py index c1fc4b16ff..cfb9357f2d 100644 --- a/src/oci/psql/models/backup_summary.py +++ b/src/oci/psql/models/backup_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/change_backup_compartment_details.py b/src/oci/psql/models/change_backup_compartment_details.py index ef4f541ac5..3eabdaa860 100644 --- a/src/oci/psql/models/change_backup_compartment_details.py +++ b/src/oci/psql/models/change_backup_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/change_configuration_compartment_details.py b/src/oci/psql/models/change_configuration_compartment_details.py index d3d6d8ba30..f1d8308b84 100644 --- a/src/oci/psql/models/change_configuration_compartment_details.py +++ b/src/oci/psql/models/change_configuration_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/change_db_system_compartment_details.py b/src/oci/psql/models/change_db_system_compartment_details.py index 86b99d0834..7c1e73e96c 100644 --- a/src/oci/psql/models/change_db_system_compartment_details.py +++ b/src/oci/psql/models/change_db_system_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/config_overrides.py b/src/oci/psql/models/config_overrides.py index 1c8a62ac09..484aa41d92 100644 --- a/src/oci/psql/models/config_overrides.py +++ b/src/oci/psql/models/config_overrides.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/config_params.py b/src/oci/psql/models/config_params.py index 838ae8b84f..482405b62c 100644 --- a/src/oci/psql/models/config_params.py +++ b/src/oci/psql/models/config_params.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/configuration.py b/src/oci/psql/models/configuration.py index 7f0d0efb5d..6f8adac3f0 100644 --- a/src/oci/psql/models/configuration.py +++ b/src/oci/psql/models/configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/configuration_collection.py b/src/oci/psql/models/configuration_collection.py index b6a1eec9f6..76422ac4ba 100644 --- a/src/oci/psql/models/configuration_collection.py +++ b/src/oci/psql/models/configuration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/configuration_details.py b/src/oci/psql/models/configuration_details.py index ae7922b348..553c0db75b 100644 --- a/src/oci/psql/models/configuration_details.py +++ b/src/oci/psql/models/configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/configuration_summary.py b/src/oci/psql/models/configuration_summary.py index 1398bd72c2..76ef8d14ef 100644 --- a/src/oci/psql/models/configuration_summary.py +++ b/src/oci/psql/models/configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/connection_details.py b/src/oci/psql/models/connection_details.py index 17982a9eec..9d3d78ae95 100644 --- a/src/oci/psql/models/connection_details.py +++ b/src/oci/psql/models/connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/create_backup_details.py b/src/oci/psql/models/create_backup_details.py index 1ba1f379c2..a57becb5c9 100644 --- a/src/oci/psql/models/create_backup_details.py +++ b/src/oci/psql/models/create_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/create_configuration_details.py b/src/oci/psql/models/create_configuration_details.py index 31ed3d29c3..1b712dd1d1 100644 --- a/src/oci/psql/models/create_configuration_details.py +++ b/src/oci/psql/models/create_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/create_db_instance_details.py b/src/oci/psql/models/create_db_instance_details.py index 19f4c737ce..bdc7b3570d 100644 --- a/src/oci/psql/models/create_db_instance_details.py +++ b/src/oci/psql/models/create_db_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/create_db_system_details.py b/src/oci/psql/models/create_db_system_details.py index 1adb54e70d..1c4e24b9be 100644 --- a/src/oci/psql/models/create_db_system_details.py +++ b/src/oci/psql/models/create_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/credentials.py b/src/oci/psql/models/credentials.py index cff6715ee8..7bae975700 100644 --- a/src/oci/psql/models/credentials.py +++ b/src/oci/psql/models/credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/daily_backup_policy.py b/src/oci/psql/models/daily_backup_policy.py index 1b32e643e4..29939adb83 100644 --- a/src/oci/psql/models/daily_backup_policy.py +++ b/src/oci/psql/models/daily_backup_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/db_configuration_override_collection.py b/src/oci/psql/models/db_configuration_override_collection.py index 8dc8c4cadd..dd46181bce 100644 --- a/src/oci/psql/models/db_configuration_override_collection.py +++ b/src/oci/psql/models/db_configuration_override_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/db_instance.py b/src/oci/psql/models/db_instance.py index 8210fae7fe..c05e0b51c8 100644 --- a/src/oci/psql/models/db_instance.py +++ b/src/oci/psql/models/db_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/db_instance_endpoint.py b/src/oci/psql/models/db_instance_endpoint.py index a9bfe97db1..e431e8fc45 100644 --- a/src/oci/psql/models/db_instance_endpoint.py +++ b/src/oci/psql/models/db_instance_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/db_system.py b/src/oci/psql/models/db_system.py index 65814f3d35..1cb532fa3e 100644 --- a/src/oci/psql/models/db_system.py +++ b/src/oci/psql/models/db_system.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/db_system_collection.py b/src/oci/psql/models/db_system_collection.py index 487929071f..09129baa8a 100644 --- a/src/oci/psql/models/db_system_collection.py +++ b/src/oci/psql/models/db_system_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/db_system_details.py b/src/oci/psql/models/db_system_details.py index 200a5b0417..6268c881c7 100644 --- a/src/oci/psql/models/db_system_details.py +++ b/src/oci/psql/models/db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/db_system_summary.py b/src/oci/psql/models/db_system_summary.py index 016a076206..5d78c45d99 100644 --- a/src/oci/psql/models/db_system_summary.py +++ b/src/oci/psql/models/db_system_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/default_config_params.py b/src/oci/psql/models/default_config_params.py index b7228dbadb..e5972b2811 100644 --- a/src/oci/psql/models/default_config_params.py +++ b/src/oci/psql/models/default_config_params.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/default_configuration.py b/src/oci/psql/models/default_configuration.py index 9c45a98559..e0d20ab603 100644 --- a/src/oci/psql/models/default_configuration.py +++ b/src/oci/psql/models/default_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/default_configuration_collection.py b/src/oci/psql/models/default_configuration_collection.py index a6d0e36492..3ef7ad7a52 100644 --- a/src/oci/psql/models/default_configuration_collection.py +++ b/src/oci/psql/models/default_configuration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/default_configuration_details.py b/src/oci/psql/models/default_configuration_details.py index a58b9b24a1..a81fb165d9 100644 --- a/src/oci/psql/models/default_configuration_details.py +++ b/src/oci/psql/models/default_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/default_configuration_summary.py b/src/oci/psql/models/default_configuration_summary.py index 044f15afa3..500ed5aebc 100644 --- a/src/oci/psql/models/default_configuration_summary.py +++ b/src/oci/psql/models/default_configuration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/endpoint.py b/src/oci/psql/models/endpoint.py index 63743ea70a..94a0dab00f 100644 --- a/src/oci/psql/models/endpoint.py +++ b/src/oci/psql/models/endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/failover_db_system_details.py b/src/oci/psql/models/failover_db_system_details.py index eadcf81365..6bb98a9207 100644 --- a/src/oci/psql/models/failover_db_system_details.py +++ b/src/oci/psql/models/failover_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/management_policy.py b/src/oci/psql/models/management_policy.py index f4e0fcefe7..8ff65c3b8d 100644 --- a/src/oci/psql/models/management_policy.py +++ b/src/oci/psql/models/management_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/management_policy_details.py b/src/oci/psql/models/management_policy_details.py index 48be8dce0c..8d78d513d6 100644 --- a/src/oci/psql/models/management_policy_details.py +++ b/src/oci/psql/models/management_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/monthly_backup_policy.py b/src/oci/psql/models/monthly_backup_policy.py index c55bc760c4..e7ef3a14f4 100644 --- a/src/oci/psql/models/monthly_backup_policy.py +++ b/src/oci/psql/models/monthly_backup_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/network_details.py b/src/oci/psql/models/network_details.py index 630f4d1633..564ce4d1c2 100644 --- a/src/oci/psql/models/network_details.py +++ b/src/oci/psql/models/network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/none_backup_policy.py b/src/oci/psql/models/none_backup_policy.py index ca8237794c..375fa4891d 100644 --- a/src/oci/psql/models/none_backup_policy.py +++ b/src/oci/psql/models/none_backup_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/none_source_details.py b/src/oci/psql/models/none_source_details.py index 8475d28062..5985161ec5 100644 --- a/src/oci/psql/models/none_source_details.py +++ b/src/oci/psql/models/none_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/oci_optimized_storage_details.py b/src/oci/psql/models/oci_optimized_storage_details.py index 0d3df01149..d6db44613d 100644 --- a/src/oci/psql/models/oci_optimized_storage_details.py +++ b/src/oci/psql/models/oci_optimized_storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/password_details.py b/src/oci/psql/models/password_details.py index 2b53faad39..3bd6b608cf 100644 --- a/src/oci/psql/models/password_details.py +++ b/src/oci/psql/models/password_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/patch_db_system_details.py b/src/oci/psql/models/patch_db_system_details.py index 60147be99f..839427be80 100644 --- a/src/oci/psql/models/patch_db_system_details.py +++ b/src/oci/psql/models/patch_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/patch_insert_instruction.py b/src/oci/psql/models/patch_insert_instruction.py index 64be76a634..c752356471 100644 --- a/src/oci/psql/models/patch_insert_instruction.py +++ b/src/oci/psql/models/patch_insert_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/patch_instruction.py b/src/oci/psql/models/patch_instruction.py index 0f33bd4657..629397b009 100644 --- a/src/oci/psql/models/patch_instruction.py +++ b/src/oci/psql/models/patch_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/patch_merge_instruction.py b/src/oci/psql/models/patch_merge_instruction.py index 875d8f1b9c..c729da2061 100644 --- a/src/oci/psql/models/patch_merge_instruction.py +++ b/src/oci/psql/models/patch_merge_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/patch_move_instruction.py b/src/oci/psql/models/patch_move_instruction.py index 76b7743627..39e05be238 100644 --- a/src/oci/psql/models/patch_move_instruction.py +++ b/src/oci/psql/models/patch_move_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/patch_prohibit_instruction.py b/src/oci/psql/models/patch_prohibit_instruction.py index e325f3d319..ee799b802f 100644 --- a/src/oci/psql/models/patch_prohibit_instruction.py +++ b/src/oci/psql/models/patch_prohibit_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/patch_remove_instruction.py b/src/oci/psql/models/patch_remove_instruction.py index 778382c910..e550e7d9af 100644 --- a/src/oci/psql/models/patch_remove_instruction.py +++ b/src/oci/psql/models/patch_remove_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/patch_replace_instruction.py b/src/oci/psql/models/patch_replace_instruction.py index bd1fb10e23..b2f3ba43f0 100644 --- a/src/oci/psql/models/patch_replace_instruction.py +++ b/src/oci/psql/models/patch_replace_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/patch_require_instruction.py b/src/oci/psql/models/patch_require_instruction.py index ea86fb2722..480078b995 100644 --- a/src/oci/psql/models/patch_require_instruction.py +++ b/src/oci/psql/models/patch_require_instruction.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/plain_text_password_details.py b/src/oci/psql/models/plain_text_password_details.py index 230a013fd8..fc7d569580 100644 --- a/src/oci/psql/models/plain_text_password_details.py +++ b/src/oci/psql/models/plain_text_password_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/primary_db_instance_details.py b/src/oci/psql/models/primary_db_instance_details.py index c1789e8783..ba9c0b44fe 100644 --- a/src/oci/psql/models/primary_db_instance_details.py +++ b/src/oci/psql/models/primary_db_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/reset_master_user_password_details.py b/src/oci/psql/models/reset_master_user_password_details.py index db284d1b76..d24935f5f6 100644 --- a/src/oci/psql/models/reset_master_user_password_details.py +++ b/src/oci/psql/models/reset_master_user_password_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/restart_db_instance_in_db_system_details.py b/src/oci/psql/models/restart_db_instance_in_db_system_details.py index 3befacd030..8b61bf49ea 100644 --- a/src/oci/psql/models/restart_db_instance_in_db_system_details.py +++ b/src/oci/psql/models/restart_db_instance_in_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/restore_db_system_details.py b/src/oci/psql/models/restore_db_system_details.py index eaf65bb3f6..c24c2990a2 100644 --- a/src/oci/psql/models/restore_db_system_details.py +++ b/src/oci/psql/models/restore_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/shape_collection.py b/src/oci/psql/models/shape_collection.py index d582f8e96c..1f1294b12d 100644 --- a/src/oci/psql/models/shape_collection.py +++ b/src/oci/psql/models/shape_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/shape_memory_options.py b/src/oci/psql/models/shape_memory_options.py index cf187b7889..aa33b56529 100644 --- a/src/oci/psql/models/shape_memory_options.py +++ b/src/oci/psql/models/shape_memory_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/shape_ocpu_options.py b/src/oci/psql/models/shape_ocpu_options.py index 3195a83f07..a35eced3dc 100644 --- a/src/oci/psql/models/shape_ocpu_options.py +++ b/src/oci/psql/models/shape_ocpu_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/shape_summary.py b/src/oci/psql/models/shape_summary.py index c6275e4e8b..d9852fa495 100644 --- a/src/oci/psql/models/shape_summary.py +++ b/src/oci/psql/models/shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/source_details.py b/src/oci/psql/models/source_details.py index 12ff78c0ea..f7508cbce0 100644 --- a/src/oci/psql/models/source_details.py +++ b/src/oci/psql/models/source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/storage_details.py b/src/oci/psql/models/storage_details.py index 73a37bac82..17ed7c6c5e 100644 --- a/src/oci/psql/models/storage_details.py +++ b/src/oci/psql/models/storage_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/update_backup_details.py b/src/oci/psql/models/update_backup_details.py index b94975ce27..22baad44c4 100644 --- a/src/oci/psql/models/update_backup_details.py +++ b/src/oci/psql/models/update_backup_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/update_configuration_details.py b/src/oci/psql/models/update_configuration_details.py index ffe7f38306..68177fb981 100644 --- a/src/oci/psql/models/update_configuration_details.py +++ b/src/oci/psql/models/update_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/update_db_config_params.py b/src/oci/psql/models/update_db_config_params.py index 7f12371059..a7a856549a 100644 --- a/src/oci/psql/models/update_db_config_params.py +++ b/src/oci/psql/models/update_db_config_params.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/update_db_system_db_instance_details.py b/src/oci/psql/models/update_db_system_db_instance_details.py index 2b47a7ef6d..77ec5f986e 100644 --- a/src/oci/psql/models/update_db_system_db_instance_details.py +++ b/src/oci/psql/models/update_db_system_db_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/update_db_system_details.py b/src/oci/psql/models/update_db_system_details.py index 5358a8e150..51b49b6fa6 100644 --- a/src/oci/psql/models/update_db_system_details.py +++ b/src/oci/psql/models/update_db_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/update_network_details.py b/src/oci/psql/models/update_network_details.py index 07c483a7cd..99ebcd0743 100644 --- a/src/oci/psql/models/update_network_details.py +++ b/src/oci/psql/models/update_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/update_storage_details_params.py b/src/oci/psql/models/update_storage_details_params.py index 8b56451a2e..b84c643aea 100644 --- a/src/oci/psql/models/update_storage_details_params.py +++ b/src/oci/psql/models/update_storage_details_params.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/vault_secret_password_details.py b/src/oci/psql/models/vault_secret_password_details.py index 457eb2f615..ab4f61253e 100644 --- a/src/oci/psql/models/vault_secret_password_details.py +++ b/src/oci/psql/models/vault_secret_password_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/weekly_backup_policy.py b/src/oci/psql/models/weekly_backup_policy.py index 1a34909250..7704656c6e 100644 --- a/src/oci/psql/models/weekly_backup_policy.py +++ b/src/oci/psql/models/weekly_backup_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/work_request.py b/src/oci/psql/models/work_request.py index 3e08fef9db..36ac3b5cd2 100644 --- a/src/oci/psql/models/work_request.py +++ b/src/oci/psql/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/work_request_error.py b/src/oci/psql/models/work_request_error.py index e872ee42cc..d6278dc125 100644 --- a/src/oci/psql/models/work_request_error.py +++ b/src/oci/psql/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/work_request_error_collection.py b/src/oci/psql/models/work_request_error_collection.py index 7b43a3292e..7e7b3649fe 100644 --- a/src/oci/psql/models/work_request_error_collection.py +++ b/src/oci/psql/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/work_request_log_entry.py b/src/oci/psql/models/work_request_log_entry.py index 4968b8ce1b..550b2c65d5 100644 --- a/src/oci/psql/models/work_request_log_entry.py +++ b/src/oci/psql/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/work_request_log_entry_collection.py b/src/oci/psql/models/work_request_log_entry_collection.py index 50024c6690..48c6be0244 100644 --- a/src/oci/psql/models/work_request_log_entry_collection.py +++ b/src/oci/psql/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/work_request_resource.py b/src/oci/psql/models/work_request_resource.py index d837bfafef..12133b9b0c 100644 --- a/src/oci/psql/models/work_request_resource.py +++ b/src/oci/psql/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/work_request_summary.py b/src/oci/psql/models/work_request_summary.py index f08174be77..33a5cf79a9 100644 --- a/src/oci/psql/models/work_request_summary.py +++ b/src/oci/psql/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/models/work_request_summary_collection.py b/src/oci/psql/models/work_request_summary_collection.py index 734f571e01..2d717c9404 100644 --- a/src/oci/psql/models/work_request_summary_collection.py +++ b/src/oci/psql/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/postgresql_client.py b/src/oci/psql/postgresql_client.py index fd6e4efa20..79a7a05eda 100644 --- a/src/oci/psql/postgresql_client.py +++ b/src/oci/psql/postgresql_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/psql/postgresql_client_composite_operations.py b/src/oci/psql/postgresql_client_composite_operations.py index 7cbbe02d31..bd487dbb65 100644 --- a/src/oci/psql/postgresql_client_composite_operations.py +++ b/src/oci/psql/postgresql_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220915 diff --git a/src/oci/queue/__init__.py b/src/oci/queue/__init__.py index ac51eae470..a4b78240e0 100644 --- a/src/oci/queue/__init__.py +++ b/src/oci/queue/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/__init__.py b/src/oci/queue/models/__init__.py index e97b843acc..34bb73af8b 100644 --- a/src/oci/queue/models/__init__.py +++ b/src/oci/queue/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/change_queue_compartment_details.py b/src/oci/queue/models/change_queue_compartment_details.py index 992a757df5..b2f5230ebd 100644 --- a/src/oci/queue/models/change_queue_compartment_details.py +++ b/src/oci/queue/models/change_queue_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/channel_collection.py b/src/oci/queue/models/channel_collection.py index ef3d97d6da..af34da3b69 100644 --- a/src/oci/queue/models/channel_collection.py +++ b/src/oci/queue/models/channel_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/create_queue_details.py b/src/oci/queue/models/create_queue_details.py index adb3e1b067..e4a352f3bd 100644 --- a/src/oci/queue/models/create_queue_details.py +++ b/src/oci/queue/models/create_queue_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/delete_messages_details.py b/src/oci/queue/models/delete_messages_details.py index 72a07d725c..701f905626 100644 --- a/src/oci/queue/models/delete_messages_details.py +++ b/src/oci/queue/models/delete_messages_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/delete_messages_details_entry.py b/src/oci/queue/models/delete_messages_details_entry.py index e6530d3f91..70cc3392ee 100644 --- a/src/oci/queue/models/delete_messages_details_entry.py +++ b/src/oci/queue/models/delete_messages_details_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/delete_messages_result.py b/src/oci/queue/models/delete_messages_result.py index b34520165b..a0c3122c2a 100644 --- a/src/oci/queue/models/delete_messages_result.py +++ b/src/oci/queue/models/delete_messages_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/delete_messages_result_entry.py b/src/oci/queue/models/delete_messages_result_entry.py index 0891e5d7fd..fd80bde72a 100644 --- a/src/oci/queue/models/delete_messages_result_entry.py +++ b/src/oci/queue/models/delete_messages_result_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/get_message.py b/src/oci/queue/models/get_message.py index 6931c44353..260c403d6e 100644 --- a/src/oci/queue/models/get_message.py +++ b/src/oci/queue/models/get_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/get_messages.py b/src/oci/queue/models/get_messages.py index 4550e2eb52..628a4370bf 100644 --- a/src/oci/queue/models/get_messages.py +++ b/src/oci/queue/models/get_messages.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/message_metadata.py b/src/oci/queue/models/message_metadata.py index 7e2a624c20..abbbdd86ac 100644 --- a/src/oci/queue/models/message_metadata.py +++ b/src/oci/queue/models/message_metadata.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/purge_queue_details.py b/src/oci/queue/models/purge_queue_details.py index e4ace3956e..eaf3a45f88 100644 --- a/src/oci/queue/models/purge_queue_details.py +++ b/src/oci/queue/models/purge_queue_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/put_message.py b/src/oci/queue/models/put_message.py index 1a3135a007..4b635275c4 100644 --- a/src/oci/queue/models/put_message.py +++ b/src/oci/queue/models/put_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/put_messages.py b/src/oci/queue/models/put_messages.py index beab6211a8..a7ecf4cb01 100644 --- a/src/oci/queue/models/put_messages.py +++ b/src/oci/queue/models/put_messages.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/put_messages_details.py b/src/oci/queue/models/put_messages_details.py index f416d1eedd..031de61f87 100644 --- a/src/oci/queue/models/put_messages_details.py +++ b/src/oci/queue/models/put_messages_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/put_messages_details_entry.py b/src/oci/queue/models/put_messages_details_entry.py index ef12794ec3..9c68b889d3 100644 --- a/src/oci/queue/models/put_messages_details_entry.py +++ b/src/oci/queue/models/put_messages_details_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/queue.py b/src/oci/queue/models/queue.py index 27e01d5b79..10553e0bcc 100644 --- a/src/oci/queue/models/queue.py +++ b/src/oci/queue/models/queue.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/queue_collection.py b/src/oci/queue/models/queue_collection.py index 3912819d13..cd19cd8b48 100644 --- a/src/oci/queue/models/queue_collection.py +++ b/src/oci/queue/models/queue_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/queue_stats.py b/src/oci/queue/models/queue_stats.py index f3cafa9ec7..4982812f37 100644 --- a/src/oci/queue/models/queue_stats.py +++ b/src/oci/queue/models/queue_stats.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/queue_summary.py b/src/oci/queue/models/queue_summary.py index 95c279f2ac..ba7b53b461 100644 --- a/src/oci/queue/models/queue_summary.py +++ b/src/oci/queue/models/queue_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/stats.py b/src/oci/queue/models/stats.py index 9248b07b75..8bb361aebb 100644 --- a/src/oci/queue/models/stats.py +++ b/src/oci/queue/models/stats.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/update_message_details.py b/src/oci/queue/models/update_message_details.py index 4ff4f244ee..c958a28ffc 100644 --- a/src/oci/queue/models/update_message_details.py +++ b/src/oci/queue/models/update_message_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/update_messages_details.py b/src/oci/queue/models/update_messages_details.py index b3ac22f48f..115bed8232 100644 --- a/src/oci/queue/models/update_messages_details.py +++ b/src/oci/queue/models/update_messages_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/update_messages_details_entry.py b/src/oci/queue/models/update_messages_details_entry.py index 3d56247b23..3b4d54cc22 100644 --- a/src/oci/queue/models/update_messages_details_entry.py +++ b/src/oci/queue/models/update_messages_details_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/update_messages_result.py b/src/oci/queue/models/update_messages_result.py index 5aa6642832..1ec8db2789 100644 --- a/src/oci/queue/models/update_messages_result.py +++ b/src/oci/queue/models/update_messages_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/update_messages_result_entry.py b/src/oci/queue/models/update_messages_result_entry.py index 1579bf26d6..f191f7fa57 100644 --- a/src/oci/queue/models/update_messages_result_entry.py +++ b/src/oci/queue/models/update_messages_result_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/update_queue_details.py b/src/oci/queue/models/update_queue_details.py index af3ee2ec7a..350476e08a 100644 --- a/src/oci/queue/models/update_queue_details.py +++ b/src/oci/queue/models/update_queue_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/updated_message.py b/src/oci/queue/models/updated_message.py index d82d5d6405..eff63178de 100644 --- a/src/oci/queue/models/updated_message.py +++ b/src/oci/queue/models/updated_message.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/work_request.py b/src/oci/queue/models/work_request.py index caaeb8a9f2..2ac43d425b 100644 --- a/src/oci/queue/models/work_request.py +++ b/src/oci/queue/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/work_request_error.py b/src/oci/queue/models/work_request_error.py index dc67e24769..4832419279 100644 --- a/src/oci/queue/models/work_request_error.py +++ b/src/oci/queue/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/work_request_error_collection.py b/src/oci/queue/models/work_request_error_collection.py index f192dd376e..d3d099903f 100644 --- a/src/oci/queue/models/work_request_error_collection.py +++ b/src/oci/queue/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/work_request_log_entry.py b/src/oci/queue/models/work_request_log_entry.py index 6bbb9198b0..611610a3c1 100644 --- a/src/oci/queue/models/work_request_log_entry.py +++ b/src/oci/queue/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/work_request_log_entry_collection.py b/src/oci/queue/models/work_request_log_entry_collection.py index 2951ed67ba..9402397c8b 100644 --- a/src/oci/queue/models/work_request_log_entry_collection.py +++ b/src/oci/queue/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/work_request_resource.py b/src/oci/queue/models/work_request_resource.py index 852699788a..08ffabd5a9 100644 --- a/src/oci/queue/models/work_request_resource.py +++ b/src/oci/queue/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/work_request_summary.py b/src/oci/queue/models/work_request_summary.py index df9730f3e9..9b18c4e39d 100644 --- a/src/oci/queue/models/work_request_summary.py +++ b/src/oci/queue/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/models/work_request_summary_collection.py b/src/oci/queue/models/work_request_summary_collection.py index cabf77d4e2..207983f661 100644 --- a/src/oci/queue/models/work_request_summary_collection.py +++ b/src/oci/queue/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/queue_admin_client.py b/src/oci/queue/queue_admin_client.py index ca6956e290..fbb089ad99 100644 --- a/src/oci/queue/queue_admin_client.py +++ b/src/oci/queue/queue_admin_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/queue_admin_client_composite_operations.py b/src/oci/queue/queue_admin_client_composite_operations.py index 390ccb6d05..b198d8f8d9 100644 --- a/src/oci/queue/queue_admin_client_composite_operations.py +++ b/src/oci/queue/queue_admin_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/queue_client.py b/src/oci/queue/queue_client.py index 297af6aaca..e240f045ba 100644 --- a/src/oci/queue/queue_client.py +++ b/src/oci/queue/queue_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/queue/queue_client_composite_operations.py b/src/oci/queue/queue_client_composite_operations.py index e44cbd6e20..1c0fab5ded 100644 --- a/src/oci/queue/queue_client_composite_operations.py +++ b/src/oci/queue/queue_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210201 diff --git a/src/oci/recovery/__init__.py b/src/oci/recovery/__init__.py index 295d465901..58b546d9a8 100644 --- a/src/oci/recovery/__init__.py +++ b/src/oci/recovery/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/database_recovery_client.py b/src/oci/recovery/database_recovery_client.py index cc2b874b61..6a4062eb30 100644 --- a/src/oci/recovery/database_recovery_client.py +++ b/src/oci/recovery/database_recovery_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/database_recovery_client_composite_operations.py b/src/oci/recovery/database_recovery_client_composite_operations.py index 7a95213186..e85217f81c 100644 --- a/src/oci/recovery/database_recovery_client_composite_operations.py +++ b/src/oci/recovery/database_recovery_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/__init__.py b/src/oci/recovery/models/__init__.py index c3f8e33feb..39413f794c 100644 --- a/src/oci/recovery/models/__init__.py +++ b/src/oci/recovery/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/change_protected_database_compartment_details.py b/src/oci/recovery/models/change_protected_database_compartment_details.py index fb9d811313..29bfb5f14a 100644 --- a/src/oci/recovery/models/change_protected_database_compartment_details.py +++ b/src/oci/recovery/models/change_protected_database_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/change_protected_database_subscription_details.py b/src/oci/recovery/models/change_protected_database_subscription_details.py index 67ecda8885..f897145141 100644 --- a/src/oci/recovery/models/change_protected_database_subscription_details.py +++ b/src/oci/recovery/models/change_protected_database_subscription_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/change_protection_policy_compartment_details.py b/src/oci/recovery/models/change_protection_policy_compartment_details.py index aefd3f3605..e9b0522caa 100644 --- a/src/oci/recovery/models/change_protection_policy_compartment_details.py +++ b/src/oci/recovery/models/change_protection_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/change_recovery_service_subnet_compartment_details.py b/src/oci/recovery/models/change_recovery_service_subnet_compartment_details.py index a57d55adf1..312b5461d7 100644 --- a/src/oci/recovery/models/change_recovery_service_subnet_compartment_details.py +++ b/src/oci/recovery/models/change_recovery_service_subnet_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/create_protected_database_details.py b/src/oci/recovery/models/create_protected_database_details.py index 3a1dedb106..5a56a9defc 100644 --- a/src/oci/recovery/models/create_protected_database_details.py +++ b/src/oci/recovery/models/create_protected_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/create_protection_policy_details.py b/src/oci/recovery/models/create_protection_policy_details.py index 6488a70539..2a7db4e6dc 100644 --- a/src/oci/recovery/models/create_protection_policy_details.py +++ b/src/oci/recovery/models/create_protection_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/create_recovery_service_subnet_details.py b/src/oci/recovery/models/create_recovery_service_subnet_details.py index 5402913d92..af9b9ee078 100644 --- a/src/oci/recovery/models/create_recovery_service_subnet_details.py +++ b/src/oci/recovery/models/create_recovery_service_subnet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/fetch_protected_database_configuration_details.py b/src/oci/recovery/models/fetch_protected_database_configuration_details.py index dfe34a7777..3061439c28 100644 --- a/src/oci/recovery/models/fetch_protected_database_configuration_details.py +++ b/src/oci/recovery/models/fetch_protected_database_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/metrics.py b/src/oci/recovery/models/metrics.py index e6d978500e..7da15d7930 100644 --- a/src/oci/recovery/models/metrics.py +++ b/src/oci/recovery/models/metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/metrics_summary.py b/src/oci/recovery/models/metrics_summary.py index 972c5f5151..54ee06dbf7 100644 --- a/src/oci/recovery/models/metrics_summary.py +++ b/src/oci/recovery/models/metrics_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/protected_database.py b/src/oci/recovery/models/protected_database.py index f805c48298..cd80fad26f 100644 --- a/src/oci/recovery/models/protected_database.py +++ b/src/oci/recovery/models/protected_database.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/protected_database_collection.py b/src/oci/recovery/models/protected_database_collection.py index b47b653c49..769662491e 100644 --- a/src/oci/recovery/models/protected_database_collection.py +++ b/src/oci/recovery/models/protected_database_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/protected_database_summary.py b/src/oci/recovery/models/protected_database_summary.py index f512a02ee2..8a0a960588 100644 --- a/src/oci/recovery/models/protected_database_summary.py +++ b/src/oci/recovery/models/protected_database_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/protection_policy.py b/src/oci/recovery/models/protection_policy.py index ae8836a2e1..0af47a0ba8 100644 --- a/src/oci/recovery/models/protection_policy.py +++ b/src/oci/recovery/models/protection_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/protection_policy_collection.py b/src/oci/recovery/models/protection_policy_collection.py index ff25540171..72f2b79786 100644 --- a/src/oci/recovery/models/protection_policy_collection.py +++ b/src/oci/recovery/models/protection_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/protection_policy_summary.py b/src/oci/recovery/models/protection_policy_summary.py index 0a92d7d42d..7411d18d7f 100644 --- a/src/oci/recovery/models/protection_policy_summary.py +++ b/src/oci/recovery/models/protection_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/recovery_service_subnet.py b/src/oci/recovery/models/recovery_service_subnet.py index 84625c90a6..e3a274f0e0 100644 --- a/src/oci/recovery/models/recovery_service_subnet.py +++ b/src/oci/recovery/models/recovery_service_subnet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/recovery_service_subnet_collection.py b/src/oci/recovery/models/recovery_service_subnet_collection.py index f8508e7408..49efc620e5 100644 --- a/src/oci/recovery/models/recovery_service_subnet_collection.py +++ b/src/oci/recovery/models/recovery_service_subnet_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/recovery_service_subnet_details.py b/src/oci/recovery/models/recovery_service_subnet_details.py index 54df0aee17..ba8d608bd8 100644 --- a/src/oci/recovery/models/recovery_service_subnet_details.py +++ b/src/oci/recovery/models/recovery_service_subnet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/recovery_service_subnet_input.py b/src/oci/recovery/models/recovery_service_subnet_input.py index 659ed90df9..d48f91bfb4 100644 --- a/src/oci/recovery/models/recovery_service_subnet_input.py +++ b/src/oci/recovery/models/recovery_service_subnet_input.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/recovery_service_subnet_summary.py b/src/oci/recovery/models/recovery_service_subnet_summary.py index f4302cc4d1..efe4bd9b58 100644 --- a/src/oci/recovery/models/recovery_service_subnet_summary.py +++ b/src/oci/recovery/models/recovery_service_subnet_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/schedule_protected_database_deletion_details.py b/src/oci/recovery/models/schedule_protected_database_deletion_details.py index 145e6305c2..615578b656 100644 --- a/src/oci/recovery/models/schedule_protected_database_deletion_details.py +++ b/src/oci/recovery/models/schedule_protected_database_deletion_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/update_protected_database_details.py b/src/oci/recovery/models/update_protected_database_details.py index a57326b209..80ee24922a 100644 --- a/src/oci/recovery/models/update_protected_database_details.py +++ b/src/oci/recovery/models/update_protected_database_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/update_protection_policy_details.py b/src/oci/recovery/models/update_protection_policy_details.py index 99d6cc4893..2fcfae7724 100644 --- a/src/oci/recovery/models/update_protection_policy_details.py +++ b/src/oci/recovery/models/update_protection_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/update_recovery_service_subnet_details.py b/src/oci/recovery/models/update_recovery_service_subnet_details.py index 39f84794ce..39dabdd1dd 100644 --- a/src/oci/recovery/models/update_recovery_service_subnet_details.py +++ b/src/oci/recovery/models/update_recovery_service_subnet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/work_request.py b/src/oci/recovery/models/work_request.py index 23777acbee..bd14abb226 100644 --- a/src/oci/recovery/models/work_request.py +++ b/src/oci/recovery/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/work_request_error.py b/src/oci/recovery/models/work_request_error.py index b4a667858d..a3f471b2bf 100644 --- a/src/oci/recovery/models/work_request_error.py +++ b/src/oci/recovery/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/work_request_error_collection.py b/src/oci/recovery/models/work_request_error_collection.py index 2aa97d79b8..108d309b57 100644 --- a/src/oci/recovery/models/work_request_error_collection.py +++ b/src/oci/recovery/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/work_request_log_entry.py b/src/oci/recovery/models/work_request_log_entry.py index fcac05b661..6a9b2b845c 100644 --- a/src/oci/recovery/models/work_request_log_entry.py +++ b/src/oci/recovery/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/work_request_log_entry_collection.py b/src/oci/recovery/models/work_request_log_entry_collection.py index 81ba637750..32c5a901fb 100644 --- a/src/oci/recovery/models/work_request_log_entry_collection.py +++ b/src/oci/recovery/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/work_request_resource.py b/src/oci/recovery/models/work_request_resource.py index cb8e30dc70..b47ff41b8d 100644 --- a/src/oci/recovery/models/work_request_resource.py +++ b/src/oci/recovery/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/work_request_summary.py b/src/oci/recovery/models/work_request_summary.py index 207f2b4910..2bc2f46090 100644 --- a/src/oci/recovery/models/work_request_summary.py +++ b/src/oci/recovery/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/recovery/models/work_request_summary_collection.py b/src/oci/recovery/models/work_request_summary_collection.py index 74e3246849..43fba7d11e 100644 --- a/src/oci/recovery/models/work_request_summary_collection.py +++ b/src/oci/recovery/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210216 diff --git a/src/oci/redis/__init__.py b/src/oci/redis/__init__.py index 420a1866a6..15a6de17af 100644 --- a/src/oci/redis/__init__.py +++ b/src/oci/redis/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/__init__.py b/src/oci/redis/models/__init__.py index cb1bdd0efe..febe97cdd9 100644 --- a/src/oci/redis/models/__init__.py +++ b/src/oci/redis/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/change_redis_cluster_compartment_details.py b/src/oci/redis/models/change_redis_cluster_compartment_details.py index 8736b5a0ef..c0dfb9ad29 100644 --- a/src/oci/redis/models/change_redis_cluster_compartment_details.py +++ b/src/oci/redis/models/change_redis_cluster_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/create_redis_cluster_details.py b/src/oci/redis/models/create_redis_cluster_details.py index 16b6912456..c9d823706f 100644 --- a/src/oci/redis/models/create_redis_cluster_details.py +++ b/src/oci/redis/models/create_redis_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/node.py b/src/oci/redis/models/node.py index 20317ef191..b3ace98db3 100644 --- a/src/oci/redis/models/node.py +++ b/src/oci/redis/models/node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/node_collection.py b/src/oci/redis/models/node_collection.py index bdc22987c6..a220ae35f4 100644 --- a/src/oci/redis/models/node_collection.py +++ b/src/oci/redis/models/node_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/node_summary.py b/src/oci/redis/models/node_summary.py index 7012469b0e..4f2074d7d1 100644 --- a/src/oci/redis/models/node_summary.py +++ b/src/oci/redis/models/node_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/redis_cluster.py b/src/oci/redis/models/redis_cluster.py index 9ff733c9f6..8a4a2fffd1 100644 --- a/src/oci/redis/models/redis_cluster.py +++ b/src/oci/redis/models/redis_cluster.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/redis_cluster_collection.py b/src/oci/redis/models/redis_cluster_collection.py index c9e31c9029..2f0779a971 100644 --- a/src/oci/redis/models/redis_cluster_collection.py +++ b/src/oci/redis/models/redis_cluster_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/redis_cluster_summary.py b/src/oci/redis/models/redis_cluster_summary.py index 66dfacd303..51d6745c59 100644 --- a/src/oci/redis/models/redis_cluster_summary.py +++ b/src/oci/redis/models/redis_cluster_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/redis_node_collection.py b/src/oci/redis/models/redis_node_collection.py index fda67051dc..c5b1714f6b 100644 --- a/src/oci/redis/models/redis_node_collection.py +++ b/src/oci/redis/models/redis_node_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/update_redis_cluster_details.py b/src/oci/redis/models/update_redis_cluster_details.py index 335e5bba10..00d90d3b6d 100644 --- a/src/oci/redis/models/update_redis_cluster_details.py +++ b/src/oci/redis/models/update_redis_cluster_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/work_request.py b/src/oci/redis/models/work_request.py index 5fd8dc967e..fc20eb0143 100644 --- a/src/oci/redis/models/work_request.py +++ b/src/oci/redis/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/work_request_error.py b/src/oci/redis/models/work_request_error.py index 6ee1fa4b0c..c16c01f9af 100644 --- a/src/oci/redis/models/work_request_error.py +++ b/src/oci/redis/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/work_request_error_collection.py b/src/oci/redis/models/work_request_error_collection.py index 8a6ea372d4..7611ee6b9b 100644 --- a/src/oci/redis/models/work_request_error_collection.py +++ b/src/oci/redis/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/work_request_log_entry.py b/src/oci/redis/models/work_request_log_entry.py index 14b4fa00ad..61bd1c14d1 100644 --- a/src/oci/redis/models/work_request_log_entry.py +++ b/src/oci/redis/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/work_request_log_entry_collection.py b/src/oci/redis/models/work_request_log_entry_collection.py index a5bdb39cab..21a8006852 100644 --- a/src/oci/redis/models/work_request_log_entry_collection.py +++ b/src/oci/redis/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/work_request_resource.py b/src/oci/redis/models/work_request_resource.py index 753825e514..7eae20ded7 100644 --- a/src/oci/redis/models/work_request_resource.py +++ b/src/oci/redis/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/work_request_summary.py b/src/oci/redis/models/work_request_summary.py index 2bd5a8b0e1..827bc9c404 100644 --- a/src/oci/redis/models/work_request_summary.py +++ b/src/oci/redis/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/models/work_request_summary_collection.py b/src/oci/redis/models/work_request_summary_collection.py index e482775098..b9c29ba242 100644 --- a/src/oci/redis/models/work_request_summary_collection.py +++ b/src/oci/redis/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/redis_cluster_client.py b/src/oci/redis/redis_cluster_client.py index 21010eeb74..4213113609 100644 --- a/src/oci/redis/redis_cluster_client.py +++ b/src/oci/redis/redis_cluster_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/redis/redis_cluster_client_composite_operations.py b/src/oci/redis/redis_cluster_client_composite_operations.py index 937614bc35..2ae6de827c 100644 --- a/src/oci/redis/redis_cluster_client_composite_operations.py +++ b/src/oci/redis/redis_cluster_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220315 diff --git a/src/oci/regions.py b/src/oci/regions.py index ffb9d66b61..0cd23ecad4 100644 --- a/src/oci/regions.py +++ b/src/oci/regions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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 611fcebdc9..65edb5e8b4 100644 --- a/src/oci/regions_definitions.py +++ b/src/oci/regions_definitions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 = { diff --git a/src/oci/request.py b/src/oci/request.py index a65ab30509..a46b9966ce 100644 --- a/src/oci/request.py +++ b/src/oci/request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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 41c9b194fe..056e1f09cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/__init__.py b/src/oci/resource_manager/models/__init__.py index 54fc84864e..fee2523835 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 7c73038f5b..5f3a1f539b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 f5d9684ca9..d9cc84de7a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 1b4735db14..77ba1f23a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/apply_rollback_job_operation_details.py b/src/oci/resource_manager/models/apply_rollback_job_operation_details.py index a9639a2709..667fb8d2b4 100644 --- a/src/oci/resource_manager/models/apply_rollback_job_operation_details.py +++ b/src/oci/resource_manager/models/apply_rollback_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/apply_rollback_job_operation_details_summary.py b/src/oci/resource_manager/models/apply_rollback_job_operation_details_summary.py index 94e487caae..9a52842df3 100644 --- a/src/oci/resource_manager/models/apply_rollback_job_operation_details_summary.py +++ b/src/oci/resource_manager/models/apply_rollback_job_operation_details_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/associated_resource_summary.py b/src/oci/resource_manager/models/associated_resource_summary.py index 5291c6db6d..28c1df5bf4 100644 --- a/src/oci/resource_manager/models/associated_resource_summary.py +++ b/src/oci/resource_manager/models/associated_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/associated_resources_collection.py b/src/oci/resource_manager/models/associated_resources_collection.py index 9489347cc2..f2edb550ee 100644 --- a/src/oci/resource_manager/models/associated_resources_collection.py +++ b/src/oci/resource_manager/models/associated_resources_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/bitbucket_cloud_config_source.py b/src/oci/resource_manager/models/bitbucket_cloud_config_source.py index da11f89fc5..fe80911550 100644 --- a/src/oci/resource_manager/models/bitbucket_cloud_config_source.py +++ b/src/oci/resource_manager/models/bitbucket_cloud_config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/bitbucket_cloud_config_source_record.py b/src/oci/resource_manager/models/bitbucket_cloud_config_source_record.py index 2f67340e69..e1259b016c 100644 --- a/src/oci/resource_manager/models/bitbucket_cloud_config_source_record.py +++ b/src/oci/resource_manager/models/bitbucket_cloud_config_source_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/bitbucket_cloud_username_app_password_configuration_source_provider.py b/src/oci/resource_manager/models/bitbucket_cloud_username_app_password_configuration_source_provider.py index 90bce39616..40b658263d 100644 --- a/src/oci/resource_manager/models/bitbucket_cloud_username_app_password_configuration_source_provider.py +++ b/src/oci/resource_manager/models/bitbucket_cloud_username_app_password_configuration_source_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/bitbucket_cloud_username_app_password_configuration_source_provider_summary.py b/src/oci/resource_manager/models/bitbucket_cloud_username_app_password_configuration_source_provider_summary.py index d0b16c7ce0..af0e614ff9 100644 --- a/src/oci/resource_manager/models/bitbucket_cloud_username_app_password_configuration_source_provider_summary.py +++ b/src/oci/resource_manager/models/bitbucket_cloud_username_app_password_configuration_source_provider_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/bitbucket_server_access_token_configuration_source_provider.py b/src/oci/resource_manager/models/bitbucket_server_access_token_configuration_source_provider.py index 40f1063389..ef6cfc0753 100644 --- a/src/oci/resource_manager/models/bitbucket_server_access_token_configuration_source_provider.py +++ b/src/oci/resource_manager/models/bitbucket_server_access_token_configuration_source_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/bitbucket_server_access_token_configuration_source_provider_summary.py b/src/oci/resource_manager/models/bitbucket_server_access_token_configuration_source_provider_summary.py index 52d8a6b7a8..7917de6dac 100644 --- a/src/oci/resource_manager/models/bitbucket_server_access_token_configuration_source_provider_summary.py +++ b/src/oci/resource_manager/models/bitbucket_server_access_token_configuration_source_provider_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/bitbucket_server_config_source.py b/src/oci/resource_manager/models/bitbucket_server_config_source.py index 864734ef3d..eeec8b1328 100644 --- a/src/oci/resource_manager/models/bitbucket_server_config_source.py +++ b/src/oci/resource_manager/models/bitbucket_server_config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/bitbucket_server_config_source_record.py b/src/oci/resource_manager/models/bitbucket_server_config_source_record.py index c3d513a55c..0cd9d6e658 100644 --- a/src/oci/resource_manager/models/bitbucket_server_config_source_record.py +++ b/src/oci/resource_manager/models/bitbucket_server_config_source_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/cancellation_details.py b/src/oci/resource_manager/models/cancellation_details.py index c6caf0e664..91e03ddacc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 95daf47eaf..6d5a25b968 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/change_private_endpoint_compartment_details.py b/src/oci/resource_manager/models/change_private_endpoint_compartment_details.py index 61b1583c38..9516112fba 100644 --- a/src/oci/resource_manager/models/change_private_endpoint_compartment_details.py +++ b/src/oci/resource_manager/models/change_private_endpoint_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 5d65a99852..b3303fc27d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 78cca1ea4d..c44b6b4552 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/compartment_config_source.py b/src/oci/resource_manager/models/compartment_config_source.py index e2b263fd10..d90345c4cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/config_source.py b/src/oci/resource_manager/models/config_source.py index 7bb2b4dab2..b5439a8fe4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/config_source_record.py b/src/oci/resource_manager/models/config_source_record.py index b6be832f69..0ac92cc13f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/configuration_source_provider.py b/src/oci/resource_manager/models/configuration_source_provider.py index 0f6c18712a..67cc78b0c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 297e2f294c..e7eb73fb96 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 6a65caac45..6f05b26652 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 cb30f33559..5b6fb1b1cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_apply_rollback_job_operation_details.py b/src/oci/resource_manager/models/create_apply_rollback_job_operation_details.py index e2bfa62146..cb255d016d 100644 --- a/src/oci/resource_manager/models/create_apply_rollback_job_operation_details.py +++ b/src/oci/resource_manager/models/create_apply_rollback_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_bitbucket_cloud_config_source_details.py b/src/oci/resource_manager/models/create_bitbucket_cloud_config_source_details.py index 91eda63857..cfc610e5c5 100644 --- a/src/oci/resource_manager/models/create_bitbucket_cloud_config_source_details.py +++ b/src/oci/resource_manager/models/create_bitbucket_cloud_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_bitbucket_cloud_username_app_password_configuration_source_provider_details.py b/src/oci/resource_manager/models/create_bitbucket_cloud_username_app_password_configuration_source_provider_details.py index 8b510c8f7b..2c8178c055 100644 --- a/src/oci/resource_manager/models/create_bitbucket_cloud_username_app_password_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/create_bitbucket_cloud_username_app_password_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_bitbucket_server_access_token_configuration_source_provider_details.py b/src/oci/resource_manager/models/create_bitbucket_server_access_token_configuration_source_provider_details.py index f8a4378c41..9e0e16d381 100644 --- a/src/oci/resource_manager/models/create_bitbucket_server_access_token_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/create_bitbucket_server_access_token_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_bitbucket_server_config_source_details.py b/src/oci/resource_manager/models/create_bitbucket_server_config_source_details.py index 2931e2a40b..5c9eb57c7a 100644 --- a/src/oci/resource_manager/models/create_bitbucket_server_config_source_details.py +++ b/src/oci/resource_manager/models/create_bitbucket_server_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 12a2c37572..eddc1738bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 a5eef50d6e..8b5fe7a8ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 38d49f7ebf..cff9d3638a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 b24550f4cb..2bb678ab1b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_dev_ops_config_source_details.py b/src/oci/resource_manager/models/create_dev_ops_config_source_details.py index 5f1c1271f0..cba6381ddf 100644 --- a/src/oci/resource_manager/models/create_dev_ops_config_source_details.py +++ b/src/oci/resource_manager/models/create_dev_ops_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 4138584091..4a751249f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 b887cd8a0b..02ec4a86a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 81685962d3..3130343928 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 f020578fe4..e1d2919b81 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_job_details.py b/src/oci/resource_manager/models/create_job_details.py index 507ba7a7be..b4e9f17e1c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 95015b5bd7..9e9b2487a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 ea4805aeb1..4efc71405c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 e1c49607e2..b87b127543 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_plan_rollback_job_operation_details.py b/src/oci/resource_manager/models/create_plan_rollback_job_operation_details.py index 682767828b..ccc6745d97 100644 --- a/src/oci/resource_manager/models/create_plan_rollback_job_operation_details.py +++ b/src/oci/resource_manager/models/create_plan_rollback_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_private_endpoint_details.py b/src/oci/resource_manager/models/create_private_endpoint_details.py index a820fb789d..e27af8291d 100644 --- a/src/oci/resource_manager/models/create_private_endpoint_details.py +++ b/src/oci/resource_manager/models/create_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_stack_details.py b/src/oci/resource_manager/models/create_stack_details.py index c92abcf029..03df8b121d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 449d06238a..5ae9de825f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 28adcbb5c3..742be44646 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/create_template_details.py b/src/oci/resource_manager/models/create_template_details.py index da27a87e58..c0d7fcecd3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 1f0ccea7f5..8b782ae766 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 bea7f7f1ea..d30c6067e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/custom_terraform_provider.py b/src/oci/resource_manager/models/custom_terraform_provider.py index cf796232eb..19ab5a426f 100644 --- a/src/oci/resource_manager/models/custom_terraform_provider.py +++ b/src/oci/resource_manager/models/custom_terraform_provider.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 e3c491f48c..a766867eec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 1f0bb91583..19732041ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 1a51e0fea5..07ed17d58f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/dev_ops_config_source.py b/src/oci/resource_manager/models/dev_ops_config_source.py index c97c85bbf6..31dbeb8eab 100644 --- a/src/oci/resource_manager/models/dev_ops_config_source.py +++ b/src/oci/resource_manager/models/dev_ops_config_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/dev_ops_config_source_record.py b/src/oci/resource_manager/models/dev_ops_config_source_record.py index 440fb78f06..2197aa7216 100644 --- a/src/oci/resource_manager/models/dev_ops_config_source_record.py +++ b/src/oci/resource_manager/models/dev_ops_config_source_record.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/failure_details.py b/src/oci/resource_manager/models/failure_details.py index dd40c42b3c..c6274dde89 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/git_config_source.py b/src/oci/resource_manager/models/git_config_source.py index 4568e0e29b..244554e0a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 0dd5920a9e..dc4952388b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 fecc5c72e0..fd763b603e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 e9cd34bf04..c5b6fab0d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 e9d14431cf..01f1fdc3e7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 73567dfd36..e32491e2bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 98678e1ddb..ccce4fb44f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 05235e3414..27db045bbb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/job.py b/src/oci/resource_manager/models/job.py index fecbc11a43..efc5ac02de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/job_operation_details.py b/src/oci/resource_manager/models/job_operation_details.py index d8254a566d..c906ce85b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 61d79ea9ff..0741648807 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/job_output_summary.py b/src/oci/resource_manager/models/job_output_summary.py index e63f99bc98..19221e3d56 100644 --- a/src/oci/resource_manager/models/job_output_summary.py +++ b/src/oci/resource_manager/models/job_output_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/job_outputs_collection.py b/src/oci/resource_manager/models/job_outputs_collection.py index 2c85120bcd..7c2d0c79dc 100644 --- a/src/oci/resource_manager/models/job_outputs_collection.py +++ b/src/oci/resource_manager/models/job_outputs_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/job_summary.py b/src/oci/resource_manager/models/job_summary.py index 81e48addba..294ce87691 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/log_entry.py b/src/oci/resource_manager/models/log_entry.py index e8ef58cde4..d132addc33 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 8906f63f98..80d841eaf9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 3c01646eb8..3c8e758c30 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 534a2bb5c1..9a5deead16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 88cee1ee0b..0926f79d5a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/plan_rollback_job_operation_details.py b/src/oci/resource_manager/models/plan_rollback_job_operation_details.py index 2f07914e2d..c55b0838e7 100644 --- a/src/oci/resource_manager/models/plan_rollback_job_operation_details.py +++ b/src/oci/resource_manager/models/plan_rollback_job_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/plan_rollback_job_operation_details_summary.py b/src/oci/resource_manager/models/plan_rollback_job_operation_details_summary.py index 57216efa12..ffa4aa2f70 100644 --- a/src/oci/resource_manager/models/plan_rollback_job_operation_details_summary.py +++ b/src/oci/resource_manager/models/plan_rollback_job_operation_details_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/private_endpoint.py b/src/oci/resource_manager/models/private_endpoint.py index 4274020e37..6332f4d66b 100644 --- a/src/oci/resource_manager/models/private_endpoint.py +++ b/src/oci/resource_manager/models/private_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/private_endpoint_collection.py b/src/oci/resource_manager/models/private_endpoint_collection.py index d603b8bc8b..92f111302c 100644 --- a/src/oci/resource_manager/models/private_endpoint_collection.py +++ b/src/oci/resource_manager/models/private_endpoint_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/private_endpoint_summary.py b/src/oci/resource_manager/models/private_endpoint_summary.py index 47e231f55c..0d96b6684e 100644 --- a/src/oci/resource_manager/models/private_endpoint_summary.py +++ b/src/oci/resource_manager/models/private_endpoint_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/private_server_config_details.py b/src/oci/resource_manager/models/private_server_config_details.py index c112a28411..010537bbf3 100644 --- a/src/oci/resource_manager/models/private_server_config_details.py +++ b/src/oci/resource_manager/models/private_server_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/reachable_ip.py b/src/oci/resource_manager/models/reachable_ip.py index d3d20b8af7..a8e350d5a7 100644 --- a/src/oci/resource_manager/models/reachable_ip.py +++ b/src/oci/resource_manager/models/reachable_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 51b37b971d..5bd20372cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 c2fa72206f..b42bba2efc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/stack.py b/src/oci/resource_manager/models/stack.py index 570047f8b4..a5a7d0d757 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 1ddeec2125..659f566141 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 1567b76a68..5845492760 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/stack_summary.py b/src/oci/resource_manager/models/stack_summary.py index 5cea5bd08a..1ac16e7c91 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/template.py b/src/oci/resource_manager/models/template.py index ac3b1cfc69..836710bc27 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/template_category_summary.py b/src/oci/resource_manager/models/template_category_summary.py index d3024a257f..28ad1ccc6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 41bb9f5adf..6ee78416a7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/template_config_source.py b/src/oci/resource_manager/models/template_config_source.py index 7148a733fa..fb55c647b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/template_summary.py b/src/oci/resource_manager/models/template_summary.py index b3e6769825..f482365b47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/template_summary_collection.py b/src/oci/resource_manager/models/template_summary_collection.py index 3237fc4854..bfef1d805f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 8fc8ca174b..0b80aae61e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/terraform_advanced_options.py b/src/oci/resource_manager/models/terraform_advanced_options.py index 7799cc2ea3..0b5bb8b349 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/terraform_version_collection.py b/src/oci/resource_manager/models/terraform_version_collection.py index 82a61c3f06..e52d7d62f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/terraform_version_summary.py b/src/oci/resource_manager/models/terraform_version_summary.py index f7ddd74e1e..352cad467c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/update_bitbucket_cloud_config_source_details.py b/src/oci/resource_manager/models/update_bitbucket_cloud_config_source_details.py index 4455106bb8..f6302fe171 100644 --- a/src/oci/resource_manager/models/update_bitbucket_cloud_config_source_details.py +++ b/src/oci/resource_manager/models/update_bitbucket_cloud_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/update_bitbucket_cloud_username_app_password_configuration_source_provider_details.py b/src/oci/resource_manager/models/update_bitbucket_cloud_username_app_password_configuration_source_provider_details.py index 6fbaf0c7bc..b1fc3df725 100644 --- a/src/oci/resource_manager/models/update_bitbucket_cloud_username_app_password_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/update_bitbucket_cloud_username_app_password_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/update_bitbucket_server_access_token_configuration_source_provider_details.py b/src/oci/resource_manager/models/update_bitbucket_server_access_token_configuration_source_provider_details.py index 9ada540bab..db78060a2a 100644 --- a/src/oci/resource_manager/models/update_bitbucket_server_access_token_configuration_source_provider_details.py +++ b/src/oci/resource_manager/models/update_bitbucket_server_access_token_configuration_source_provider_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/update_bitbucket_server_config_source_details.py b/src/oci/resource_manager/models/update_bitbucket_server_config_source_details.py index 9ce4f50aa8..92387ae3f8 100644 --- a/src/oci/resource_manager/models/update_bitbucket_server_config_source_details.py +++ b/src/oci/resource_manager/models/update_bitbucket_server_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 a534fdd9e5..cffe2d8265 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 4d92252e10..ee98e5d4d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/update_dev_ops_config_source_details.py b/src/oci/resource_manager/models/update_dev_ops_config_source_details.py index 13f7ec2133..e126970e2f 100644 --- a/src/oci/resource_manager/models/update_dev_ops_config_source_details.py +++ b/src/oci/resource_manager/models/update_dev_ops_config_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 d46ccdd133..3173ba8ed9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 63e9b5c9c7..1dade2ab66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 02b81eef2a..6655c978d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/update_job_details.py b/src/oci/resource_manager/models/update_job_details.py index 1ecebfd332..7989f44fac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 8f6f3fbbcc..f1b0b3243d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/update_private_endpoint_details.py b/src/oci/resource_manager/models/update_private_endpoint_details.py index 3dcaf6b081..f73b44a57c 100644 --- a/src/oci/resource_manager/models/update_private_endpoint_details.py +++ b/src/oci/resource_manager/models/update_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/update_stack_details.py b/src/oci/resource_manager/models/update_stack_details.py index 3a0c7844f9..b5d770c631 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 c4b871a639..0df6f3ec12 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/update_template_details.py b/src/oci/resource_manager/models/update_template_details.py index 48748544a8..3efba9d46b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 2b1a9136d0..debbd46310 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 d02566e523..ab84b0c96b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/work_request.py b/src/oci/resource_manager/models/work_request.py index c05a1046bc..8c619973b3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/work_request_error.py b/src/oci/resource_manager/models/work_request_error.py index 4615bbd257..345e4efc84 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 570f79c621..5e87aca1af 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/work_request_resource.py b/src/oci/resource_manager/models/work_request_resource.py index 224edcb277..d657200a5e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/models/work_request_summary.py b/src/oci/resource_manager/models/work_request_summary.py index 5e0c850103..08be4bca5f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 d711a3969d..f8c5e97f67 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 648128f4a3..217908b5ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_manager/resource_manager_client.py b/src/oci/resource_manager/resource_manager_client.py index ae37bbf1a8..9f194f9982 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 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 d1aa724de9..2dce4eda20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180917 diff --git a/src/oci/resource_scheduler/__init__.py b/src/oci/resource_scheduler/__init__.py index 3fdf79cef6..5d69929650 100644 --- a/src/oci/resource_scheduler/__init__.py +++ b/src/oci/resource_scheduler/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/__init__.py b/src/oci/resource_scheduler/models/__init__.py index 442781d5b6..d1c73a0210 100644 --- a/src/oci/resource_scheduler/models/__init__.py +++ b/src/oci/resource_scheduler/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/compartment_id_resource_filter.py b/src/oci/resource_scheduler/models/compartment_id_resource_filter.py index 02d7c71641..83cfd4c170 100644 --- a/src/oci/resource_scheduler/models/compartment_id_resource_filter.py +++ b/src/oci/resource_scheduler/models/compartment_id_resource_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/create_schedule_details.py b/src/oci/resource_scheduler/models/create_schedule_details.py index 221839b350..a33106bb95 100644 --- a/src/oci/resource_scheduler/models/create_schedule_details.py +++ b/src/oci/resource_scheduler/models/create_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/defined_tag_filter_value.py b/src/oci/resource_scheduler/models/defined_tag_filter_value.py index 5bb5db5128..83ddc8dfd7 100644 --- a/src/oci/resource_scheduler/models/defined_tag_filter_value.py +++ b/src/oci/resource_scheduler/models/defined_tag_filter_value.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/defined_tags_resource_filter.py b/src/oci/resource_scheduler/models/defined_tags_resource_filter.py index 3645229d71..7208e05a21 100644 --- a/src/oci/resource_scheduler/models/defined_tags_resource_filter.py +++ b/src/oci/resource_scheduler/models/defined_tags_resource_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/lifecycle_state_resource_filter.py b/src/oci/resource_scheduler/models/lifecycle_state_resource_filter.py index 1f82c43dee..18f32dfe87 100644 --- a/src/oci/resource_scheduler/models/lifecycle_state_resource_filter.py +++ b/src/oci/resource_scheduler/models/lifecycle_state_resource_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/resource.py b/src/oci/resource_scheduler/models/resource.py index 1db3614706..f29b66b771 100644 --- a/src/oci/resource_scheduler/models/resource.py +++ b/src/oci/resource_scheduler/models/resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/resource_filter.py b/src/oci/resource_scheduler/models/resource_filter.py index 7beabea1a5..8f1eee45f1 100644 --- a/src/oci/resource_scheduler/models/resource_filter.py +++ b/src/oci/resource_scheduler/models/resource_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/resource_type.py b/src/oci/resource_scheduler/models/resource_type.py index f0dd60be13..8e11afff62 100644 --- a/src/oci/resource_scheduler/models/resource_type.py +++ b/src/oci/resource_scheduler/models/resource_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/resource_type_collection.py b/src/oci/resource_scheduler/models/resource_type_collection.py index 4f15a05a78..ba69e59999 100644 --- a/src/oci/resource_scheduler/models/resource_type_collection.py +++ b/src/oci/resource_scheduler/models/resource_type_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/resource_type_resource_filter.py b/src/oci/resource_scheduler/models/resource_type_resource_filter.py index b2668f8714..cf3d4bb31c 100644 --- a/src/oci/resource_scheduler/models/resource_type_resource_filter.py +++ b/src/oci/resource_scheduler/models/resource_type_resource_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/schedule.py b/src/oci/resource_scheduler/models/schedule.py index 48fc9118c7..9c1ba6b883 100644 --- a/src/oci/resource_scheduler/models/schedule.py +++ b/src/oci/resource_scheduler/models/schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/schedule_collection.py b/src/oci/resource_scheduler/models/schedule_collection.py index 1dcf473607..bef2dacccc 100644 --- a/src/oci/resource_scheduler/models/schedule_collection.py +++ b/src/oci/resource_scheduler/models/schedule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/schedule_summary.py b/src/oci/resource_scheduler/models/schedule_summary.py index 38fb0f6964..d5d0b7f104 100644 --- a/src/oci/resource_scheduler/models/schedule_summary.py +++ b/src/oci/resource_scheduler/models/schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/time_created_resource_filter.py b/src/oci/resource_scheduler/models/time_created_resource_filter.py index 3b1fe1d0e8..60ce840839 100644 --- a/src/oci/resource_scheduler/models/time_created_resource_filter.py +++ b/src/oci/resource_scheduler/models/time_created_resource_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/update_schedule_details.py b/src/oci/resource_scheduler/models/update_schedule_details.py index 0ca5e0f8d9..81a772e127 100644 --- a/src/oci/resource_scheduler/models/update_schedule_details.py +++ b/src/oci/resource_scheduler/models/update_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/work_request.py b/src/oci/resource_scheduler/models/work_request.py index a445140ae4..39e30b0ab9 100644 --- a/src/oci/resource_scheduler/models/work_request.py +++ b/src/oci/resource_scheduler/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/work_request_error.py b/src/oci/resource_scheduler/models/work_request_error.py index d64726bcfe..66169c8930 100644 --- a/src/oci/resource_scheduler/models/work_request_error.py +++ b/src/oci/resource_scheduler/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/work_request_error_collection.py b/src/oci/resource_scheduler/models/work_request_error_collection.py index 85a58edb2f..a2f067870b 100644 --- a/src/oci/resource_scheduler/models/work_request_error_collection.py +++ b/src/oci/resource_scheduler/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/work_request_log_entry.py b/src/oci/resource_scheduler/models/work_request_log_entry.py index b093a6e031..fe6d87d892 100644 --- a/src/oci/resource_scheduler/models/work_request_log_entry.py +++ b/src/oci/resource_scheduler/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/work_request_log_entry_collection.py b/src/oci/resource_scheduler/models/work_request_log_entry_collection.py index d8b82ad873..5df0ef9a44 100644 --- a/src/oci/resource_scheduler/models/work_request_log_entry_collection.py +++ b/src/oci/resource_scheduler/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/work_request_resource.py b/src/oci/resource_scheduler/models/work_request_resource.py index 02e4c678f8..9b02c34b91 100644 --- a/src/oci/resource_scheduler/models/work_request_resource.py +++ b/src/oci/resource_scheduler/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/work_request_summary.py b/src/oci/resource_scheduler/models/work_request_summary.py index 0f6196a4a8..fbc9a2023a 100644 --- a/src/oci/resource_scheduler/models/work_request_summary.py +++ b/src/oci/resource_scheduler/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/models/work_request_summary_collection.py b/src/oci/resource_scheduler/models/work_request_summary_collection.py index d489434265..c36f957565 100644 --- a/src/oci/resource_scheduler/models/work_request_summary_collection.py +++ b/src/oci/resource_scheduler/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/schedule_client.py b/src/oci/resource_scheduler/schedule_client.py index ff184be0c7..02cbcd3383 100644 --- a/src/oci/resource_scheduler/schedule_client.py +++ b/src/oci/resource_scheduler/schedule_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_scheduler/schedule_client_composite_operations.py b/src/oci/resource_scheduler/schedule_client_composite_operations.py index 643a94cff4..19adc2703c 100644 --- a/src/oci/resource_scheduler/schedule_client_composite_operations.py +++ b/src/oci/resource_scheduler/schedule_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240430 diff --git a/src/oci/resource_search/__init__.py b/src/oci/resource_search/__init__.py index cb48261793..39feab0c7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/resource_search/models/__init__.py b/src/oci/resource_search/models/__init__.py index daafe3f5a9..41177b301d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 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 3cf6ed6461..66b223ddbc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/resource_search/models/queryable_field_description.py b/src/oci/resource_search/models/queryable_field_description.py index 863a5524bb..37823c84c1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/resource_search/models/resource_summary.py b/src/oci/resource_search/models/resource_summary.py index 87c4b2f959..6f263b0257 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/resource_search/models/resource_summary_collection.py b/src/oci/resource_search/models/resource_summary_collection.py index 98ffa9a3e0..85723e4a37 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/resource_search/models/resource_type.py b/src/oci/resource_search/models/resource_type.py index 1e92fdc6dd..79e851b8ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/resource_search/models/search_context.py b/src/oci/resource_search/models/search_context.py index 6b7a804163..5d6ac12ab4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/resource_search/models/search_details.py b/src/oci/resource_search/models/search_details.py index 0757449b00..8da6c6e346 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/resource_search/models/structured_search_details.py b/src/oci/resource_search/models/structured_search_details.py index 230a2c6693..0477ef16a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/resource_search/resource_search_client.py b/src/oci/resource_search/resource_search_client.py index 846e397d77..5ff8a2009b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 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 1fc455fb52..a0b184d3b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180409 diff --git a/src/oci/response.py b/src/oci/response.py index 1af413ddc1..6da02d2ed4 100644 --- a/src/oci/response.py +++ b/src/oci/response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 03b9fd3bfd..320ef77c4c 100644 --- a/src/oci/retry/__init__.py +++ b/src/oci/retry/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/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 88eb379488..17d820b8f1 100644 --- a/src/oci/retry/retry.py +++ b/src/oci/retry/retry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 f50b377b33..40e2c7f7c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 9ae7e10478..b16d66f51e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 b35e4de2d2..a13feaff2f 100644 --- a/src/oci/rover/__init__.py +++ b/src/oci/rover/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/__init__.py b/src/oci/rover/models/__init__.py index 476d266d1e..91dcc59141 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/ca_bundle_response.py b/src/oci/rover/models/ca_bundle_response.py index 688a582ff7..eebdd29b85 100644 --- a/src/oci/rover/models/ca_bundle_response.py +++ b/src/oci/rover/models/ca_bundle_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/ca_details.py b/src/oci/rover/models/ca_details.py index 089e927902..11aac69404 100644 --- a/src/oci/rover/models/ca_details.py +++ b/src/oci/rover/models/ca_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/certificate_details.py b/src/oci/rover/models/certificate_details.py index bb68ab4295..3d909a77b6 100644 --- a/src/oci/rover/models/certificate_details.py +++ b/src/oci/rover/models/certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 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 78f62f3962..8b6e0e5bf4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 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 74ba926bf5..a71acb1efe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 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 fcc1d025f0..ac1228d676 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/create_rover_cluster_details.py b/src/oci/rover/models/create_rover_cluster_details.py index 9c66e9042d..944a3fb9e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/create_rover_entitlement_details.py b/src/oci/rover/models/create_rover_entitlement_details.py index 8e6f0bb526..247ea30fdd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/create_rover_node_details.py b/src/oci/rover/models/create_rover_node_details.py index 806c58642a..3c21d0bd46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/current_rover_bundle_details.py b/src/oci/rover/models/current_rover_bundle_details.py index 870771c8ca..a2e158b069 100644 --- a/src/oci/rover/models/current_rover_bundle_details.py +++ b/src/oci/rover/models/current_rover_bundle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/generate_certificate_response.py b/src/oci/rover/models/generate_certificate_response.py index 768c40cd17..18bb48e7ed 100644 --- a/src/oci/rover/models/generate_certificate_response.py +++ b/src/oci/rover/models/generate_certificate_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/leaf_certificate_details.py b/src/oci/rover/models/leaf_certificate_details.py index 0a22221496..197f4ca591 100644 --- a/src/oci/rover/models/leaf_certificate_details.py +++ b/src/oci/rover/models/leaf_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/leaf_certificate_response.py b/src/oci/rover/models/leaf_certificate_response.py index 20ade57b8e..a6d3ed85ad 100644 --- a/src/oci/rover/models/leaf_certificate_response.py +++ b/src/oci/rover/models/leaf_certificate_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/renew_certificate_response.py b/src/oci/rover/models/renew_certificate_response.py index 04a14234f2..b1fff2f678 100644 --- a/src/oci/rover/models/renew_certificate_response.py +++ b/src/oci/rover/models/renew_certificate_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/replace_ca_details.py b/src/oci/rover/models/replace_ca_details.py index 16301bab13..3a5656fcd6 100644 --- a/src/oci/rover/models/replace_ca_details.py +++ b/src/oci/rover/models/replace_ca_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/replace_certificate_authority_response.py b/src/oci/rover/models/replace_certificate_authority_response.py index e42b8f04a5..f3a491d49b 100644 --- a/src/oci/rover/models/replace_certificate_authority_response.py +++ b/src/oci/rover/models/replace_certificate_authority_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/request_additional_nodes_details.py b/src/oci/rover/models/request_additional_nodes_details.py index 2fe58c36c2..7fa7397b37 100644 --- a/src/oci/rover/models/request_additional_nodes_details.py +++ b/src/oci/rover/models/request_additional_nodes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/request_rover_bundle_details.py b/src/oci/rover/models/request_rover_bundle_details.py index 6fb5cf2aee..cc475005a6 100644 --- a/src/oci/rover/models/request_rover_bundle_details.py +++ b/src/oci/rover/models/request_rover_bundle_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_bundle_request_collection.py b/src/oci/rover/models/rover_bundle_request_collection.py index da0fad9275..58ff684786 100644 --- a/src/oci/rover/models/rover_bundle_request_collection.py +++ b/src/oci/rover/models/rover_bundle_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_bundle_request_summary.py b/src/oci/rover/models/rover_bundle_request_summary.py index a5439eae89..76b3ac6257 100644 --- a/src/oci/rover/models/rover_bundle_request_summary.py +++ b/src/oci/rover/models/rover_bundle_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_bundle_status.py b/src/oci/rover/models/rover_bundle_status.py index 3ada4f4d44..9eed2716cc 100644 --- a/src/oci/rover/models/rover_bundle_status.py +++ b/src/oci/rover/models/rover_bundle_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_bundle_status_details.py b/src/oci/rover/models/rover_bundle_status_details.py index c746dc3283..d2fdea029a 100644 --- a/src/oci/rover/models/rover_bundle_status_details.py +++ b/src/oci/rover/models/rover_bundle_status_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_bundle_version.py b/src/oci/rover/models/rover_bundle_version.py index 7c19412351..7f20f7ea0b 100644 --- a/src/oci/rover/models/rover_bundle_version.py +++ b/src/oci/rover/models/rover_bundle_version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_cluster.py b/src/oci/rover/models/rover_cluster.py index 6413aeff45..7743d7139e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_cluster_certificate.py b/src/oci/rover/models/rover_cluster_certificate.py index 8b87a38fbf..db8308e21e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_cluster_collection.py b/src/oci/rover/models/rover_cluster_collection.py index 2b6230c330..c2ebdb562f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_cluster_summary.py b/src/oci/rover/models/rover_cluster_summary.py index 04c176a7b8..5d3e9e6d6a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_entitlement.py b/src/oci/rover/models/rover_entitlement.py index bfaf068f9d..b2eac6dce3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_entitlement_collection.py b/src/oci/rover/models/rover_entitlement_collection.py index be45e08b8a..fd0d54b2b0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_entitlement_summary.py b/src/oci/rover/models/rover_entitlement_summary.py index 99fe916b26..c29b6118d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node.py b/src/oci/rover/models/rover_node.py index 7c7ccb7ea1..0f58ff2062 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 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 b50ae0fee0..f2c104f7eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node_certificate.py b/src/oci/rover/models/rover_node_certificate.py index 420204508b..41c7e4ec63 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node_collection.py b/src/oci/rover/models/rover_node_collection.py index 3ac1c7ef1f..c4ee49f702 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node_encryption_key.py b/src/oci/rover/models/rover_node_encryption_key.py index cf09735290..f825de9d90 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node_generate_certificate_details.py b/src/oci/rover/models/rover_node_generate_certificate_details.py index 5e3985cc04..81ec0eb79a 100644 --- a/src/oci/rover/models/rover_node_generate_certificate_details.py +++ b/src/oci/rover/models/rover_node_generate_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node_get_rpt.py b/src/oci/rover/models/rover_node_get_rpt.py index 42b74e0983..98e9f478fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node_renew_certificate_details.py b/src/oci/rover/models/rover_node_renew_certificate_details.py index 72e4fcc966..5e01289b5b 100644 --- a/src/oci/rover/models/rover_node_renew_certificate_details.py +++ b/src/oci/rover/models/rover_node_renew_certificate_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node_replace_certificate_authority_details.py b/src/oci/rover/models/rover_node_replace_certificate_authority_details.py index e9fbf35588..5dff57b8ed 100644 --- a/src/oci/rover/models/rover_node_replace_certificate_authority_details.py +++ b/src/oci/rover/models/rover_node_replace_certificate_authority_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node_set_key.py b/src/oci/rover/models/rover_node_set_key.py index 065d669d85..fbbede820b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_node_summary.py b/src/oci/rover/models/rover_node_summary.py index 285b817ca3..d647e02b5a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/rover_workload.py b/src/oci/rover/models/rover_workload.py index b325cbb9d5..46e42c8b7e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/shape_collection.py b/src/oci/rover/models/shape_collection.py index 7a37e2713b..4b01a43337 100644 --- a/src/oci/rover/models/shape_collection.py +++ b/src/oci/rover/models/shape_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/shape_summary.py b/src/oci/rover/models/shape_summary.py index de368e10e6..6870ec0a48 100644 --- a/src/oci/rover/models/shape_summary.py +++ b/src/oci/rover/models/shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/shipping_address.py b/src/oci/rover/models/shipping_address.py index 6bf9d42719..2e3709e466 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/update_rover_cluster_details.py b/src/oci/rover/models/update_rover_cluster_details.py index 6cd7eb67a1..ecc1a61b40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/update_rover_entitlement_details.py b/src/oci/rover/models/update_rover_entitlement_details.py index 41bab1d8d7..5419431d5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/update_rover_node_details.py b/src/oci/rover/models/update_rover_node_details.py index 1a6ffba601..fe7bdc71e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/work_request.py b/src/oci/rover/models/work_request.py index ab40195b4c..ac83fc55b8 100644 --- a/src/oci/rover/models/work_request.py +++ b/src/oci/rover/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/work_request_collection.py b/src/oci/rover/models/work_request_collection.py index 69c7c890b2..a238419f63 100644 --- a/src/oci/rover/models/work_request_collection.py +++ b/src/oci/rover/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/work_request_error.py b/src/oci/rover/models/work_request_error.py index ba8f45ad5c..a1d3332d58 100644 --- a/src/oci/rover/models/work_request_error.py +++ b/src/oci/rover/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/work_request_error_collection.py b/src/oci/rover/models/work_request_error_collection.py index 4f2addf41d..7184316c4b 100644 --- a/src/oci/rover/models/work_request_error_collection.py +++ b/src/oci/rover/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/work_request_log.py b/src/oci/rover/models/work_request_log.py index b13d7418cb..bf5a065dac 100644 --- a/src/oci/rover/models/work_request_log.py +++ b/src/oci/rover/models/work_request_log.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/work_request_log_collection.py b/src/oci/rover/models/work_request_log_collection.py index c6eedf9832..ecc8746a28 100644 --- a/src/oci/rover/models/work_request_log_collection.py +++ b/src/oci/rover/models/work_request_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/work_request_resource.py b/src/oci/rover/models/work_request_resource.py index d786e40359..57b5a5eeff 100644 --- a/src/oci/rover/models/work_request_resource.py +++ b/src/oci/rover/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/models/work_request_summary.py b/src/oci/rover/models/work_request_summary.py index 669d998183..ec6ce3366b 100644 --- a/src/oci/rover/models/work_request_summary.py +++ b/src/oci/rover/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/rover_bundle_client.py b/src/oci/rover/rover_bundle_client.py index d044d07b21..189dfee248 100644 --- a/src/oci/rover/rover_bundle_client.py +++ b/src/oci/rover/rover_bundle_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/rover_bundle_client_composite_operations.py b/src/oci/rover/rover_bundle_client_composite_operations.py index 875c049990..82b2bbb136 100644 --- a/src/oci/rover/rover_bundle_client_composite_operations.py +++ b/src/oci/rover/rover_bundle_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/rover_cluster_client.py b/src/oci/rover/rover_cluster_client.py index 38e1057c2d..32521c0e4d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/rover_cluster_client_composite_operations.py b/src/oci/rover/rover_cluster_client_composite_operations.py index 948f6fe894..764c30a2a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/rover_entitlement_client.py b/src/oci/rover/rover_entitlement_client.py index 497edaf45a..521faa0ac0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/rover_entitlement_client_composite_operations.py b/src/oci/rover/rover_entitlement_client_composite_operations.py index 336cf3fb33..66156c5f93 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/rover_node_client.py b/src/oci/rover/rover_node_client.py index c9ec6f701e..82d7f65de8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/rover_node_client_composite_operations.py b/src/oci/rover/rover_node_client_composite_operations.py index b55149eaf6..c01aa49825 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/shape_client.py b/src/oci/rover/shape_client.py index 3eb49c8e80..ce978b50eb 100644 --- a/src/oci/rover/shape_client.py +++ b/src/oci/rover/shape_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/shape_client_composite_operations.py b/src/oci/rover/shape_client_composite_operations.py index 1b7eaf7c00..2477193861 100644 --- a/src/oci/rover/shape_client_composite_operations.py +++ b/src/oci/rover/shape_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/work_requests_client.py b/src/oci/rover/work_requests_client.py index a4093a0832..988b0094ce 100644 --- a/src/oci/rover/work_requests_client.py +++ b/src/oci/rover/work_requests_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/rover/work_requests_client_composite_operations.py b/src/oci/rover/work_requests_client_composite_operations.py index 93582e92e0..e4bf9282cb 100644 --- a/src/oci/rover/work_requests_client_composite_operations.py +++ b/src/oci/rover/work_requests_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20201210 diff --git a/src/oci/sch/__init__.py b/src/oci/sch/__init__.py index 897f8f6852..06b4239e86 100644 --- a/src/oci/sch/__init__.py +++ b/src/oci/sch/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/connector_plugins_client.py b/src/oci/sch/connector_plugins_client.py index 5139603e72..fab3c857c7 100644 --- a/src/oci/sch/connector_plugins_client.py +++ b/src/oci/sch/connector_plugins_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/connector_plugins_client_composite_operations.py b/src/oci/sch/connector_plugins_client_composite_operations.py index daf9d44810..76e07335a4 100644 --- a/src/oci/sch/connector_plugins_client_composite_operations.py +++ b/src/oci/sch/connector_plugins_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/__init__.py b/src/oci/sch/models/__init__.py index 2515df5d4e..9eabfe491d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 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 c8c0ba35be..6cc5bde0bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/connector_plugin.py b/src/oci/sch/models/connector_plugin.py index 7f8f4d9a88..1bb3fc0a9b 100644 --- a/src/oci/sch/models/connector_plugin.py +++ b/src/oci/sch/models/connector_plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/connector_plugin_collection.py b/src/oci/sch/models/connector_plugin_collection.py index 286a9ce9c8..8ecb43b3f2 100644 --- a/src/oci/sch/models/connector_plugin_collection.py +++ b/src/oci/sch/models/connector_plugin_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/connector_plugin_summary.py b/src/oci/sch/models/connector_plugin_summary.py index 44e23bc294..8e3f2361ab 100644 --- a/src/oci/sch/models/connector_plugin_summary.py +++ b/src/oci/sch/models/connector_plugin_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/create_service_connector_details.py b/src/oci/sch/models/create_service_connector_details.py index 2971a1fd6b..8830870bab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/dimension_details.py b/src/oci/sch/models/dimension_details.py index 879e7bb2b2..b68734d43a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/dimension_value_details.py b/src/oci/sch/models/dimension_value_details.py index 14217e23b8..a58683a643 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/function_task_details.py b/src/oci/sch/models/function_task_details.py index f72ea60836..b436555da2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/functions_target_details.py b/src/oci/sch/models/functions_target_details.py index 637b66dabc..230bc41077 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/jmes_path_dimension_value.py b/src/oci/sch/models/jmes_path_dimension_value.py index 28525633a8..d058fb8346 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/latest_streaming_cursor.py b/src/oci/sch/models/latest_streaming_cursor.py index ad113db1e7..9fbe979bfe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/log_rule_task_details.py b/src/oci/sch/models/log_rule_task_details.py index 869e59c287..760ce0901e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/log_source.py b/src/oci/sch/models/log_source.py index d7ad210e72..abe2ebdbc9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/logging_analytics_target_details.py b/src/oci/sch/models/logging_analytics_target_details.py index f925d4c5d6..4c1954e870 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/logging_source_details.py b/src/oci/sch/models/logging_source_details.py index 755abe15b5..66b1896375 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/monitoring_source.py b/src/oci/sch/models/monitoring_source.py index d5e8d1cd39..2d96acdffc 100644 --- a/src/oci/sch/models/monitoring_source.py +++ b/src/oci/sch/models/monitoring_source.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/monitoring_source_all_metrics.py b/src/oci/sch/models/monitoring_source_all_metrics.py index 356735918f..57709db1e8 100644 --- a/src/oci/sch/models/monitoring_source_all_metrics.py +++ b/src/oci/sch/models/monitoring_source_all_metrics.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/monitoring_source_details.py b/src/oci/sch/models/monitoring_source_details.py index 8ac0bfe63d..e7b556c264 100644 --- a/src/oci/sch/models/monitoring_source_details.py +++ b/src/oci/sch/models/monitoring_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/monitoring_source_metric_details.py b/src/oci/sch/models/monitoring_source_metric_details.py index 33ec055cbc..fe00de2c73 100644 --- a/src/oci/sch/models/monitoring_source_metric_details.py +++ b/src/oci/sch/models/monitoring_source_metric_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/monitoring_source_namespace_details.py b/src/oci/sch/models/monitoring_source_namespace_details.py index d6b730390a..5aa95b32da 100644 --- a/src/oci/sch/models/monitoring_source_namespace_details.py +++ b/src/oci/sch/models/monitoring_source_namespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/monitoring_source_selected_namespace.py b/src/oci/sch/models/monitoring_source_selected_namespace.py index ed9ff8e1c3..a81309c919 100644 --- a/src/oci/sch/models/monitoring_source_selected_namespace.py +++ b/src/oci/sch/models/monitoring_source_selected_namespace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/monitoring_source_selected_namespace_details.py b/src/oci/sch/models/monitoring_source_selected_namespace_details.py index a1d6e2f31d..d21b9a6957 100644 --- a/src/oci/sch/models/monitoring_source_selected_namespace_details.py +++ b/src/oci/sch/models/monitoring_source_selected_namespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/monitoring_target_details.py b/src/oci/sch/models/monitoring_target_details.py index 4e59e06eb4..7d7ccce601 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/notifications_target_details.py b/src/oci/sch/models/notifications_target_details.py index fb7d7c3ed9..833d0b92f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/object_storage_target_details.py b/src/oci/sch/models/object_storage_target_details.py index f5e2da8aa6..1dcbd9ec66 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/plugin_source_details.py b/src/oci/sch/models/plugin_source_details.py index 8f10c98e7d..9d9c6cece0 100644 --- a/src/oci/sch/models/plugin_source_details.py +++ b/src/oci/sch/models/plugin_source_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/service_connector.py b/src/oci/sch/models/service_connector.py index 37d723b06e..4a9aab7433 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/service_connector_collection.py b/src/oci/sch/models/service_connector_collection.py index a1ec6ee353..258017f01a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/service_connector_summary.py b/src/oci/sch/models/service_connector_summary.py index 4e0ecad648..f6b6044dd4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/source_connector_plugin.py b/src/oci/sch/models/source_connector_plugin.py index ae241aecb2..e51c55ad21 100644 --- a/src/oci/sch/models/source_connector_plugin.py +++ b/src/oci/sch/models/source_connector_plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/source_connector_plugin_summary.py b/src/oci/sch/models/source_connector_plugin_summary.py index e15577caad..9f627dc14d 100644 --- a/src/oci/sch/models/source_connector_plugin_summary.py +++ b/src/oci/sch/models/source_connector_plugin_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/source_details.py b/src/oci/sch/models/source_details.py index e0adf06424..08addfb3d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/static_dimension_value.py b/src/oci/sch/models/static_dimension_value.py index 6df3243be6..f9d89eb9e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/streaming_cursor_details.py b/src/oci/sch/models/streaming_cursor_details.py index 70a3ea2104..6dec07cb05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/streaming_source_details.py b/src/oci/sch/models/streaming_source_details.py index d03b1b707a..c7291b6d68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/streaming_target_details.py b/src/oci/sch/models/streaming_target_details.py index b860b82e2d..39456cb15c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/target_connector_plugin.py b/src/oci/sch/models/target_connector_plugin.py index 20d37bef03..457ecf67b5 100644 --- a/src/oci/sch/models/target_connector_plugin.py +++ b/src/oci/sch/models/target_connector_plugin.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/target_connector_plugin_summary.py b/src/oci/sch/models/target_connector_plugin_summary.py index 9240dfc84b..c39e54e316 100644 --- a/src/oci/sch/models/target_connector_plugin_summary.py +++ b/src/oci/sch/models/target_connector_plugin_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/target_details.py b/src/oci/sch/models/target_details.py index e77d68cba3..ec23ed9613 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/task_details.py b/src/oci/sch/models/task_details.py index c162c7346c..eb5e911625 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/trim_horizon_streaming_cursor.py b/src/oci/sch/models/trim_horizon_streaming_cursor.py index 803adc0529..06670b390f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/update_service_connector_details.py b/src/oci/sch/models/update_service_connector_details.py index fff775e91c..a81e524c6a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/work_request.py b/src/oci/sch/models/work_request.py index 450f736236..c88e859437 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/work_request_collection.py b/src/oci/sch/models/work_request_collection.py index c81d3215e9..ce8e27432b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/work_request_error.py b/src/oci/sch/models/work_request_error.py index 821e5dbe56..c9f2429b4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/work_request_error_collection.py b/src/oci/sch/models/work_request_error_collection.py index 490171a064..7781dc868f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/work_request_log_entry.py b/src/oci/sch/models/work_request_log_entry.py index 78dc820639..da9ecf842e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 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 2ee0e763f4..551bd584a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/models/work_request_resource.py b/src/oci/sch/models/work_request_resource.py index a3a72fa199..0f4fee5a13 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/service_connector_client.py b/src/oci/sch/service_connector_client.py index a70f2e53be..f3b3dc01a2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/sch/service_connector_client_composite_operations.py b/src/oci/sch/service_connector_client_composite_operations.py index 1f8a817a84..643a1b80f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200909 diff --git a/src/oci/secrets/__init__.py b/src/oci/secrets/__init__.py index 0ec75dbc91..6ae82d9d8e 100644 --- a/src/oci/secrets/__init__.py +++ b/src/oci/secrets/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190301 diff --git a/src/oci/secrets/models/__init__.py b/src/oci/secrets/models/__init__.py index caad79fb7d..9d5eaee977 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190301 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 d5d01957d2..6e51083450 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190301 diff --git a/src/oci/secrets/models/secret_bundle.py b/src/oci/secrets/models/secret_bundle.py index ec43ea89d8..8545a9c676 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190301 diff --git a/src/oci/secrets/models/secret_bundle_content_details.py b/src/oci/secrets/models/secret_bundle_content_details.py index 8248bded5c..4a6071a17c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190301 diff --git a/src/oci/secrets/models/secret_bundle_version_summary.py b/src/oci/secrets/models/secret_bundle_version_summary.py index 3093f764ff..441ee12861 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190301 diff --git a/src/oci/secrets/secrets_client.py b/src/oci/secrets/secrets_client.py index b58ed8100d..9dbb4a76b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190301 diff --git a/src/oci/secrets/secrets_client_composite_operations.py b/src/oci/secrets/secrets_client_composite_operations.py index 5090e628d1..65db763652 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190301 diff --git a/src/oci/security_attribute/__init__.py b/src/oci/security_attribute/__init__.py index 07309d9e6b..69e083bc41 100644 --- a/src/oci/security_attribute/__init__.py +++ b/src/oci/security_attribute/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/__init__.py b/src/oci/security_attribute/models/__init__.py index f9c3266f53..95b53d34c6 100644 --- a/src/oci/security_attribute/models/__init__.py +++ b/src/oci/security_attribute/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/base_security_attribute_validator.py b/src/oci/security_attribute/models/base_security_attribute_validator.py index 5c795a6b5b..1e809e598d 100644 --- a/src/oci/security_attribute/models/base_security_attribute_validator.py +++ b/src/oci/security_attribute/models/base_security_attribute_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/bulk_delete_security_attributes_details.py b/src/oci/security_attribute/models/bulk_delete_security_attributes_details.py index 7e3a5fdcc8..a951baeb29 100644 --- a/src/oci/security_attribute/models/bulk_delete_security_attributes_details.py +++ b/src/oci/security_attribute/models/bulk_delete_security_attributes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/bulk_edit_resource.py b/src/oci/security_attribute/models/bulk_edit_resource.py index 6895756615..7d17f9f007 100644 --- a/src/oci/security_attribute/models/bulk_edit_resource.py +++ b/src/oci/security_attribute/models/bulk_edit_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/bulk_edit_security_attribute_details.py b/src/oci/security_attribute/models/bulk_edit_security_attribute_details.py index c4aab8114b..2f9b0f2ebf 100644 --- a/src/oci/security_attribute/models/bulk_edit_security_attribute_details.py +++ b/src/oci/security_attribute/models/bulk_edit_security_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/bulk_edit_security_attribute_operation_details.py b/src/oci/security_attribute/models/bulk_edit_security_attribute_operation_details.py index 373a5cba39..085b286dcd 100644 --- a/src/oci/security_attribute/models/bulk_edit_security_attribute_operation_details.py +++ b/src/oci/security_attribute/models/bulk_edit_security_attribute_operation_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/change_security_attribute_namespace_compartment_details.py b/src/oci/security_attribute/models/change_security_attribute_namespace_compartment_details.py index 564032fdde..1aa92f2bed 100644 --- a/src/oci/security_attribute/models/change_security_attribute_namespace_compartment_details.py +++ b/src/oci/security_attribute/models/change_security_attribute_namespace_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/create_security_attribute_details.py b/src/oci/security_attribute/models/create_security_attribute_details.py index 46548cf62a..1ae2ff1880 100644 --- a/src/oci/security_attribute/models/create_security_attribute_details.py +++ b/src/oci/security_attribute/models/create_security_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/create_security_attribute_namespace_details.py b/src/oci/security_attribute/models/create_security_attribute_namespace_details.py index a97d955c44..ecaad6b68d 100644 --- a/src/oci/security_attribute/models/create_security_attribute_namespace_details.py +++ b/src/oci/security_attribute/models/create_security_attribute_namespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/default_security_attribute_validator.py b/src/oci/security_attribute/models/default_security_attribute_validator.py index bfc8903fd1..69c8e7881e 100644 --- a/src/oci/security_attribute/models/default_security_attribute_validator.py +++ b/src/oci/security_attribute/models/default_security_attribute_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/enum_security_attribute_validator.py b/src/oci/security_attribute/models/enum_security_attribute_validator.py index a5a0a37945..322cbefd8d 100644 --- a/src/oci/security_attribute/models/enum_security_attribute_validator.py +++ b/src/oci/security_attribute/models/enum_security_attribute_validator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/security_attribute.py b/src/oci/security_attribute/models/security_attribute.py index b6be867803..93b8f61cbe 100644 --- a/src/oci/security_attribute/models/security_attribute.py +++ b/src/oci/security_attribute/models/security_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/security_attribute_namespace.py b/src/oci/security_attribute/models/security_attribute_namespace.py index ef9ebe6ebd..d68178d904 100644 --- a/src/oci/security_attribute/models/security_attribute_namespace.py +++ b/src/oci/security_attribute/models/security_attribute_namespace.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/security_attribute_namespace_summary.py b/src/oci/security_attribute/models/security_attribute_namespace_summary.py index 37b06f6663..1635f2d472 100644 --- a/src/oci/security_attribute/models/security_attribute_namespace_summary.py +++ b/src/oci/security_attribute/models/security_attribute_namespace_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/security_attribute_summary.py b/src/oci/security_attribute/models/security_attribute_summary.py index ca2bb1f00c..d08f62553c 100644 --- a/src/oci/security_attribute/models/security_attribute_summary.py +++ b/src/oci/security_attribute/models/security_attribute_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/security_attribute_work_request.py b/src/oci/security_attribute/models/security_attribute_work_request.py index 2baf390beb..53347a95ad 100644 --- a/src/oci/security_attribute/models/security_attribute_work_request.py +++ b/src/oci/security_attribute/models/security_attribute_work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/security_attribute_work_request_error_summary.py b/src/oci/security_attribute/models/security_attribute_work_request_error_summary.py index 4fd9a302d9..6a4fc1cef1 100644 --- a/src/oci/security_attribute/models/security_attribute_work_request_error_summary.py +++ b/src/oci/security_attribute/models/security_attribute_work_request_error_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/security_attribute_work_request_log_summary.py b/src/oci/security_attribute/models/security_attribute_work_request_log_summary.py index 283cb262c7..f62d40d3c4 100644 --- a/src/oci/security_attribute/models/security_attribute_work_request_log_summary.py +++ b/src/oci/security_attribute/models/security_attribute_work_request_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/security_attribute_work_request_summary.py b/src/oci/security_attribute/models/security_attribute_work_request_summary.py index 16f1fd484d..bc7e670eec 100644 --- a/src/oci/security_attribute/models/security_attribute_work_request_summary.py +++ b/src/oci/security_attribute/models/security_attribute_work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/update_security_attribute_details.py b/src/oci/security_attribute/models/update_security_attribute_details.py index de33a47b13..c56f7a4b5f 100644 --- a/src/oci/security_attribute/models/update_security_attribute_details.py +++ b/src/oci/security_attribute/models/update_security_attribute_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/update_security_attribute_namespace_details.py b/src/oci/security_attribute/models/update_security_attribute_namespace_details.py index b83ab1b48c..5f3fde9947 100644 --- a/src/oci/security_attribute/models/update_security_attribute_namespace_details.py +++ b/src/oci/security_attribute/models/update_security_attribute_namespace_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/models/work_request_resource.py b/src/oci/security_attribute/models/work_request_resource.py index c7f2532347..e6e57dc9b9 100644 --- a/src/oci/security_attribute/models/work_request_resource.py +++ b/src/oci/security_attribute/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/security_attribute_client.py b/src/oci/security_attribute/security_attribute_client.py index 853a51cf97..07a3cb4e56 100644 --- a/src/oci/security_attribute/security_attribute_client.py +++ b/src/oci/security_attribute/security_attribute_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/security_attribute/security_attribute_client_composite_operations.py b/src/oci/security_attribute/security_attribute_client_composite_operations.py index 516e0711a4..2f3ff949ea 100644 --- a/src/oci/security_attribute/security_attribute_client_composite_operations.py +++ b/src/oci/security_attribute/security_attribute_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240815 diff --git a/src/oci/service_catalog/__init__.py b/src/oci/service_catalog/__init__.py index 4096b3967b..d1d870fa88 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/__init__.py b/src/oci/service_catalog/models/__init__.py index 645bf84cc1..a5dffda493 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/application_collection.py b/src/oci/service_catalog/models/application_collection.py index 75c298bc6c..975b417851 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/application_summary.py b/src/oci/service_catalog/models/application_summary.py index 3f9557f1bc..7256b199cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 7c674f2f87..8c5b3297ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 87f66853e1..c67ac0b83c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 32a31e0c21..8e1c8ced86 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 9b56ed9ff0..861a64bf3f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 769d190458..d6a459d1db 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 09c0524714..5e53c7aa7b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 88579812f8..54fc89b259 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 f8f66e181c..d64f344934 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/error_entity.py b/src/oci/service_catalog/models/error_entity.py index 6a7033c660..dd9794b2ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/private_application.py b/src/oci/service_catalog/models/private_application.py index 77e6dbecaf..b52f905339 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/private_application_collection.py b/src/oci/service_catalog/models/private_application_collection.py index ff25738313..24229e4613 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/private_application_package.py b/src/oci/service_catalog/models/private_application_package.py index 09775ed99f..a22b2d4507 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 961e15327a..02d81b52d3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 76489e7502..0f2ef2ab6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 cf1a36eed7..ce4d693ff3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/private_application_summary.py b/src/oci/service_catalog/models/private_application_summary.py index b9c391de78..562ac0e791 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/publisher_summary.py b/src/oci/service_catalog/models/publisher_summary.py index 932f23f5a2..4483ecfbc3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/service_catalog.py b/src/oci/service_catalog/models/service_catalog.py index 445ce22640..a7afec59bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/service_catalog_association.py b/src/oci/service_catalog/models/service_catalog_association.py index 41f4c36368..ad6b31bca9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 210705c905..e2160f939f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 b474719353..91c318bd11 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/service_catalog_collection.py b/src/oci/service_catalog/models/service_catalog_collection.py index d54d7d2e7a..23079ea450 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/service_catalog_summary.py b/src/oci/service_catalog/models/service_catalog_summary.py index bbb9dd00b4..bc20c369a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 003cd65626..0abb254934 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 9981071f81..028c57f8b4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/upload_data.py b/src/oci/service_catalog/models/upload_data.py index 7d4a452cf9..f8066af1ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/work_request.py b/src/oci/service_catalog/models/work_request.py index 4cda7dd92b..2c0f22bd9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/work_request_error.py b/src/oci/service_catalog/models/work_request_error.py index 573a2ea336..8b837d3c74 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 0ab2d48630..4527c3ca5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 923640d6d6..7bb24c8620 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 31355389a6..30761e9f81 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/work_request_resource.py b/src/oci/service_catalog/models/work_request_resource.py index 5d3f29885f..9ad0198a7e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/models/work_request_summary.py b/src/oci/service_catalog/models/work_request_summary.py index 5d29feb22b..7b0cb960b1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 63d552a352..efd9c74ff9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_catalog/service_catalog_client.py b/src/oci/service_catalog/service_catalog_client.py index 00768ce811..83541a3471 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 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 fe5e651f4e..322103d8ee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210527 diff --git a/src/oci/service_endpoints.py b/src/oci/service_endpoints.py index a75c9ab289..7e07e67318 100644 --- a/src/oci/service_endpoints.py +++ b/src/oci/service_endpoints.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 5d7f4c25dc..bf34073b16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 diff --git a/src/oci/service_manager_proxy/models/__init__.py b/src/oci/service_manager_proxy/models/__init__.py index b81640fab6..34b3df7bb4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 diff --git a/src/oci/service_manager_proxy/models/error_entity.py b/src/oci/service_manager_proxy/models/error_entity.py index 5ece41b49c..b454d1d9c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 diff --git a/src/oci/service_manager_proxy/models/service_definition.py b/src/oci/service_manager_proxy/models/service_definition.py index 71584f00aa..26c259565d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 diff --git a/src/oci/service_manager_proxy/models/service_environment.py b/src/oci/service_manager_proxy/models/service_environment.py index a4edae851c..2a88d78b5d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 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 05bd64f7d7..cb9e34cc9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 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 f6fae97392..64d8919c56 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 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 3ef5d9f787..81c5c500e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 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 a34fa7eeae..19847fc9e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 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 d60fccf0a1..d99e387f1b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210914 diff --git a/src/oci/service_mesh/__init__.py b/src/oci/service_mesh/__init__.py index 6f59736383..442685ded3 100644 --- a/src/oci/service_mesh/__init__.py +++ b/src/oci/service_mesh/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/__init__.py b/src/oci/service_mesh/models/__init__.py index e74c4b7495..30d0e439bf 100644 --- a/src/oci/service_mesh/models/__init__.py +++ b/src/oci/service_mesh/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/access_logging_configuration.py b/src/oci/service_mesh/models/access_logging_configuration.py index d077a73e6c..522de88145 100644 --- a/src/oci/service_mesh/models/access_logging_configuration.py +++ b/src/oci/service_mesh/models/access_logging_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/access_policy.py b/src/oci/service_mesh/models/access_policy.py index fd2e1225f4..44d56c1244 100644 --- a/src/oci/service_mesh/models/access_policy.py +++ b/src/oci/service_mesh/models/access_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/access_policy_collection.py b/src/oci/service_mesh/models/access_policy_collection.py index 5b43811b33..6e34654b02 100644 --- a/src/oci/service_mesh/models/access_policy_collection.py +++ b/src/oci/service_mesh/models/access_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/access_policy_rule.py b/src/oci/service_mesh/models/access_policy_rule.py index e955ddb40c..2774107dfb 100644 --- a/src/oci/service_mesh/models/access_policy_rule.py +++ b/src/oci/service_mesh/models/access_policy_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/access_policy_rule_details.py b/src/oci/service_mesh/models/access_policy_rule_details.py index e1b98354f2..beeb0a581b 100644 --- a/src/oci/service_mesh/models/access_policy_rule_details.py +++ b/src/oci/service_mesh/models/access_policy_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/access_policy_summary.py b/src/oci/service_mesh/models/access_policy_summary.py index 1383a64f49..d4a43fb355 100644 --- a/src/oci/service_mesh/models/access_policy_summary.py +++ b/src/oci/service_mesh/models/access_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/access_policy_target.py b/src/oci/service_mesh/models/access_policy_target.py index f63221afe2..ef94cf2e89 100644 --- a/src/oci/service_mesh/models/access_policy_target.py +++ b/src/oci/service_mesh/models/access_policy_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/access_policy_target_details.py b/src/oci/service_mesh/models/access_policy_target_details.py index 168314c644..8122149605 100644 --- a/src/oci/service_mesh/models/access_policy_target_details.py +++ b/src/oci/service_mesh/models/access_policy_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/all_virtual_services_access_policy_target.py b/src/oci/service_mesh/models/all_virtual_services_access_policy_target.py index 487f2663ce..80af1cd569 100644 --- a/src/oci/service_mesh/models/all_virtual_services_access_policy_target.py +++ b/src/oci/service_mesh/models/all_virtual_services_access_policy_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/all_virtual_services_access_policy_target_details.py b/src/oci/service_mesh/models/all_virtual_services_access_policy_target_details.py index f9d9b67393..2bc214c0e5 100644 --- a/src/oci/service_mesh/models/all_virtual_services_access_policy_target_details.py +++ b/src/oci/service_mesh/models/all_virtual_services_access_policy_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ca_bundle.py b/src/oci/service_mesh/models/ca_bundle.py index 6e6959f7ef..fecbb17551 100644 --- a/src/oci/service_mesh/models/ca_bundle.py +++ b/src/oci/service_mesh/models/ca_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/certificate_authority.py b/src/oci/service_mesh/models/certificate_authority.py index 4d8e089cb2..20279d5f69 100644 --- a/src/oci/service_mesh/models/certificate_authority.py +++ b/src/oci/service_mesh/models/certificate_authority.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/change_access_policy_compartment_details.py b/src/oci/service_mesh/models/change_access_policy_compartment_details.py index 94f2d0d162..0479499689 100644 --- a/src/oci/service_mesh/models/change_access_policy_compartment_details.py +++ b/src/oci/service_mesh/models/change_access_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/change_ingress_gateway_compartment_details.py b/src/oci/service_mesh/models/change_ingress_gateway_compartment_details.py index 89bd3615fa..43f77ce272 100644 --- a/src/oci/service_mesh/models/change_ingress_gateway_compartment_details.py +++ b/src/oci/service_mesh/models/change_ingress_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/change_ingress_gateway_route_table_compartment_details.py b/src/oci/service_mesh/models/change_ingress_gateway_route_table_compartment_details.py index f550c1a335..a07e097e72 100644 --- a/src/oci/service_mesh/models/change_ingress_gateway_route_table_compartment_details.py +++ b/src/oci/service_mesh/models/change_ingress_gateway_route_table_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/change_mesh_compartment_details.py b/src/oci/service_mesh/models/change_mesh_compartment_details.py index b113f6bb07..bb2c27507e 100644 --- a/src/oci/service_mesh/models/change_mesh_compartment_details.py +++ b/src/oci/service_mesh/models/change_mesh_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/change_virtual_deployment_compartment_details.py b/src/oci/service_mesh/models/change_virtual_deployment_compartment_details.py index 37c8b574b4..339301ca1a 100644 --- a/src/oci/service_mesh/models/change_virtual_deployment_compartment_details.py +++ b/src/oci/service_mesh/models/change_virtual_deployment_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/change_virtual_service_compartment_details.py b/src/oci/service_mesh/models/change_virtual_service_compartment_details.py index 41d4a2307a..b9219d11de 100644 --- a/src/oci/service_mesh/models/change_virtual_service_compartment_details.py +++ b/src/oci/service_mesh/models/change_virtual_service_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/change_virtual_service_route_table_compartment_details.py b/src/oci/service_mesh/models/change_virtual_service_route_table_compartment_details.py index 1ddeaa2c31..6308883990 100644 --- a/src/oci/service_mesh/models/change_virtual_service_route_table_compartment_details.py +++ b/src/oci/service_mesh/models/change_virtual_service_route_table_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/create_access_policy_details.py b/src/oci/service_mesh/models/create_access_policy_details.py index 02f70b5d41..1f7bfbc471 100644 --- a/src/oci/service_mesh/models/create_access_policy_details.py +++ b/src/oci/service_mesh/models/create_access_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/create_ingress_gateway_details.py b/src/oci/service_mesh/models/create_ingress_gateway_details.py index e1ed622132..f63f3278c3 100644 --- a/src/oci/service_mesh/models/create_ingress_gateway_details.py +++ b/src/oci/service_mesh/models/create_ingress_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/create_ingress_gateway_route_table_details.py b/src/oci/service_mesh/models/create_ingress_gateway_route_table_details.py index eea91feac2..1af902b5d9 100644 --- a/src/oci/service_mesh/models/create_ingress_gateway_route_table_details.py +++ b/src/oci/service_mesh/models/create_ingress_gateway_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/create_mesh_details.py b/src/oci/service_mesh/models/create_mesh_details.py index ccdb9afef1..05683e33d3 100644 --- a/src/oci/service_mesh/models/create_mesh_details.py +++ b/src/oci/service_mesh/models/create_mesh_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/create_virtual_deployment_details.py b/src/oci/service_mesh/models/create_virtual_deployment_details.py index 0620f24727..37a01ba6b3 100644 --- a/src/oci/service_mesh/models/create_virtual_deployment_details.py +++ b/src/oci/service_mesh/models/create_virtual_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/create_virtual_service_details.py b/src/oci/service_mesh/models/create_virtual_service_details.py index 27c32cae1d..a0fdc4f98f 100644 --- a/src/oci/service_mesh/models/create_virtual_service_details.py +++ b/src/oci/service_mesh/models/create_virtual_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/create_virtual_service_route_table_details.py b/src/oci/service_mesh/models/create_virtual_service_route_table_details.py index 97cfd9fab0..54519ba1f6 100644 --- a/src/oci/service_mesh/models/create_virtual_service_route_table_details.py +++ b/src/oci/service_mesh/models/create_virtual_service_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/default_virtual_service_routing_policy.py b/src/oci/service_mesh/models/default_virtual_service_routing_policy.py index 5babd22f59..c1a4b7a4b2 100644 --- a/src/oci/service_mesh/models/default_virtual_service_routing_policy.py +++ b/src/oci/service_mesh/models/default_virtual_service_routing_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/disabled_service_discovery_configuration.py b/src/oci/service_mesh/models/disabled_service_discovery_configuration.py index 237d2f660a..584ceafd32 100644 --- a/src/oci/service_mesh/models/disabled_service_discovery_configuration.py +++ b/src/oci/service_mesh/models/disabled_service_discovery_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/dns_service_discovery_configuration.py b/src/oci/service_mesh/models/dns_service_discovery_configuration.py index 5e66febe6c..5e775db6bf 100644 --- a/src/oci/service_mesh/models/dns_service_discovery_configuration.py +++ b/src/oci/service_mesh/models/dns_service_discovery_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/external_service_access_policy_target.py b/src/oci/service_mesh/models/external_service_access_policy_target.py index 647061f30c..353d7df148 100644 --- a/src/oci/service_mesh/models/external_service_access_policy_target.py +++ b/src/oci/service_mesh/models/external_service_access_policy_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/external_service_access_policy_target_details.py b/src/oci/service_mesh/models/external_service_access_policy_target_details.py index ca8c6da7fd..4dc42a8049 100644 --- a/src/oci/service_mesh/models/external_service_access_policy_target_details.py +++ b/src/oci/service_mesh/models/external_service_access_policy_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/http_ingress_gateway_traffic_route_rule.py b/src/oci/service_mesh/models/http_ingress_gateway_traffic_route_rule.py index fb67fa0fb4..a45cebc85f 100644 --- a/src/oci/service_mesh/models/http_ingress_gateway_traffic_route_rule.py +++ b/src/oci/service_mesh/models/http_ingress_gateway_traffic_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/http_ingress_gateway_traffic_route_rule_details.py b/src/oci/service_mesh/models/http_ingress_gateway_traffic_route_rule_details.py index ba01d0b843..02d67e93d5 100644 --- a/src/oci/service_mesh/models/http_ingress_gateway_traffic_route_rule_details.py +++ b/src/oci/service_mesh/models/http_ingress_gateway_traffic_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/http_virtual_service_traffic_route_rule.py b/src/oci/service_mesh/models/http_virtual_service_traffic_route_rule.py index 2ca4ea1f15..db7ec93795 100644 --- a/src/oci/service_mesh/models/http_virtual_service_traffic_route_rule.py +++ b/src/oci/service_mesh/models/http_virtual_service_traffic_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/http_virtual_service_traffic_route_rule_details.py b/src/oci/service_mesh/models/http_virtual_service_traffic_route_rule_details.py index ac573bf43b..edc36732fd 100644 --- a/src/oci/service_mesh/models/http_virtual_service_traffic_route_rule_details.py +++ b/src/oci/service_mesh/models/http_virtual_service_traffic_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway.py b/src/oci/service_mesh/models/ingress_gateway.py index 5307b73312..a6c01a9b0f 100644 --- a/src/oci/service_mesh/models/ingress_gateway.py +++ b/src/oci/service_mesh/models/ingress_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_access_policy_target.py b/src/oci/service_mesh/models/ingress_gateway_access_policy_target.py index 182fa611b6..ea89724ecb 100644 --- a/src/oci/service_mesh/models/ingress_gateway_access_policy_target.py +++ b/src/oci/service_mesh/models/ingress_gateway_access_policy_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_access_policy_target_details.py b/src/oci/service_mesh/models/ingress_gateway_access_policy_target_details.py index ded2507de9..c253881d83 100644 --- a/src/oci/service_mesh/models/ingress_gateway_access_policy_target_details.py +++ b/src/oci/service_mesh/models/ingress_gateway_access_policy_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_collection.py b/src/oci/service_mesh/models/ingress_gateway_collection.py index ecdb477bea..ef7e59819a 100644 --- a/src/oci/service_mesh/models/ingress_gateway_collection.py +++ b/src/oci/service_mesh/models/ingress_gateway_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_host.py b/src/oci/service_mesh/models/ingress_gateway_host.py index c44ef64400..7f5c51ae87 100644 --- a/src/oci/service_mesh/models/ingress_gateway_host.py +++ b/src/oci/service_mesh/models/ingress_gateway_host.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_host_ref.py b/src/oci/service_mesh/models/ingress_gateway_host_ref.py index c7ea412cbd..c3f993a5c6 100644 --- a/src/oci/service_mesh/models/ingress_gateway_host_ref.py +++ b/src/oci/service_mesh/models/ingress_gateway_host_ref.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_listener.py b/src/oci/service_mesh/models/ingress_gateway_listener.py index b46998db9d..5b25097bc1 100644 --- a/src/oci/service_mesh/models/ingress_gateway_listener.py +++ b/src/oci/service_mesh/models/ingress_gateway_listener.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_mutual_transport_layer_security.py b/src/oci/service_mesh/models/ingress_gateway_mutual_transport_layer_security.py index 70e6ebef3c..7d6853e000 100644 --- a/src/oci/service_mesh/models/ingress_gateway_mutual_transport_layer_security.py +++ b/src/oci/service_mesh/models/ingress_gateway_mutual_transport_layer_security.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_mutual_transport_layer_security_details.py b/src/oci/service_mesh/models/ingress_gateway_mutual_transport_layer_security_details.py index bd3379c649..148c8ef872 100644 --- a/src/oci/service_mesh/models/ingress_gateway_mutual_transport_layer_security_details.py +++ b/src/oci/service_mesh/models/ingress_gateway_mutual_transport_layer_security_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_route_table.py b/src/oci/service_mesh/models/ingress_gateway_route_table.py index c6345bf64d..8cad18cb43 100644 --- a/src/oci/service_mesh/models/ingress_gateway_route_table.py +++ b/src/oci/service_mesh/models/ingress_gateway_route_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_route_table_collection.py b/src/oci/service_mesh/models/ingress_gateway_route_table_collection.py index 7459b2295c..a05171153b 100644 --- a/src/oci/service_mesh/models/ingress_gateway_route_table_collection.py +++ b/src/oci/service_mesh/models/ingress_gateway_route_table_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_route_table_summary.py b/src/oci/service_mesh/models/ingress_gateway_route_table_summary.py index e371e1ee0d..1962a97702 100644 --- a/src/oci/service_mesh/models/ingress_gateway_route_table_summary.py +++ b/src/oci/service_mesh/models/ingress_gateway_route_table_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_summary.py b/src/oci/service_mesh/models/ingress_gateway_summary.py index cdc7a5c43b..a43aefe6bf 100644 --- a/src/oci/service_mesh/models/ingress_gateway_summary.py +++ b/src/oci/service_mesh/models/ingress_gateway_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_traffic_route_rule.py b/src/oci/service_mesh/models/ingress_gateway_traffic_route_rule.py index 56fc1e039f..a687757853 100644 --- a/src/oci/service_mesh/models/ingress_gateway_traffic_route_rule.py +++ b/src/oci/service_mesh/models/ingress_gateway_traffic_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_gateway_traffic_route_rule_details.py b/src/oci/service_mesh/models/ingress_gateway_traffic_route_rule_details.py index 02a211afec..bf4065e886 100644 --- a/src/oci/service_mesh/models/ingress_gateway_traffic_route_rule_details.py +++ b/src/oci/service_mesh/models/ingress_gateway_traffic_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_listener_client_validation_config.py b/src/oci/service_mesh/models/ingress_listener_client_validation_config.py index 879bd3eb09..71e1847711 100644 --- a/src/oci/service_mesh/models/ingress_listener_client_validation_config.py +++ b/src/oci/service_mesh/models/ingress_listener_client_validation_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/ingress_listener_tls_config.py b/src/oci/service_mesh/models/ingress_listener_tls_config.py index 5977b0345f..787cd840ed 100644 --- a/src/oci/service_mesh/models/ingress_listener_tls_config.py +++ b/src/oci/service_mesh/models/ingress_listener_tls_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/local_file_ca_bundle.py b/src/oci/service_mesh/models/local_file_ca_bundle.py index f43689486c..173dd1db1d 100644 --- a/src/oci/service_mesh/models/local_file_ca_bundle.py +++ b/src/oci/service_mesh/models/local_file_ca_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/local_file_tls_certificate.py b/src/oci/service_mesh/models/local_file_tls_certificate.py index 4674ef12fe..03b5dd19ae 100644 --- a/src/oci/service_mesh/models/local_file_tls_certificate.py +++ b/src/oci/service_mesh/models/local_file_tls_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/mesh.py b/src/oci/service_mesh/models/mesh.py index 038a82567e..cf6c91bcc7 100644 --- a/src/oci/service_mesh/models/mesh.py +++ b/src/oci/service_mesh/models/mesh.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/mesh_collection.py b/src/oci/service_mesh/models/mesh_collection.py index 5da3f39376..c349a6f46b 100644 --- a/src/oci/service_mesh/models/mesh_collection.py +++ b/src/oci/service_mesh/models/mesh_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/mesh_mutual_transport_layer_security.py b/src/oci/service_mesh/models/mesh_mutual_transport_layer_security.py index af202a1814..7ea181a429 100644 --- a/src/oci/service_mesh/models/mesh_mutual_transport_layer_security.py +++ b/src/oci/service_mesh/models/mesh_mutual_transport_layer_security.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/mesh_summary.py b/src/oci/service_mesh/models/mesh_summary.py index b71b891b00..448ec5debb 100644 --- a/src/oci/service_mesh/models/mesh_summary.py +++ b/src/oci/service_mesh/models/mesh_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/mutual_transport_layer_security.py b/src/oci/service_mesh/models/mutual_transport_layer_security.py index 722b032293..74ea6cde07 100644 --- a/src/oci/service_mesh/models/mutual_transport_layer_security.py +++ b/src/oci/service_mesh/models/mutual_transport_layer_security.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/oci_ca_bundle.py b/src/oci/service_mesh/models/oci_ca_bundle.py index 172decac54..bc160be708 100644 --- a/src/oci/service_mesh/models/oci_ca_bundle.py +++ b/src/oci/service_mesh/models/oci_ca_bundle.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/oci_tls_certificate.py b/src/oci/service_mesh/models/oci_tls_certificate.py index d3ee64543c..6c32437cf7 100644 --- a/src/oci/service_mesh/models/oci_tls_certificate.py +++ b/src/oci/service_mesh/models/oci_tls_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/proxy_details.py b/src/oci/service_mesh/models/proxy_details.py index 133bbbd5b7..b93b5ba352 100644 --- a/src/oci/service_mesh/models/proxy_details.py +++ b/src/oci/service_mesh/models/proxy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/service_discovery_configuration.py b/src/oci/service_mesh/models/service_discovery_configuration.py index a516f93b12..b4c862a117 100644 --- a/src/oci/service_mesh/models/service_discovery_configuration.py +++ b/src/oci/service_mesh/models/service_discovery_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/tcp_ingress_gateway_traffic_route_rule.py b/src/oci/service_mesh/models/tcp_ingress_gateway_traffic_route_rule.py index ee0c9752d7..9e424f7703 100644 --- a/src/oci/service_mesh/models/tcp_ingress_gateway_traffic_route_rule.py +++ b/src/oci/service_mesh/models/tcp_ingress_gateway_traffic_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/tcp_ingress_gateway_traffic_route_rule_details.py b/src/oci/service_mesh/models/tcp_ingress_gateway_traffic_route_rule_details.py index d142dc301a..d509d483c4 100644 --- a/src/oci/service_mesh/models/tcp_ingress_gateway_traffic_route_rule_details.py +++ b/src/oci/service_mesh/models/tcp_ingress_gateway_traffic_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/tcp_virtual_service_traffic_route_rule.py b/src/oci/service_mesh/models/tcp_virtual_service_traffic_route_rule.py index f2913ee5fa..fa81f4ac3c 100644 --- a/src/oci/service_mesh/models/tcp_virtual_service_traffic_route_rule.py +++ b/src/oci/service_mesh/models/tcp_virtual_service_traffic_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/tcp_virtual_service_traffic_route_rule_details.py b/src/oci/service_mesh/models/tcp_virtual_service_traffic_route_rule_details.py index d40f3dd518..302aa5192a 100644 --- a/src/oci/service_mesh/models/tcp_virtual_service_traffic_route_rule_details.py +++ b/src/oci/service_mesh/models/tcp_virtual_service_traffic_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/tls_certificate.py b/src/oci/service_mesh/models/tls_certificate.py index 3b3ab05018..70c40f827e 100644 --- a/src/oci/service_mesh/models/tls_certificate.py +++ b/src/oci/service_mesh/models/tls_certificate.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/tls_passthrough_ingress_gateway_traffic_route_rule.py b/src/oci/service_mesh/models/tls_passthrough_ingress_gateway_traffic_route_rule.py index 8df44a1851..5671d35cf5 100644 --- a/src/oci/service_mesh/models/tls_passthrough_ingress_gateway_traffic_route_rule.py +++ b/src/oci/service_mesh/models/tls_passthrough_ingress_gateway_traffic_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/tls_passthrough_ingress_gateway_traffic_route_rule_details.py b/src/oci/service_mesh/models/tls_passthrough_ingress_gateway_traffic_route_rule_details.py index 2cfc1bcffa..069a76744c 100644 --- a/src/oci/service_mesh/models/tls_passthrough_ingress_gateway_traffic_route_rule_details.py +++ b/src/oci/service_mesh/models/tls_passthrough_ingress_gateway_traffic_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/tls_passthrough_virtual_service_traffic_route_rule.py b/src/oci/service_mesh/models/tls_passthrough_virtual_service_traffic_route_rule.py index d35db95226..1e7eb7300b 100644 --- a/src/oci/service_mesh/models/tls_passthrough_virtual_service_traffic_route_rule.py +++ b/src/oci/service_mesh/models/tls_passthrough_virtual_service_traffic_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/tls_passthrough_virtual_service_traffic_route_rule_details.py b/src/oci/service_mesh/models/tls_passthrough_virtual_service_traffic_route_rule_details.py index 61282917c0..c328cf2bb3 100644 --- a/src/oci/service_mesh/models/tls_passthrough_virtual_service_traffic_route_rule_details.py +++ b/src/oci/service_mesh/models/tls_passthrough_virtual_service_traffic_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/traffic_rule_target.py b/src/oci/service_mesh/models/traffic_rule_target.py index 7db975ea8f..e71ee88d0b 100644 --- a/src/oci/service_mesh/models/traffic_rule_target.py +++ b/src/oci/service_mesh/models/traffic_rule_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/traffic_rule_target_details.py b/src/oci/service_mesh/models/traffic_rule_target_details.py index 98acd84c5e..952c7a2c63 100644 --- a/src/oci/service_mesh/models/traffic_rule_target_details.py +++ b/src/oci/service_mesh/models/traffic_rule_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/update_access_policy_details.py b/src/oci/service_mesh/models/update_access_policy_details.py index b5c9da65ac..a1ee81c9cf 100644 --- a/src/oci/service_mesh/models/update_access_policy_details.py +++ b/src/oci/service_mesh/models/update_access_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/update_ingress_gateway_details.py b/src/oci/service_mesh/models/update_ingress_gateway_details.py index 79dc088f93..7b63711947 100644 --- a/src/oci/service_mesh/models/update_ingress_gateway_details.py +++ b/src/oci/service_mesh/models/update_ingress_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/update_ingress_gateway_route_table_details.py b/src/oci/service_mesh/models/update_ingress_gateway_route_table_details.py index 9a47ba50d5..c93fe6bda1 100644 --- a/src/oci/service_mesh/models/update_ingress_gateway_route_table_details.py +++ b/src/oci/service_mesh/models/update_ingress_gateway_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/update_mesh_details.py b/src/oci/service_mesh/models/update_mesh_details.py index cab7c48fce..cedbf5132d 100644 --- a/src/oci/service_mesh/models/update_mesh_details.py +++ b/src/oci/service_mesh/models/update_mesh_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/update_virtual_deployment_details.py b/src/oci/service_mesh/models/update_virtual_deployment_details.py index c42136d730..928786224b 100644 --- a/src/oci/service_mesh/models/update_virtual_deployment_details.py +++ b/src/oci/service_mesh/models/update_virtual_deployment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/update_virtual_service_details.py b/src/oci/service_mesh/models/update_virtual_service_details.py index 8729fd909f..ac13dcb80e 100644 --- a/src/oci/service_mesh/models/update_virtual_service_details.py +++ b/src/oci/service_mesh/models/update_virtual_service_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/update_virtual_service_route_table_details.py b/src/oci/service_mesh/models/update_virtual_service_route_table_details.py index c8110ffc34..b5287c7011 100644 --- a/src/oci/service_mesh/models/update_virtual_service_route_table_details.py +++ b/src/oci/service_mesh/models/update_virtual_service_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_deployment.py b/src/oci/service_mesh/models/virtual_deployment.py index 21fd21ee54..cace24bbd9 100644 --- a/src/oci/service_mesh/models/virtual_deployment.py +++ b/src/oci/service_mesh/models/virtual_deployment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_deployment_collection.py b/src/oci/service_mesh/models/virtual_deployment_collection.py index a37b91d1f7..7d8b44edd0 100644 --- a/src/oci/service_mesh/models/virtual_deployment_collection.py +++ b/src/oci/service_mesh/models/virtual_deployment_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_deployment_listener.py b/src/oci/service_mesh/models/virtual_deployment_listener.py index 045886742e..d2bac0972a 100644 --- a/src/oci/service_mesh/models/virtual_deployment_listener.py +++ b/src/oci/service_mesh/models/virtual_deployment_listener.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_deployment_summary.py b/src/oci/service_mesh/models/virtual_deployment_summary.py index 37593a3ab8..264bce2781 100644 --- a/src/oci/service_mesh/models/virtual_deployment_summary.py +++ b/src/oci/service_mesh/models/virtual_deployment_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_deployment_traffic_rule_target.py b/src/oci/service_mesh/models/virtual_deployment_traffic_rule_target.py index 1a11a40e03..6ad72288fa 100644 --- a/src/oci/service_mesh/models/virtual_deployment_traffic_rule_target.py +++ b/src/oci/service_mesh/models/virtual_deployment_traffic_rule_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_deployment_traffic_rule_target_details.py b/src/oci/service_mesh/models/virtual_deployment_traffic_rule_target_details.py index 1a194a72d3..b469c9b524 100644 --- a/src/oci/service_mesh/models/virtual_deployment_traffic_rule_target_details.py +++ b/src/oci/service_mesh/models/virtual_deployment_traffic_rule_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service.py b/src/oci/service_mesh/models/virtual_service.py index ae9f5bb869..3320cfc6c7 100644 --- a/src/oci/service_mesh/models/virtual_service.py +++ b/src/oci/service_mesh/models/virtual_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_access_policy_target.py b/src/oci/service_mesh/models/virtual_service_access_policy_target.py index 5ebde20faa..ff4c42fb63 100644 --- a/src/oci/service_mesh/models/virtual_service_access_policy_target.py +++ b/src/oci/service_mesh/models/virtual_service_access_policy_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_access_policy_target_details.py b/src/oci/service_mesh/models/virtual_service_access_policy_target_details.py index 6b60a42d3e..d653c609fe 100644 --- a/src/oci/service_mesh/models/virtual_service_access_policy_target_details.py +++ b/src/oci/service_mesh/models/virtual_service_access_policy_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_collection.py b/src/oci/service_mesh/models/virtual_service_collection.py index e1808f7f4e..dcd1ff869a 100644 --- a/src/oci/service_mesh/models/virtual_service_collection.py +++ b/src/oci/service_mesh/models/virtual_service_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_mutual_transport_layer_security_details.py b/src/oci/service_mesh/models/virtual_service_mutual_transport_layer_security_details.py index 44ee092571..195d892bf6 100644 --- a/src/oci/service_mesh/models/virtual_service_mutual_transport_layer_security_details.py +++ b/src/oci/service_mesh/models/virtual_service_mutual_transport_layer_security_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_route_table.py b/src/oci/service_mesh/models/virtual_service_route_table.py index a6bf5bbb61..3dd1741493 100644 --- a/src/oci/service_mesh/models/virtual_service_route_table.py +++ b/src/oci/service_mesh/models/virtual_service_route_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_route_table_collection.py b/src/oci/service_mesh/models/virtual_service_route_table_collection.py index 45d0cea698..fe6a2ab79b 100644 --- a/src/oci/service_mesh/models/virtual_service_route_table_collection.py +++ b/src/oci/service_mesh/models/virtual_service_route_table_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_route_table_summary.py b/src/oci/service_mesh/models/virtual_service_route_table_summary.py index 89915d1998..e65997f82f 100644 --- a/src/oci/service_mesh/models/virtual_service_route_table_summary.py +++ b/src/oci/service_mesh/models/virtual_service_route_table_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_summary.py b/src/oci/service_mesh/models/virtual_service_summary.py index 11c8c5ce99..b4ab265144 100644 --- a/src/oci/service_mesh/models/virtual_service_summary.py +++ b/src/oci/service_mesh/models/virtual_service_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_traffic_route_rule.py b/src/oci/service_mesh/models/virtual_service_traffic_route_rule.py index 02254230a9..1601ea7505 100644 --- a/src/oci/service_mesh/models/virtual_service_traffic_route_rule.py +++ b/src/oci/service_mesh/models/virtual_service_traffic_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_traffic_route_rule_details.py b/src/oci/service_mesh/models/virtual_service_traffic_route_rule_details.py index 8bbbd09f56..994f18824b 100644 --- a/src/oci/service_mesh/models/virtual_service_traffic_route_rule_details.py +++ b/src/oci/service_mesh/models/virtual_service_traffic_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_traffic_rule_target.py b/src/oci/service_mesh/models/virtual_service_traffic_rule_target.py index 47b8d1f803..350c1fc5a3 100644 --- a/src/oci/service_mesh/models/virtual_service_traffic_rule_target.py +++ b/src/oci/service_mesh/models/virtual_service_traffic_rule_target.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/virtual_service_traffic_rule_target_details.py b/src/oci/service_mesh/models/virtual_service_traffic_rule_target_details.py index 49132396f4..4c71928b20 100644 --- a/src/oci/service_mesh/models/virtual_service_traffic_rule_target_details.py +++ b/src/oci/service_mesh/models/virtual_service_traffic_rule_target_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/work_request.py b/src/oci/service_mesh/models/work_request.py index 3c9459f56a..2ff854f0cb 100644 --- a/src/oci/service_mesh/models/work_request.py +++ b/src/oci/service_mesh/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/work_request_collection.py b/src/oci/service_mesh/models/work_request_collection.py index baf1cfed71..aac32c5585 100644 --- a/src/oci/service_mesh/models/work_request_collection.py +++ b/src/oci/service_mesh/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/work_request_error.py b/src/oci/service_mesh/models/work_request_error.py index 62867554c0..f12b2fbbf2 100644 --- a/src/oci/service_mesh/models/work_request_error.py +++ b/src/oci/service_mesh/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/work_request_error_collection.py b/src/oci/service_mesh/models/work_request_error_collection.py index ad01182634..46b1dce507 100644 --- a/src/oci/service_mesh/models/work_request_error_collection.py +++ b/src/oci/service_mesh/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/work_request_log_entry.py b/src/oci/service_mesh/models/work_request_log_entry.py index 44a4f8a757..f903b3b106 100644 --- a/src/oci/service_mesh/models/work_request_log_entry.py +++ b/src/oci/service_mesh/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/work_request_log_entry_collection.py b/src/oci/service_mesh/models/work_request_log_entry_collection.py index 2d4dd5b633..3d467da104 100644 --- a/src/oci/service_mesh/models/work_request_log_entry_collection.py +++ b/src/oci/service_mesh/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/work_request_resource.py b/src/oci/service_mesh/models/work_request_resource.py index e1b3b80d18..46d7b51dde 100644 --- a/src/oci/service_mesh/models/work_request_resource.py +++ b/src/oci/service_mesh/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/models/work_request_summary.py b/src/oci/service_mesh/models/work_request_summary.py index 8ed607c2cf..520c932a90 100644 --- a/src/oci/service_mesh/models/work_request_summary.py +++ b/src/oci/service_mesh/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/service_mesh_client.py b/src/oci/service_mesh/service_mesh_client.py index 5b654b2daa..0ffd6cff74 100644 --- a/src/oci/service_mesh/service_mesh_client.py +++ b/src/oci/service_mesh/service_mesh_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/service_mesh/service_mesh_client_composite_operations.py b/src/oci/service_mesh/service_mesh_client_composite_operations.py index 102a862b20..10406a25e8 100644 --- a/src/oci/service_mesh/service_mesh_client_composite_operations.py +++ b/src/oci/service_mesh/service_mesh_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220615 diff --git a/src/oci/signer.py b/src/oci/signer.py index 325bff5917..03e472598b 100644 --- a/src/oci/signer.py +++ b/src/oci/signer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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/stack_monitoring/__init__.py b/src/oci/stack_monitoring/__init__.py index 907d758771..82b3ac2970 100644 --- a/src/oci/stack_monitoring/__init__.py +++ b/src/oci/stack_monitoring/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/__init__.py b/src/oci/stack_monitoring/models/__init__.py index 88f4595ab1..b9f520d989 100644 --- a/src/oci/stack_monitoring/models/__init__.py +++ b/src/oci/stack_monitoring/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/anomaly_data_point.py b/src/oci/stack_monitoring/models/anomaly_data_point.py index f323d1ce4f..f485bb5240 100644 --- a/src/oci/stack_monitoring/models/anomaly_data_point.py +++ b/src/oci/stack_monitoring/models/anomaly_data_point.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/anomaly_metric_data.py b/src/oci/stack_monitoring/models/anomaly_metric_data.py index 35a8e0bc32..b609f79034 100644 --- a/src/oci/stack_monitoring/models/anomaly_metric_data.py +++ b/src/oci/stack_monitoring/models/anomaly_metric_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/associate_monitored_resources_details.py b/src/oci/stack_monitoring/models/associate_monitored_resources_details.py index 2da44ad7ab..9d30899443 100644 --- a/src/oci/stack_monitoring/models/associate_monitored_resources_details.py +++ b/src/oci/stack_monitoring/models/associate_monitored_resources_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/associated_monitored_resource.py b/src/oci/stack_monitoring/models/associated_monitored_resource.py index 9fc75833be..495ca73d3c 100644 --- a/src/oci/stack_monitoring/models/associated_monitored_resource.py +++ b/src/oci/stack_monitoring/models/associated_monitored_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/associated_resources_collection.py b/src/oci/stack_monitoring/models/associated_resources_collection.py index f5150f0049..9978e44c4e 100644 --- a/src/oci/stack_monitoring/models/associated_resources_collection.py +++ b/src/oci/stack_monitoring/models/associated_resources_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/associated_resources_summary.py b/src/oci/stack_monitoring/models/associated_resources_summary.py index d1c197cd9c..1e6110280a 100644 --- a/src/oci/stack_monitoring/models/associated_resources_summary.py +++ b/src/oci/stack_monitoring/models/associated_resources_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/association_details.py b/src/oci/stack_monitoring/models/association_details.py index 3308555093..409745788e 100644 --- a/src/oci/stack_monitoring/models/association_details.py +++ b/src/oci/stack_monitoring/models/association_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/association_resource_details.py b/src/oci/stack_monitoring/models/association_resource_details.py index ea3cb5326f..6abeca5a71 100644 --- a/src/oci/stack_monitoring/models/association_resource_details.py +++ b/src/oci/stack_monitoring/models/association_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/auto_promote_config_details.py b/src/oci/stack_monitoring/models/auto_promote_config_details.py index c607dd83f4..0638c6db32 100644 --- a/src/oci/stack_monitoring/models/auto_promote_config_details.py +++ b/src/oci/stack_monitoring/models/auto_promote_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/auto_promote_config_summary.py b/src/oci/stack_monitoring/models/auto_promote_config_summary.py index 77f9d12dcb..6412abfa97 100644 --- a/src/oci/stack_monitoring/models/auto_promote_config_summary.py +++ b/src/oci/stack_monitoring/models/auto_promote_config_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/baselineable_metric.py b/src/oci/stack_monitoring/models/baselineable_metric.py index ee51c96eef..f59da80201 100644 --- a/src/oci/stack_monitoring/models/baselineable_metric.py +++ b/src/oci/stack_monitoring/models/baselineable_metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/baselineable_metric_summary.py b/src/oci/stack_monitoring/models/baselineable_metric_summary.py index b46d67420c..fb69573d15 100644 --- a/src/oci/stack_monitoring/models/baselineable_metric_summary.py +++ b/src/oci/stack_monitoring/models/baselineable_metric_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/baselineable_metric_summary_collection.py b/src/oci/stack_monitoring/models/baselineable_metric_summary_collection.py index 649d7922ae..da4762f695 100644 --- a/src/oci/stack_monitoring/models/baselineable_metric_summary_collection.py +++ b/src/oci/stack_monitoring/models/baselineable_metric_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/change_config_compartment_details.py b/src/oci/stack_monitoring/models/change_config_compartment_details.py index a54cf7fdb6..fa1dcbeb6c 100644 --- a/src/oci/stack_monitoring/models/change_config_compartment_details.py +++ b/src/oci/stack_monitoring/models/change_config_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/change_metric_extension_compartment_details.py b/src/oci/stack_monitoring/models/change_metric_extension_compartment_details.py index 400943171b..3f33b24089 100644 --- a/src/oci/stack_monitoring/models/change_metric_extension_compartment_details.py +++ b/src/oci/stack_monitoring/models/change_metric_extension_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/change_monitored_resource_compartment_details.py b/src/oci/stack_monitoring/models/change_monitored_resource_compartment_details.py index 203b104f5a..45e3ea7f92 100644 --- a/src/oci/stack_monitoring/models/change_monitored_resource_compartment_details.py +++ b/src/oci/stack_monitoring/models/change_monitored_resource_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/change_monitored_resource_task_compartment_details.py b/src/oci/stack_monitoring/models/change_monitored_resource_task_compartment_details.py index fea2cd24d3..03e74a352e 100644 --- a/src/oci/stack_monitoring/models/change_monitored_resource_task_compartment_details.py +++ b/src/oci/stack_monitoring/models/change_monitored_resource_task_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/change_process_set_compartment_details.py b/src/oci/stack_monitoring/models/change_process_set_compartment_details.py index 586efb6328..0be7eb15fb 100644 --- a/src/oci/stack_monitoring/models/change_process_set_compartment_details.py +++ b/src/oci/stack_monitoring/models/change_process_set_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/config.py b/src/oci/stack_monitoring/models/config.py index 7ca114c592..de52a90d40 100644 --- a/src/oci/stack_monitoring/models/config.py +++ b/src/oci/stack_monitoring/models/config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/config_collection.py b/src/oci/stack_monitoring/models/config_collection.py index 678fca77e9..c406d37e76 100644 --- a/src/oci/stack_monitoring/models/config_collection.py +++ b/src/oci/stack_monitoring/models/config_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/config_summary.py b/src/oci/stack_monitoring/models/config_summary.py index 71638a2a06..d6f84d525d 100644 --- a/src/oci/stack_monitoring/models/config_summary.py +++ b/src/oci/stack_monitoring/models/config_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/connection_details.py b/src/oci/stack_monitoring/models/connection_details.py index 8577644647..ea8576f463 100644 --- a/src/oci/stack_monitoring/models/connection_details.py +++ b/src/oci/stack_monitoring/models/connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_auto_promote_config_details.py b/src/oci/stack_monitoring/models/create_auto_promote_config_details.py index bdf2ef6183..1a6013e48a 100644 --- a/src/oci/stack_monitoring/models/create_auto_promote_config_details.py +++ b/src/oci/stack_monitoring/models/create_auto_promote_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_baselineable_metric_details.py b/src/oci/stack_monitoring/models/create_baselineable_metric_details.py index 2fce69ff60..7af2b8509d 100644 --- a/src/oci/stack_monitoring/models/create_baselineable_metric_details.py +++ b/src/oci/stack_monitoring/models/create_baselineable_metric_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_config_details.py b/src/oci/stack_monitoring/models/create_config_details.py index 83160a1e5c..522338b010 100644 --- a/src/oci/stack_monitoring/models/create_config_details.py +++ b/src/oci/stack_monitoring/models/create_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_discovery_job_details.py b/src/oci/stack_monitoring/models/create_discovery_job_details.py index 3f6257c000..7a5c09a8f9 100644 --- a/src/oci/stack_monitoring/models/create_discovery_job_details.py +++ b/src/oci/stack_monitoring/models/create_discovery_job_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_license_auto_assign_config_details.py b/src/oci/stack_monitoring/models/create_license_auto_assign_config_details.py index c4b8e7b370..b85dcb814c 100644 --- a/src/oci/stack_monitoring/models/create_license_auto_assign_config_details.py +++ b/src/oci/stack_monitoring/models/create_license_auto_assign_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_license_enterprise_extensibility_config_details.py b/src/oci/stack_monitoring/models/create_license_enterprise_extensibility_config_details.py index 1886152c27..d07eeafd66 100644 --- a/src/oci/stack_monitoring/models/create_license_enterprise_extensibility_config_details.py +++ b/src/oci/stack_monitoring/models/create_license_enterprise_extensibility_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_maintenance_window_details.py b/src/oci/stack_monitoring/models/create_maintenance_window_details.py index 7ddb290b2c..df7b99060e 100644 --- a/src/oci/stack_monitoring/models/create_maintenance_window_details.py +++ b/src/oci/stack_monitoring/models/create_maintenance_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_maintenance_window_resource_details.py b/src/oci/stack_monitoring/models/create_maintenance_window_resource_details.py index 3e3616b470..26cb329048 100644 --- a/src/oci/stack_monitoring/models/create_maintenance_window_resource_details.py +++ b/src/oci/stack_monitoring/models/create_maintenance_window_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_metric_extension_details.py b/src/oci/stack_monitoring/models/create_metric_extension_details.py index 505a26fa9e..eb25d35e67 100644 --- a/src/oci/stack_monitoring/models/create_metric_extension_details.py +++ b/src/oci/stack_monitoring/models/create_metric_extension_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_monitored_resource_details.py b/src/oci/stack_monitoring/models/create_monitored_resource_details.py index 2f910f9332..6dd38336b0 100644 --- a/src/oci/stack_monitoring/models/create_monitored_resource_details.py +++ b/src/oci/stack_monitoring/models/create_monitored_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_monitored_resource_task_details.py b/src/oci/stack_monitoring/models/create_monitored_resource_task_details.py index 569fbe8b84..81d9cab1f9 100644 --- a/src/oci/stack_monitoring/models/create_monitored_resource_task_details.py +++ b/src/oci/stack_monitoring/models/create_monitored_resource_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_monitored_resource_type_details.py b/src/oci/stack_monitoring/models/create_monitored_resource_type_details.py index 4f797c54ed..aca1237df6 100644 --- a/src/oci/stack_monitoring/models/create_monitored_resource_type_details.py +++ b/src/oci/stack_monitoring/models/create_monitored_resource_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/create_process_set_details.py b/src/oci/stack_monitoring/models/create_process_set_details.py index 6d913ff505..a981c64bed 100644 --- a/src/oci/stack_monitoring/models/create_process_set_details.py +++ b/src/oci/stack_monitoring/models/create_process_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/credential_collection.py b/src/oci/stack_monitoring/models/credential_collection.py index ea2853c393..f48d9bd448 100644 --- a/src/oci/stack_monitoring/models/credential_collection.py +++ b/src/oci/stack_monitoring/models/credential_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/credential_details.py b/src/oci/stack_monitoring/models/credential_details.py index 5f22e459ae..725a200f53 100644 --- a/src/oci/stack_monitoring/models/credential_details.py +++ b/src/oci/stack_monitoring/models/credential_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/credential_property.py b/src/oci/stack_monitoring/models/credential_property.py index 88d91ac88d..f450b5060f 100644 --- a/src/oci/stack_monitoring/models/credential_property.py +++ b/src/oci/stack_monitoring/models/credential_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/data_point.py b/src/oci/stack_monitoring/models/data_point.py index f56a649afb..4d0ca6d40b 100644 --- a/src/oci/stack_monitoring/models/data_point.py +++ b/src/oci/stack_monitoring/models/data_point.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/disable_metric_extension_details.py b/src/oci/stack_monitoring/models/disable_metric_extension_details.py index 7e193a4197..93763b5226 100644 --- a/src/oci/stack_monitoring/models/disable_metric_extension_details.py +++ b/src/oci/stack_monitoring/models/disable_metric_extension_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/disassociate_monitored_resources_details.py b/src/oci/stack_monitoring/models/disassociate_monitored_resources_details.py index fc18daede7..742efd3b0c 100644 --- a/src/oci/stack_monitoring/models/disassociate_monitored_resources_details.py +++ b/src/oci/stack_monitoring/models/disassociate_monitored_resources_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/discovery_details.py b/src/oci/stack_monitoring/models/discovery_details.py index 08a4a0b911..125eba9785 100644 --- a/src/oci/stack_monitoring/models/discovery_details.py +++ b/src/oci/stack_monitoring/models/discovery_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/discovery_job.py b/src/oci/stack_monitoring/models/discovery_job.py index a092d6f6d0..4f446c0d78 100644 --- a/src/oci/stack_monitoring/models/discovery_job.py +++ b/src/oci/stack_monitoring/models/discovery_job.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/discovery_job_collection.py b/src/oci/stack_monitoring/models/discovery_job_collection.py index 6aefe33973..baab2c2b31 100644 --- a/src/oci/stack_monitoring/models/discovery_job_collection.py +++ b/src/oci/stack_monitoring/models/discovery_job_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/discovery_job_log_collection.py b/src/oci/stack_monitoring/models/discovery_job_log_collection.py index 67d37992b0..b6f4953a39 100644 --- a/src/oci/stack_monitoring/models/discovery_job_log_collection.py +++ b/src/oci/stack_monitoring/models/discovery_job_log_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/discovery_job_log_summary.py b/src/oci/stack_monitoring/models/discovery_job_log_summary.py index 23e4bc7325..043a48dcdb 100644 --- a/src/oci/stack_monitoring/models/discovery_job_log_summary.py +++ b/src/oci/stack_monitoring/models/discovery_job_log_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/discovery_job_summary.py b/src/oci/stack_monitoring/models/discovery_job_summary.py index aa448f5873..e021e2f906 100644 --- a/src/oci/stack_monitoring/models/discovery_job_summary.py +++ b/src/oci/stack_monitoring/models/discovery_job_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/enable_metric_extension_details.py b/src/oci/stack_monitoring/models/enable_metric_extension_details.py index 1a5adcd21f..b1a058a49e 100644 --- a/src/oci/stack_monitoring/models/enable_metric_extension_details.py +++ b/src/oci/stack_monitoring/models/enable_metric_extension_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/enabled_resource_details.py b/src/oci/stack_monitoring/models/enabled_resource_details.py index 6d38946c48..aef90cdaf9 100644 --- a/src/oci/stack_monitoring/models/enabled_resource_details.py +++ b/src/oci/stack_monitoring/models/enabled_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/encrypted_credentials.py b/src/oci/stack_monitoring/models/encrypted_credentials.py index 3ddf65a6ed..958536e068 100644 --- a/src/oci/stack_monitoring/models/encrypted_credentials.py +++ b/src/oci/stack_monitoring/models/encrypted_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/evaluate_baselineable_metric_details.py b/src/oci/stack_monitoring/models/evaluate_baselineable_metric_details.py index 07ce719be7..be02598272 100644 --- a/src/oci/stack_monitoring/models/evaluate_baselineable_metric_details.py +++ b/src/oci/stack_monitoring/models/evaluate_baselineable_metric_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/evaluate_baselineable_metric_result.py b/src/oci/stack_monitoring/models/evaluate_baselineable_metric_result.py index 8d056ca644..efe7694cf0 100644 --- a/src/oci/stack_monitoring/models/evaluate_baselineable_metric_result.py +++ b/src/oci/stack_monitoring/models/evaluate_baselineable_metric_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/http_query_properties.py b/src/oci/stack_monitoring/models/http_query_properties.py index b3e6054709..31ecbfb2f1 100644 --- a/src/oci/stack_monitoring/models/http_query_properties.py +++ b/src/oci/stack_monitoring/models/http_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/http_script_file_details.py b/src/oci/stack_monitoring/models/http_script_file_details.py index 828d5d3e96..e9e74172d8 100644 --- a/src/oci/stack_monitoring/models/http_script_file_details.py +++ b/src/oci/stack_monitoring/models/http_script_file_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/http_update_query_properties.py b/src/oci/stack_monitoring/models/http_update_query_properties.py index f621c318b9..5b1cab151c 100644 --- a/src/oci/stack_monitoring/models/http_update_query_properties.py +++ b/src/oci/stack_monitoring/models/http_update_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/import_oci_telemetry_resources_task_details.py b/src/oci/stack_monitoring/models/import_oci_telemetry_resources_task_details.py index 04f6182d4f..e57a9764b0 100644 --- a/src/oci/stack_monitoring/models/import_oci_telemetry_resources_task_details.py +++ b/src/oci/stack_monitoring/models/import_oci_telemetry_resources_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/jmx_query_properties.py b/src/oci/stack_monitoring/models/jmx_query_properties.py index c4cc7cee49..e84ad989c4 100644 --- a/src/oci/stack_monitoring/models/jmx_query_properties.py +++ b/src/oci/stack_monitoring/models/jmx_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/jmx_update_query_properties.py b/src/oci/stack_monitoring/models/jmx_update_query_properties.py index 6485161b60..eb1af29993 100644 --- a/src/oci/stack_monitoring/models/jmx_update_query_properties.py +++ b/src/oci/stack_monitoring/models/jmx_update_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/license_auto_assign_config_details.py b/src/oci/stack_monitoring/models/license_auto_assign_config_details.py index cd16dae80b..80045bac36 100644 --- a/src/oci/stack_monitoring/models/license_auto_assign_config_details.py +++ b/src/oci/stack_monitoring/models/license_auto_assign_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/license_auto_assign_config_summary.py b/src/oci/stack_monitoring/models/license_auto_assign_config_summary.py index 72f0ce422d..4dc472a3e2 100644 --- a/src/oci/stack_monitoring/models/license_auto_assign_config_summary.py +++ b/src/oci/stack_monitoring/models/license_auto_assign_config_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/license_enterprise_extensibility_config_details.py b/src/oci/stack_monitoring/models/license_enterprise_extensibility_config_details.py index ebe83d6d70..52a1ae89ac 100644 --- a/src/oci/stack_monitoring/models/license_enterprise_extensibility_config_details.py +++ b/src/oci/stack_monitoring/models/license_enterprise_extensibility_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/license_enterprise_extensibility_config_summary.py b/src/oci/stack_monitoring/models/license_enterprise_extensibility_config_summary.py index 1a3c7b84fe..fc19999df4 100644 --- a/src/oci/stack_monitoring/models/license_enterprise_extensibility_config_summary.py +++ b/src/oci/stack_monitoring/models/license_enterprise_extensibility_config_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/maintenance_window.py b/src/oci/stack_monitoring/models/maintenance_window.py index 03fcf5ea49..939a690ac4 100644 --- a/src/oci/stack_monitoring/models/maintenance_window.py +++ b/src/oci/stack_monitoring/models/maintenance_window.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/maintenance_window_collection.py b/src/oci/stack_monitoring/models/maintenance_window_collection.py index 9b5642bdbe..584fd660aa 100644 --- a/src/oci/stack_monitoring/models/maintenance_window_collection.py +++ b/src/oci/stack_monitoring/models/maintenance_window_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/maintenance_window_schedule.py b/src/oci/stack_monitoring/models/maintenance_window_schedule.py index da964eaee4..b26c7ca327 100644 --- a/src/oci/stack_monitoring/models/maintenance_window_schedule.py +++ b/src/oci/stack_monitoring/models/maintenance_window_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/maintenance_window_summary.py b/src/oci/stack_monitoring/models/maintenance_window_summary.py index 79ed5fd9b9..2d3e2e6f71 100644 --- a/src/oci/stack_monitoring/models/maintenance_window_summary.py +++ b/src/oci/stack_monitoring/models/maintenance_window_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/manage_license_details.py b/src/oci/stack_monitoring/models/manage_license_details.py index 77403bd230..bf0d0c7095 100644 --- a/src/oci/stack_monitoring/models/manage_license_details.py +++ b/src/oci/stack_monitoring/models/manage_license_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/metric.py b/src/oci/stack_monitoring/models/metric.py index cd2c0fb21c..a9b5c0bfd8 100644 --- a/src/oci/stack_monitoring/models/metric.py +++ b/src/oci/stack_monitoring/models/metric.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/metric_data.py b/src/oci/stack_monitoring/models/metric_data.py index 3bd3b13df3..0ade4c52a2 100644 --- a/src/oci/stack_monitoring/models/metric_data.py +++ b/src/oci/stack_monitoring/models/metric_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/metric_extension.py b/src/oci/stack_monitoring/models/metric_extension.py index 7d3f8dde0d..7e1fd93dbc 100644 --- a/src/oci/stack_monitoring/models/metric_extension.py +++ b/src/oci/stack_monitoring/models/metric_extension.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/metric_extension_collection.py b/src/oci/stack_monitoring/models/metric_extension_collection.py index 174bdbc46f..073070a169 100644 --- a/src/oci/stack_monitoring/models/metric_extension_collection.py +++ b/src/oci/stack_monitoring/models/metric_extension_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/metric_extension_query_properties.py b/src/oci/stack_monitoring/models/metric_extension_query_properties.py index 4355b4a53c..460e94ec17 100644 --- a/src/oci/stack_monitoring/models/metric_extension_query_properties.py +++ b/src/oci/stack_monitoring/models/metric_extension_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/metric_extension_summary.py b/src/oci/stack_monitoring/models/metric_extension_summary.py index 60c45a49de..4e53c3007f 100644 --- a/src/oci/stack_monitoring/models/metric_extension_summary.py +++ b/src/oci/stack_monitoring/models/metric_extension_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/metric_extension_update_query_properties.py b/src/oci/stack_monitoring/models/metric_extension_update_query_properties.py index a290ed370b..e43ce0eea2 100644 --- a/src/oci/stack_monitoring/models/metric_extension_update_query_properties.py +++ b/src/oci/stack_monitoring/models/metric_extension_update_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource.py b/src/oci/stack_monitoring/models/monitored_resource.py index 8561074bb4..1a95609263 100644 --- a/src/oci/stack_monitoring/models/monitored_resource.py +++ b/src/oci/stack_monitoring/models/monitored_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_alias_credential.py b/src/oci/stack_monitoring/models/monitored_resource_alias_credential.py index 26ddf8c896..b92d80dcf7 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_alias_credential.py +++ b/src/oci/stack_monitoring/models/monitored_resource_alias_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_alias_source_credential.py b/src/oci/stack_monitoring/models/monitored_resource_alias_source_credential.py index e5f109dd9d..392027141c 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_alias_source_credential.py +++ b/src/oci/stack_monitoring/models/monitored_resource_alias_source_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_association.py b/src/oci/stack_monitoring/models/monitored_resource_association.py index f71cbef791..352544a789 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_association.py +++ b/src/oci/stack_monitoring/models/monitored_resource_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_association_summary.py b/src/oci/stack_monitoring/models/monitored_resource_association_summary.py index 50ccef629e..4f6d4e3f04 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_association_summary.py +++ b/src/oci/stack_monitoring/models/monitored_resource_association_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_associations_collection.py b/src/oci/stack_monitoring/models/monitored_resource_associations_collection.py index a5aa26955a..eb6302bb0f 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_associations_collection.py +++ b/src/oci/stack_monitoring/models/monitored_resource_associations_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_collection.py b/src/oci/stack_monitoring/models/monitored_resource_collection.py index 5a891c0724..c23b53889a 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_collection.py +++ b/src/oci/stack_monitoring/models/monitored_resource_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_credential.py b/src/oci/stack_monitoring/models/monitored_resource_credential.py index 2aff865f34..e191595b1c 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_credential.py +++ b/src/oci/stack_monitoring/models/monitored_resource_credential.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_details.py b/src/oci/stack_monitoring/models/monitored_resource_details.py index a6e9b1c951..cbae41709e 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_details.py +++ b/src/oci/stack_monitoring/models/monitored_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_member_summary.py b/src/oci/stack_monitoring/models/monitored_resource_member_summary.py index c577ab72cd..502f2411d6 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_member_summary.py +++ b/src/oci/stack_monitoring/models/monitored_resource_member_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_members_collection.py b/src/oci/stack_monitoring/models/monitored_resource_members_collection.py index 08f42788dd..21235b7be8 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_members_collection.py +++ b/src/oci/stack_monitoring/models/monitored_resource_members_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_property.py b/src/oci/stack_monitoring/models/monitored_resource_property.py index 8ee7033b4b..bbc750a4e9 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_property.py +++ b/src/oci/stack_monitoring/models/monitored_resource_property.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_summary.py b/src/oci/stack_monitoring/models/monitored_resource_summary.py index 62a976cd38..21dcd949cb 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_summary.py +++ b/src/oci/stack_monitoring/models/monitored_resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_task.py b/src/oci/stack_monitoring/models/monitored_resource_task.py index b367da606d..d7c3598dc5 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_task.py +++ b/src/oci/stack_monitoring/models/monitored_resource_task.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_task_details.py b/src/oci/stack_monitoring/models/monitored_resource_task_details.py index a844279af7..976f34f32c 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_task_details.py +++ b/src/oci/stack_monitoring/models/monitored_resource_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_task_summary.py b/src/oci/stack_monitoring/models/monitored_resource_task_summary.py index dd204e8ee0..6637ae0956 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_task_summary.py +++ b/src/oci/stack_monitoring/models/monitored_resource_task_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_tasks_collection.py b/src/oci/stack_monitoring/models/monitored_resource_tasks_collection.py index caa7dbd698..f0be4cae3c 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_tasks_collection.py +++ b/src/oci/stack_monitoring/models/monitored_resource_tasks_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_type.py b/src/oci/stack_monitoring/models/monitored_resource_type.py index 5b01775ba7..d33f91c1b1 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_type.py +++ b/src/oci/stack_monitoring/models/monitored_resource_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_type_summary.py b/src/oci/stack_monitoring/models/monitored_resource_type_summary.py index cfe7224a9b..accf668f8c 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_type_summary.py +++ b/src/oci/stack_monitoring/models/monitored_resource_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resource_types_collection.py b/src/oci/stack_monitoring/models/monitored_resource_types_collection.py index ccdb1a272b..2ca578959f 100644 --- a/src/oci/stack_monitoring/models/monitored_resource_types_collection.py +++ b/src/oci/stack_monitoring/models/monitored_resource_types_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resources_count_aggregation.py b/src/oci/stack_monitoring/models/monitored_resources_count_aggregation.py index e86bd3cbf8..18e799249e 100644 --- a/src/oci/stack_monitoring/models/monitored_resources_count_aggregation.py +++ b/src/oci/stack_monitoring/models/monitored_resources_count_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/monitored_resources_count_aggregation_collection.py b/src/oci/stack_monitoring/models/monitored_resources_count_aggregation_collection.py index 1d3916dfa2..2081f95e20 100644 --- a/src/oci/stack_monitoring/models/monitored_resources_count_aggregation_collection.py +++ b/src/oci/stack_monitoring/models/monitored_resources_count_aggregation_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/one_time_maintenance_window_schedule.py b/src/oci/stack_monitoring/models/one_time_maintenance_window_schedule.py index cb2da9ddc3..06de9ca65a 100644 --- a/src/oci/stack_monitoring/models/one_time_maintenance_window_schedule.py +++ b/src/oci/stack_monitoring/models/one_time_maintenance_window_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/os_command_query_properties.py b/src/oci/stack_monitoring/models/os_command_query_properties.py index acae61da26..4d32d3b670 100644 --- a/src/oci/stack_monitoring/models/os_command_query_properties.py +++ b/src/oci/stack_monitoring/models/os_command_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/os_command_update_query_properties.py b/src/oci/stack_monitoring/models/os_command_update_query_properties.py index ceb9ac6d75..5529c6aaf4 100644 --- a/src/oci/stack_monitoring/models/os_command_update_query_properties.py +++ b/src/oci/stack_monitoring/models/os_command_update_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/plain_text_credentials.py b/src/oci/stack_monitoring/models/plain_text_credentials.py index fd7bf36156..17a2b1e3de 100644 --- a/src/oci/stack_monitoring/models/plain_text_credentials.py +++ b/src/oci/stack_monitoring/models/plain_text_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/pre_existing_credentials.py b/src/oci/stack_monitoring/models/pre_existing_credentials.py index dbbd299034..4628095ebf 100644 --- a/src/oci/stack_monitoring/models/pre_existing_credentials.py +++ b/src/oci/stack_monitoring/models/pre_existing_credentials.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/process_set.py b/src/oci/stack_monitoring/models/process_set.py index c758ff2405..cbafa3c7db 100644 --- a/src/oci/stack_monitoring/models/process_set.py +++ b/src/oci/stack_monitoring/models/process_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/process_set_collection.py b/src/oci/stack_monitoring/models/process_set_collection.py index e954021f92..c3ee529732 100644 --- a/src/oci/stack_monitoring/models/process_set_collection.py +++ b/src/oci/stack_monitoring/models/process_set_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/process_set_specification.py b/src/oci/stack_monitoring/models/process_set_specification.py index a650547f6a..49c6ea45cd 100644 --- a/src/oci/stack_monitoring/models/process_set_specification.py +++ b/src/oci/stack_monitoring/models/process_set_specification.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/process_set_specification_details.py b/src/oci/stack_monitoring/models/process_set_specification_details.py index cd0552ce31..a330edbfce 100644 --- a/src/oci/stack_monitoring/models/process_set_specification_details.py +++ b/src/oci/stack_monitoring/models/process_set_specification_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/process_set_summary.py b/src/oci/stack_monitoring/models/process_set_summary.py index dd00d4e0f3..4380733e4b 100644 --- a/src/oci/stack_monitoring/models/process_set_summary.py +++ b/src/oci/stack_monitoring/models/process_set_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/property_details.py b/src/oci/stack_monitoring/models/property_details.py index a1bdee0d73..b3cea184de 100644 --- a/src/oci/stack_monitoring/models/property_details.py +++ b/src/oci/stack_monitoring/models/property_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/recurrent_maintenance_window_schedule.py b/src/oci/stack_monitoring/models/recurrent_maintenance_window_schedule.py index 3c064f64ff..5a5097e2dd 100644 --- a/src/oci/stack_monitoring/models/recurrent_maintenance_window_schedule.py +++ b/src/oci/stack_monitoring/models/recurrent_maintenance_window_schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/resource_type_metadata_details.py b/src/oci/stack_monitoring/models/resource_type_metadata_details.py index 8d2c1284c6..b20bf6250b 100644 --- a/src/oci/stack_monitoring/models/resource_type_metadata_details.py +++ b/src/oci/stack_monitoring/models/resource_type_metadata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/script_file_details.py b/src/oci/stack_monitoring/models/script_file_details.py index 9d723f4afb..1f6a367346 100644 --- a/src/oci/stack_monitoring/models/script_file_details.py +++ b/src/oci/stack_monitoring/models/script_file_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/search_associated_resources_details.py b/src/oci/stack_monitoring/models/search_associated_resources_details.py index 634d18bc4f..3bf155b8aa 100644 --- a/src/oci/stack_monitoring/models/search_associated_resources_details.py +++ b/src/oci/stack_monitoring/models/search_associated_resources_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/search_monitored_resource_associations_details.py b/src/oci/stack_monitoring/models/search_monitored_resource_associations_details.py index f4a62e7a31..fa810d9714 100644 --- a/src/oci/stack_monitoring/models/search_monitored_resource_associations_details.py +++ b/src/oci/stack_monitoring/models/search_monitored_resource_associations_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/search_monitored_resource_members_details.py b/src/oci/stack_monitoring/models/search_monitored_resource_members_details.py index c37673ea7b..1ecd5f7a79 100644 --- a/src/oci/stack_monitoring/models/search_monitored_resource_members_details.py +++ b/src/oci/stack_monitoring/models/search_monitored_resource_members_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/search_monitored_resources_details.py b/src/oci/stack_monitoring/models/search_monitored_resources_details.py index 7cd9c1ac79..055f72d2a8 100644 --- a/src/oci/stack_monitoring/models/search_monitored_resources_details.py +++ b/src/oci/stack_monitoring/models/search_monitored_resources_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/sql_details.py b/src/oci/stack_monitoring/models/sql_details.py index 342e08d039..234e5c56e0 100644 --- a/src/oci/stack_monitoring/models/sql_details.py +++ b/src/oci/stack_monitoring/models/sql_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/sql_in_param_details.py b/src/oci/stack_monitoring/models/sql_in_param_details.py index 927087ec5d..e6fbe7a857 100644 --- a/src/oci/stack_monitoring/models/sql_in_param_details.py +++ b/src/oci/stack_monitoring/models/sql_in_param_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/sql_out_param_details.py b/src/oci/stack_monitoring/models/sql_out_param_details.py index 5b4846d272..9a8e2632bc 100644 --- a/src/oci/stack_monitoring/models/sql_out_param_details.py +++ b/src/oci/stack_monitoring/models/sql_out_param_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/sql_query_properties.py b/src/oci/stack_monitoring/models/sql_query_properties.py index 1e6468d2b2..192e68263a 100644 --- a/src/oci/stack_monitoring/models/sql_query_properties.py +++ b/src/oci/stack_monitoring/models/sql_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/sql_update_query_properties.py b/src/oci/stack_monitoring/models/sql_update_query_properties.py index b2a73b4fec..1f0a9d26ae 100644 --- a/src/oci/stack_monitoring/models/sql_update_query_properties.py +++ b/src/oci/stack_monitoring/models/sql_update_query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/system_format_resource_type_metadata_details.py b/src/oci/stack_monitoring/models/system_format_resource_type_metadata_details.py index befa423fbe..45ad8be48c 100644 --- a/src/oci/stack_monitoring/models/system_format_resource_type_metadata_details.py +++ b/src/oci/stack_monitoring/models/system_format_resource_type_metadata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/test_metric_extension_data.py b/src/oci/stack_monitoring/models/test_metric_extension_data.py index 8bc7bedf74..ebaa1296f3 100644 --- a/src/oci/stack_monitoring/models/test_metric_extension_data.py +++ b/src/oci/stack_monitoring/models/test_metric_extension_data.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/test_metric_extension_details.py b/src/oci/stack_monitoring/models/test_metric_extension_details.py index 36b8e153de..01a80eac71 100644 --- a/src/oci/stack_monitoring/models/test_metric_extension_details.py +++ b/src/oci/stack_monitoring/models/test_metric_extension_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/unique_property_set.py b/src/oci/stack_monitoring/models/unique_property_set.py index 8c60abec53..ed7449c099 100644 --- a/src/oci/stack_monitoring/models/unique_property_set.py +++ b/src/oci/stack_monitoring/models/unique_property_set.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_and_propagate_tags_details.py b/src/oci/stack_monitoring/models/update_and_propagate_tags_details.py index 408c930821..bbc5b74671 100644 --- a/src/oci/stack_monitoring/models/update_and_propagate_tags_details.py +++ b/src/oci/stack_monitoring/models/update_and_propagate_tags_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_auto_promote_config_details.py b/src/oci/stack_monitoring/models/update_auto_promote_config_details.py index a8ab4db7a2..bc3845a559 100644 --- a/src/oci/stack_monitoring/models/update_auto_promote_config_details.py +++ b/src/oci/stack_monitoring/models/update_auto_promote_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_baselineable_metric_details.py b/src/oci/stack_monitoring/models/update_baselineable_metric_details.py index 9b1d554292..8d4dd35297 100644 --- a/src/oci/stack_monitoring/models/update_baselineable_metric_details.py +++ b/src/oci/stack_monitoring/models/update_baselineable_metric_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_config_details.py b/src/oci/stack_monitoring/models/update_config_details.py index 9f4b903d92..87bc54ff9d 100644 --- a/src/oci/stack_monitoring/models/update_config_details.py +++ b/src/oci/stack_monitoring/models/update_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_http_script_file_details.py b/src/oci/stack_monitoring/models/update_http_script_file_details.py index 38b853bb79..9fe6c11a5f 100644 --- a/src/oci/stack_monitoring/models/update_http_script_file_details.py +++ b/src/oci/stack_monitoring/models/update_http_script_file_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_license_auto_assign_config_details.py b/src/oci/stack_monitoring/models/update_license_auto_assign_config_details.py index 1b03b9a772..c75a78b08d 100644 --- a/src/oci/stack_monitoring/models/update_license_auto_assign_config_details.py +++ b/src/oci/stack_monitoring/models/update_license_auto_assign_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_license_enterprise_extensibility_config_details.py b/src/oci/stack_monitoring/models/update_license_enterprise_extensibility_config_details.py index 6e4a1f6bca..809d2f4eab 100644 --- a/src/oci/stack_monitoring/models/update_license_enterprise_extensibility_config_details.py +++ b/src/oci/stack_monitoring/models/update_license_enterprise_extensibility_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_maintenance_window_details.py b/src/oci/stack_monitoring/models/update_maintenance_window_details.py index 9654868c34..f6429ab06d 100644 --- a/src/oci/stack_monitoring/models/update_maintenance_window_details.py +++ b/src/oci/stack_monitoring/models/update_maintenance_window_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_metric_extension_details.py b/src/oci/stack_monitoring/models/update_metric_extension_details.py index 7e646606f6..40f0ce11cc 100644 --- a/src/oci/stack_monitoring/models/update_metric_extension_details.py +++ b/src/oci/stack_monitoring/models/update_metric_extension_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_monitored_resource_details.py b/src/oci/stack_monitoring/models/update_monitored_resource_details.py index e961cc417c..ceec4833d3 100644 --- a/src/oci/stack_monitoring/models/update_monitored_resource_details.py +++ b/src/oci/stack_monitoring/models/update_monitored_resource_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_monitored_resource_task_details.py b/src/oci/stack_monitoring/models/update_monitored_resource_task_details.py index 4501dfe538..6a32f67397 100644 --- a/src/oci/stack_monitoring/models/update_monitored_resource_task_details.py +++ b/src/oci/stack_monitoring/models/update_monitored_resource_task_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_monitored_resource_type_details.py b/src/oci/stack_monitoring/models/update_monitored_resource_type_details.py index ebf1381bd9..1444eec1ef 100644 --- a/src/oci/stack_monitoring/models/update_monitored_resource_type_details.py +++ b/src/oci/stack_monitoring/models/update_monitored_resource_type_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/update_process_set_details.py b/src/oci/stack_monitoring/models/update_process_set_details.py index 9690392e90..76c3384a16 100644 --- a/src/oci/stack_monitoring/models/update_process_set_details.py +++ b/src/oci/stack_monitoring/models/update_process_set_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/work_request.py b/src/oci/stack_monitoring/models/work_request.py index 4fb31391d8..3c21cb23a8 100644 --- a/src/oci/stack_monitoring/models/work_request.py +++ b/src/oci/stack_monitoring/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/work_request_error.py b/src/oci/stack_monitoring/models/work_request_error.py index 5ab008aea3..ad1fdd7028 100644 --- a/src/oci/stack_monitoring/models/work_request_error.py +++ b/src/oci/stack_monitoring/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/work_request_error_collection.py b/src/oci/stack_monitoring/models/work_request_error_collection.py index f510be5280..4f42b4928a 100644 --- a/src/oci/stack_monitoring/models/work_request_error_collection.py +++ b/src/oci/stack_monitoring/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/work_request_log_entry.py b/src/oci/stack_monitoring/models/work_request_log_entry.py index d19d653046..fcf4e4f5cf 100644 --- a/src/oci/stack_monitoring/models/work_request_log_entry.py +++ b/src/oci/stack_monitoring/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/work_request_log_entry_collection.py b/src/oci/stack_monitoring/models/work_request_log_entry_collection.py index 28f4478141..6e0c874918 100644 --- a/src/oci/stack_monitoring/models/work_request_log_entry_collection.py +++ b/src/oci/stack_monitoring/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/work_request_resource.py b/src/oci/stack_monitoring/models/work_request_resource.py index 6e851dca3d..e105ab4598 100644 --- a/src/oci/stack_monitoring/models/work_request_resource.py +++ b/src/oci/stack_monitoring/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/work_request_summary.py b/src/oci/stack_monitoring/models/work_request_summary.py index e93ebd9a29..55fc667d5b 100644 --- a/src/oci/stack_monitoring/models/work_request_summary.py +++ b/src/oci/stack_monitoring/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/models/work_request_summary_collection.py b/src/oci/stack_monitoring/models/work_request_summary_collection.py index e46b27d802..20a1224885 100644 --- a/src/oci/stack_monitoring/models/work_request_summary_collection.py +++ b/src/oci/stack_monitoring/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/stack_monitoring_client.py b/src/oci/stack_monitoring/stack_monitoring_client.py index daf5a16f00..c78f702a6b 100644 --- a/src/oci/stack_monitoring/stack_monitoring_client.py +++ b/src/oci/stack_monitoring/stack_monitoring_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/stack_monitoring/stack_monitoring_client_composite_operations.py b/src/oci/stack_monitoring/stack_monitoring_client_composite_operations.py index 245d7ed635..fd776629fe 100644 --- a/src/oci/stack_monitoring/stack_monitoring_client_composite_operations.py +++ b/src/oci/stack_monitoring/stack_monitoring_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210330 diff --git a/src/oci/streaming/__init__.py b/src/oci/streaming/__init__.py index 3d6b80a42d..bff8aea99c 100644 --- a/src/oci/streaming/__init__.py +++ b/src/oci/streaming/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/__init__.py b/src/oci/streaming/models/__init__.py index 7e7ed06f59..b6eb6fcde9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 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 a1743aa5a4..bf03ebdb47 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/change_stream_compartment_details.py b/src/oci/streaming/models/change_stream_compartment_details.py index 83a9d8c692..87ac9b4785 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 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 954bf74ddc..b557989545 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/connect_harness.py b/src/oci/streaming/models/connect_harness.py index 9e16d1af72..4e49ef5aeb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/connect_harness_summary.py b/src/oci/streaming/models/connect_harness_summary.py index 6887439549..d59bb927ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/create_connect_harness_details.py b/src/oci/streaming/models/create_connect_harness_details.py index 2ca89167ca..ee2bf09355 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/create_cursor_details.py b/src/oci/streaming/models/create_cursor_details.py index 3e1c788ff4..542da813ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/create_group_cursor_details.py b/src/oci/streaming/models/create_group_cursor_details.py index 4de422c867..f6df2b2f34 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/create_stream_details.py b/src/oci/streaming/models/create_stream_details.py index 8f397721a9..41b0c857dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/create_stream_pool_details.py b/src/oci/streaming/models/create_stream_pool_details.py index 63c791c01d..8ea7f34506 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/cursor.py b/src/oci/streaming/models/cursor.py index 5d1d123843..5cd407e279 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/custom_encryption_key.py b/src/oci/streaming/models/custom_encryption_key.py index c52e53e8df..6799181fba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/custom_encryption_key_details.py b/src/oci/streaming/models/custom_encryption_key_details.py index 0c8ce4c8b9..b4621af5a0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/group.py b/src/oci/streaming/models/group.py index 9e2ac9dc6d..3d72c03fe9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/kafka_settings.py b/src/oci/streaming/models/kafka_settings.py index 7dfee11fdc..473e1636ae 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/message.py b/src/oci/streaming/models/message.py index fe18e7e7a1..c6ecfd3341 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/partition_reservation.py b/src/oci/streaming/models/partition_reservation.py index 98f7e26929..481953e3b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/private_endpoint_details.py b/src/oci/streaming/models/private_endpoint_details.py index b9cde5d55c..ffadfe8bbe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/private_endpoint_settings.py b/src/oci/streaming/models/private_endpoint_settings.py index 9e3a4d3623..3a07c09d80 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/put_messages_details.py b/src/oci/streaming/models/put_messages_details.py index 7bf6dc55cd..5d5d912732 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/put_messages_details_entry.py b/src/oci/streaming/models/put_messages_details_entry.py index 3b5922bad6..d6a5c871c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/put_messages_result.py b/src/oci/streaming/models/put_messages_result.py index c3cce7df56..49d8a8534c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/put_messages_result_entry.py b/src/oci/streaming/models/put_messages_result_entry.py index 13f33eb5de..a811196f57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/stream.py b/src/oci/streaming/models/stream.py index 2979492f2f..eadadb7958 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/stream_pool.py b/src/oci/streaming/models/stream_pool.py index c0db1d7943..a15fe2baaa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/stream_pool_summary.py b/src/oci/streaming/models/stream_pool_summary.py index 2ed50760f0..0f871b3b72 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/stream_summary.py b/src/oci/streaming/models/stream_summary.py index b7d5a63351..8edf7d662e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/update_connect_harness_details.py b/src/oci/streaming/models/update_connect_harness_details.py index eef4b54bb6..36f8024e26 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/update_group_details.py b/src/oci/streaming/models/update_group_details.py index 939bd38d3f..5d3d35b7e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/update_stream_details.py b/src/oci/streaming/models/update_stream_details.py index 68a5b89d78..d293a83fbc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/models/update_stream_pool_details.py b/src/oci/streaming/models/update_stream_pool_details.py index 2599c8f138..2c212b35c7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/stream_admin_client.py b/src/oci/streaming/stream_admin_client.py index 2b12521a34..3a2cdfd283 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/stream_admin_client_composite_operations.py b/src/oci/streaming/stream_admin_client_composite_operations.py index 5ed544d5ac..0e7ac46e10 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/stream_client.py b/src/oci/streaming/stream_client.py index a5ad1ef061..6a8bf47ef8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/streaming/stream_client_composite_operations.py b/src/oci/streaming/stream_client_composite_operations.py index c84d9b2cb0..9d96d8c1c3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180418 diff --git a/src/oci/tenant_manager_control_plane/__init__.py b/src/oci/tenant_manager_control_plane/__init__.py index e2d0d71c25..c81e25d1da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/domain_client.py b/src/oci/tenant_manager_control_plane/domain_client.py index 2b8026cf4c..e8afe24416 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 e5ed44fdf8..10585c045e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 77202b2386..ad7f2f2004 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 8a747c60e8..3c4ffdab82 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/governance_client.py b/src/oci/tenant_manager_control_plane/governance_client.py index ce8248b5b7..fd0f895e73 100644 --- a/src/oci/tenant_manager_control_plane/governance_client.py +++ b/src/oci/tenant_manager_control_plane/governance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/governance_client_composite_operations.py b/src/oci/tenant_manager_control_plane/governance_client_composite_operations.py index f14da38bab..ee22ff6c8e 100644 --- a/src/oci/tenant_manager_control_plane/governance_client_composite_operations.py +++ b/src/oci/tenant_manager_control_plane/governance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/link_client.py b/src/oci/tenant_manager_control_plane/link_client.py index 57f0a7e16c..e661630287 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 f33560e9fd..b590b25042 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/__init__.py b/src/oci/tenant_manager_control_plane/models/__init__.py index 95cd7a64f8..894d5e9603 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 69f61aa36f..aa2548f1f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 0c6015ee20..444e2867a3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a3b9690326..11189ecfb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/assigned_subscription_line_item_collection.py b/src/oci/tenant_manager_control_plane/models/assigned_subscription_line_item_collection.py index d37cd68577..92c53a3e3e 100644 --- a/src/oci/tenant_manager_control_plane/models/assigned_subscription_line_item_collection.py +++ b/src/oci/tenant_manager_control_plane/models/assigned_subscription_line_item_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/assigned_subscription_line_item_summary.py b/src/oci/tenant_manager_control_plane/models/assigned_subscription_line_item_summary.py index 91013c4ece..bfb6c8af93 100644 --- a/src/oci/tenant_manager_control_plane/models/assigned_subscription_line_item_summary.py +++ b/src/oci/tenant_manager_control_plane/models/assigned_subscription_line_item_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a5df4cd432..8794a5fee0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 531fce6e64..df1cb136bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 94d81e7f85..ce6788d23b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/classic_assigned_subscription.py b/src/oci/tenant_manager_control_plane/models/classic_assigned_subscription.py index 54ce7f5f7f..846a18527b 100644 --- a/src/oci/tenant_manager_control_plane/models/classic_assigned_subscription.py +++ b/src/oci/tenant_manager_control_plane/models/classic_assigned_subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/classic_assigned_subscription_summary.py b/src/oci/tenant_manager_control_plane/models/classic_assigned_subscription_summary.py index 9404c3167b..b514130835 100644 --- a/src/oci/tenant_manager_control_plane/models/classic_assigned_subscription_summary.py +++ b/src/oci/tenant_manager_control_plane/models/classic_assigned_subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/classic_subscription.py b/src/oci/tenant_manager_control_plane/models/classic_subscription.py index 1b9db35bd7..684410c962 100644 --- a/src/oci/tenant_manager_control_plane/models/classic_subscription.py +++ b/src/oci/tenant_manager_control_plane/models/classic_subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/classic_subscription_summary.py b/src/oci/tenant_manager_control_plane/models/classic_subscription_summary.py index 6917c9eb1d..fd2a6f7aa3 100644 --- a/src/oci/tenant_manager_control_plane/models/classic_subscription_summary.py +++ b/src/oci/tenant_manager_control_plane/models/classic_subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/cloud_assigned_subscription.py b/src/oci/tenant_manager_control_plane/models/cloud_assigned_subscription.py index acb9757b4c..145d231a94 100644 --- a/src/oci/tenant_manager_control_plane/models/cloud_assigned_subscription.py +++ b/src/oci/tenant_manager_control_plane/models/cloud_assigned_subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/cloud_assigned_subscription_summary.py b/src/oci/tenant_manager_control_plane/models/cloud_assigned_subscription_summary.py index 5c66963ef2..5653deb5f2 100644 --- a/src/oci/tenant_manager_control_plane/models/cloud_assigned_subscription_summary.py +++ b/src/oci/tenant_manager_control_plane/models/cloud_assigned_subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/cloud_subscription.py b/src/oci/tenant_manager_control_plane/models/cloud_subscription.py index 2a0e04c402..f64fe9857a 100644 --- a/src/oci/tenant_manager_control_plane/models/cloud_subscription.py +++ b/src/oci/tenant_manager_control_plane/models/cloud_subscription.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/cloud_subscription_summary.py b/src/oci/tenant_manager_control_plane/models/cloud_subscription_summary.py index 439bc3ae26..59130a11b8 100644 --- a/src/oci/tenant_manager_control_plane/models/cloud_subscription_summary.py +++ b/src/oci/tenant_manager_control_plane/models/cloud_subscription_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 eb67db783b..b0f4ec1d46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a06865d6a1..d32bb68111 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 815ce60ae5..20425406e1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 e1b8ec32c2..b029fd3a1f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 66bf52dd24..ce8e37244e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/domain.py b/src/oci/tenant_manager_control_plane/models/domain.py index 4d80b4b712..bfb5bebce3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a1ed8fd9f2..24dbf3a5ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 1a4646fb7f..d2c4e7f6ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 69b8752459..ca4189c1e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 25ee3943c1..51a52d14dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 6c62adaf0c..24f9ec3829 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/link.py b/src/oci/tenant_manager_control_plane/models/link.py index 0d8ee8417c..00e61116ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 027222e159..104b9636a6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 1c44a5f98e..9490e56c28 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/order.py b/src/oci/tenant_manager_control_plane/models/order.py index de124b76ef..0b5ed3aa69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/organization.py b/src/oci/tenant_manager_control_plane/models/organization.py index 341b40b61b..3d2b5f8c19 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 0b40c662a5..9a949c41b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 ad7cd1d1e4..77264196d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 2af52821c5..4e5f458324 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 271647a882..16efa96271 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a835a8dfdd..92a66c1ea6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/promotion.py b/src/oci/tenant_manager_control_plane/models/promotion.py index ff1ff893d5..8320f937dd 100644 --- a/src/oci/tenant_manager_control_plane/models/promotion.py +++ b/src/oci/tenant_manager_control_plane/models/promotion.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 fafe9513f1..2579056e30 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 1fc07db988..179f9ce028 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 cfa91c74cb..b767eaa693 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/revive_workflow_instance_details.py b/src/oci/tenant_manager_control_plane/models/revive_workflow_instance_details.py index 195d09bb8f..076ce6f010 100644 --- a/src/oci/tenant_manager_control_plane/models/revive_workflow_instance_details.py +++ b/src/oci/tenant_manager_control_plane/models/revive_workflow_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 4e98f0b95d..111156d8cb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 955316d7ae..f8b1f24d1e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a5b976edbe..e2636ef1bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/sku.py b/src/oci/tenant_manager_control_plane/models/sku.py index 0ef49e8ce6..b4ad4c0976 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/subscription.py b/src/oci/tenant_manager_control_plane/models/subscription.py index d40c90aa6e..a6afe126f1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 83da029c48..b39981e92b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 bfe462e357..670f48dc44 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/subscription_line_item_collection.py b/src/oci/tenant_manager_control_plane/models/subscription_line_item_collection.py index 58ef15e4fc..630a35c87d 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription_line_item_collection.py +++ b/src/oci/tenant_manager_control_plane/models/subscription_line_item_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/models/subscription_line_item_summary.py b/src/oci/tenant_manager_control_plane/models/subscription_line_item_summary.py index 625734d8de..b7bd09fd82 100644 --- a/src/oci/tenant_manager_control_plane/models/subscription_line_item_summary.py +++ b/src/oci/tenant_manager_control_plane/models/subscription_line_item_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 9a8df03da1..ce40f78291 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 fae5a71791..f696eda3fd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 26748864f5..2311d47059 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 49c32c9883..e07f94ebca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 25ba32f41c..30a2034c0f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 9e2284d9cf..2848e69c33 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a472027d08..f871736f81 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 759cbd65ff..7963b04d05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 4410f31686..db8b39d264 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 4b5a90edc1..db59f05dc9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 367612be9d..33a084a7e8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a0ceb20bfb..55d6493c5f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 102c68ac6c..41e6de113d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 c2b88b83d7..2f7980567e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a0c4abb3bf..6b6f214413 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 65bd708ba8..91665b2e2a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 2fb0cc6ec8..3ecb17381c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 469b2b8fe3..146e32aded 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/orders_client.py b/src/oci/tenant_manager_control_plane/orders_client.py index 1f580c4a61..3db6b394cc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 68c30d3f79..7ee7a6234b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/organization_client.py b/src/oci/tenant_manager_control_plane/organization_client.py index e70a309fad..4f8b9303d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 f5545efddf..4a74399c3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 9e5490a8bf..7632b37443 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 336f8167aa..94aace00ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 bc79830591..29f16217fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 188b0dd88b..0c2c88aac4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/tenant_manager_control_plane/subscription_client.py b/src/oci/tenant_manager_control_plane/subscription_client.py index 7607d7f367..ff5ceaebf6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 a5d9a11945..cfacb8c492 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 bd9e809304..dd2ba52572 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 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 0b98817960..eba48d46c2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20230401 diff --git a/src/oci/threat_intelligence/__init__.py b/src/oci/threat_intelligence/__init__.py index 69b5ef792f..2f434dba00 100644 --- a/src/oci/threat_intelligence/__init__.py +++ b/src/oci/threat_intelligence/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/__init__.py b/src/oci/threat_intelligence/models/__init__.py index 9d475e8f98..bcd1cd5d65 100644 --- a/src/oci/threat_intelligence/models/__init__.py +++ b/src/oci/threat_intelligence/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/data_attribution.py b/src/oci/threat_intelligence/models/data_attribution.py index 164d93ad1e..e8be233937 100644 --- a/src/oci/threat_intelligence/models/data_attribution.py +++ b/src/oci/threat_intelligence/models/data_attribution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/data_visibility.py b/src/oci/threat_intelligence/models/data_visibility.py index adadbcdbe6..702a5ff664 100644 --- a/src/oci/threat_intelligence/models/data_visibility.py +++ b/src/oci/threat_intelligence/models/data_visibility.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/entity_reference.py b/src/oci/threat_intelligence/models/entity_reference.py index 01c5fbbc17..49db18ebd2 100644 --- a/src/oci/threat_intelligence/models/entity_reference.py +++ b/src/oci/threat_intelligence/models/entity_reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/geodata_details.py b/src/oci/threat_intelligence/models/geodata_details.py index ca35d03261..d09f3dbfc1 100644 --- a/src/oci/threat_intelligence/models/geodata_details.py +++ b/src/oci/threat_intelligence/models/geodata_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator.py b/src/oci/threat_intelligence/models/indicator.py index 721db75b28..bacf736f42 100644 --- a/src/oci/threat_intelligence/models/indicator.py +++ b/src/oci/threat_intelligence/models/indicator.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_attribute.py b/src/oci/threat_intelligence/models/indicator_attribute.py index 6de7a2881a..3273807a36 100644 --- a/src/oci/threat_intelligence/models/indicator_attribute.py +++ b/src/oci/threat_intelligence/models/indicator_attribute.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_attribute_summary.py b/src/oci/threat_intelligence/models/indicator_attribute_summary.py index 0eeef84fc2..532b35a540 100644 --- a/src/oci/threat_intelligence/models/indicator_attribute_summary.py +++ b/src/oci/threat_intelligence/models/indicator_attribute_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_count_collection.py b/src/oci/threat_intelligence/models/indicator_count_collection.py index 8814697e32..0a97024055 100644 --- a/src/oci/threat_intelligence/models/indicator_count_collection.py +++ b/src/oci/threat_intelligence/models/indicator_count_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_count_dimensions.py b/src/oci/threat_intelligence/models/indicator_count_dimensions.py index 9aa5af394f..556920a24e 100644 --- a/src/oci/threat_intelligence/models/indicator_count_dimensions.py +++ b/src/oci/threat_intelligence/models/indicator_count_dimensions.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_count_summary.py b/src/oci/threat_intelligence/models/indicator_count_summary.py index 80944b0982..d4b28aa5a9 100644 --- a/src/oci/threat_intelligence/models/indicator_count_summary.py +++ b/src/oci/threat_intelligence/models/indicator_count_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_reference.py b/src/oci/threat_intelligence/models/indicator_reference.py index b0fad1f6fa..03b9c56b61 100644 --- a/src/oci/threat_intelligence/models/indicator_reference.py +++ b/src/oci/threat_intelligence/models/indicator_reference.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_relationship.py b/src/oci/threat_intelligence/models/indicator_relationship.py index 327548c9ee..a2310491ef 100644 --- a/src/oci/threat_intelligence/models/indicator_relationship.py +++ b/src/oci/threat_intelligence/models/indicator_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_source_summary.py b/src/oci/threat_intelligence/models/indicator_source_summary.py index 1f29001958..9f5df235d1 100644 --- a/src/oci/threat_intelligence/models/indicator_source_summary.py +++ b/src/oci/threat_intelligence/models/indicator_source_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_summary.py b/src/oci/threat_intelligence/models/indicator_summary.py index 72af7e84c8..89afd1b31a 100644 --- a/src/oci/threat_intelligence/models/indicator_summary.py +++ b/src/oci/threat_intelligence/models/indicator_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/indicator_summary_collection.py b/src/oci/threat_intelligence/models/indicator_summary_collection.py index b413708a40..a687b010ae 100644 --- a/src/oci/threat_intelligence/models/indicator_summary_collection.py +++ b/src/oci/threat_intelligence/models/indicator_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/summarize_indicators_details.py b/src/oci/threat_intelligence/models/summarize_indicators_details.py index 0b3c81dc09..f5a5d2b7d0 100644 --- a/src/oci/threat_intelligence/models/summarize_indicators_details.py +++ b/src/oci/threat_intelligence/models/summarize_indicators_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/threat_type.py b/src/oci/threat_intelligence/models/threat_type.py index 7f2add4e5f..2113810b17 100644 --- a/src/oci/threat_intelligence/models/threat_type.py +++ b/src/oci/threat_intelligence/models/threat_type.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/threat_type_summary.py b/src/oci/threat_intelligence/models/threat_type_summary.py index bdf6c39c73..b311bbeba8 100644 --- a/src/oci/threat_intelligence/models/threat_type_summary.py +++ b/src/oci/threat_intelligence/models/threat_type_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/models/threat_types_collection.py b/src/oci/threat_intelligence/models/threat_types_collection.py index e9c6764bec..712b995d56 100644 --- a/src/oci/threat_intelligence/models/threat_types_collection.py +++ b/src/oci/threat_intelligence/models/threat_types_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/threatintel_client.py b/src/oci/threat_intelligence/threatintel_client.py index e1ec9afbee..11aaa2600b 100644 --- a/src/oci/threat_intelligence/threatintel_client.py +++ b/src/oci/threat_intelligence/threatintel_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/threat_intelligence/threatintel_client_composite_operations.py b/src/oci/threat_intelligence/threatintel_client_composite_operations.py index ffde168e8d..174ec48496 100644 --- a/src/oci/threat_intelligence/threatintel_client_composite_operations.py +++ b/src/oci/threat_intelligence/threatintel_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20220901 diff --git a/src/oci/usage/__init__.py b/src/oci/usage/__init__.py index b0fb2f4857..707524911c 100644 --- a/src/oci/usage/__init__.py +++ b/src/oci/usage/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/__init__.py b/src/oci/usage/models/__init__.py index 416f6590df..43c137aa27 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/create_redeemable_user_details.py b/src/oci/usage/models/create_redeemable_user_details.py index da122821fc..2387105315 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/monthly_reward_summary.py b/src/oci/usage/models/monthly_reward_summary.py index 7618705c0b..ace8ca64f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/product_collection.py b/src/oci/usage/models/product_collection.py index 4ae442ccc5..1387aec5de 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/product_summary.py b/src/oci/usage/models/product_summary.py index dc06c22242..ee0efb22ad 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/redeemable_user.py b/src/oci/usage/models/redeemable_user.py index 606ab6c695..4b5c14088d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/redeemable_user_collection.py b/src/oci/usage/models/redeemable_user_collection.py index 772fa206c6..74ffc7b541 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/redeemable_user_summary.py b/src/oci/usage/models/redeemable_user_summary.py index 7ecc3ba947..98d6744a79 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/redemption_collection.py b/src/oci/usage/models/redemption_collection.py index a40401a766..0f5f5e91e3 100644 --- a/src/oci/usage/models/redemption_collection.py +++ b/src/oci/usage/models/redemption_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/redemption_summary.py b/src/oci/usage/models/redemption_summary.py index df6ae11773..e28ede9474 100644 --- a/src/oci/usage/models/redemption_summary.py +++ b/src/oci/usage/models/redemption_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/resource_quotum_collection.py b/src/oci/usage/models/resource_quotum_collection.py index 7d582762ae..2127099682 100644 --- a/src/oci/usage/models/resource_quotum_collection.py +++ b/src/oci/usage/models/resource_quotum_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/resource_quotum_summary.py b/src/oci/usage/models/resource_quotum_summary.py index a389ee150d..8e0faa0668 100644 --- a/src/oci/usage/models/resource_quotum_summary.py +++ b/src/oci/usage/models/resource_quotum_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/resource_summary.py b/src/oci/usage/models/resource_summary.py index 312a4818c0..48d87e211c 100644 --- a/src/oci/usage/models/resource_summary.py +++ b/src/oci/usage/models/resource_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/resources_collection.py b/src/oci/usage/models/resources_collection.py index b0a1f0fcbc..fc5972c367 100644 --- a/src/oci/usage/models/resources_collection.py +++ b/src/oci/usage/models/resources_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/reward_collection.py b/src/oci/usage/models/reward_collection.py index 2a9264541c..b79be0996f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/reward_details.py b/src/oci/usage/models/reward_details.py index 84fa081788..c716c33796 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/sku_products.py b/src/oci/usage/models/sku_products.py index 4e1b4e954d..40d3e7e7c5 100644 --- a/src/oci/usage/models/sku_products.py +++ b/src/oci/usage/models/sku_products.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/usage_limit_collection.py b/src/oci/usage/models/usage_limit_collection.py index 300a008de5..7ff54950f6 100644 --- a/src/oci/usage/models/usage_limit_collection.py +++ b/src/oci/usage/models/usage_limit_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/models/usage_limit_summary.py b/src/oci/usage/models/usage_limit_summary.py index a80703e92e..2b787edc53 100644 --- a/src/oci/usage/models/usage_limit_summary.py +++ b/src/oci/usage/models/usage_limit_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/resources_client.py b/src/oci/usage/resources_client.py index e616f326ae..91f490d014 100644 --- a/src/oci/usage/resources_client.py +++ b/src/oci/usage/resources_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/resources_client_composite_operations.py b/src/oci/usage/resources_client_composite_operations.py index b4a4ac49ef..a33d5e2f58 100644 --- a/src/oci/usage/resources_client_composite_operations.py +++ b/src/oci/usage/resources_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/rewards_client.py b/src/oci/usage/rewards_client.py index f7e0a6d71d..946818b787 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/rewards_client_composite_operations.py b/src/oci/usage/rewards_client_composite_operations.py index 2d4ab63721..a4ad3d4c7d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/usagelimits_client.py b/src/oci/usage/usagelimits_client.py index 01f328f57f..96c45c2fc8 100644 --- a/src/oci/usage/usagelimits_client.py +++ b/src/oci/usage/usagelimits_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage/usagelimits_client_composite_operations.py b/src/oci/usage/usagelimits_client_composite_operations.py index ef61bb1586..ba0cea4e70 100644 --- a/src/oci/usage/usagelimits_client_composite_operations.py +++ b/src/oci/usage/usagelimits_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20190111 diff --git a/src/oci/usage_api/__init__.py b/src/oci/usage_api/__init__.py index 88c37ccccb..9aa7384228 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/__init__.py b/src/oci/usage_api/models/__init__.py index c4259043e7..82f6627f3f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/average_carbon_emission.py b/src/oci/usage_api/models/average_carbon_emission.py index 33f76e6d90..d5edfea623 100644 --- a/src/oci/usage_api/models/average_carbon_emission.py +++ b/src/oci/usage_api/models/average_carbon_emission.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/clean_energy_usage.py b/src/oci/usage_api/models/clean_energy_usage.py index 6607f633d8..bee7618849 100644 --- a/src/oci/usage_api/models/clean_energy_usage.py +++ b/src/oci/usage_api/models/clean_energy_usage.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/configuration.py b/src/oci/usage_api/models/configuration.py index c25c81d116..f1433a4924 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/configuration_aggregation.py b/src/oci/usage_api/models/configuration_aggregation.py index e997c102de..3aed67b3cf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/cost_analysis_ui.py b/src/oci/usage_api/models/cost_analysis_ui.py index 34cfbd3daa..77cb7d882e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 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 802f432761..3f6c300905 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/create_email_recipients_group_details.py b/src/oci/usage_api/models/create_email_recipients_group_details.py index d62643d2f8..e3e967a43c 100644 --- a/src/oci/usage_api/models/create_email_recipients_group_details.py +++ b/src/oci/usage_api/models/create_email_recipients_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/create_query_details.py b/src/oci/usage_api/models/create_query_details.py index c07a729d88..37c80dac40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/create_schedule_details.py b/src/oci/usage_api/models/create_schedule_details.py index 920d3a4736..03a195393c 100644 --- a/src/oci/usage_api/models/create_schedule_details.py +++ b/src/oci/usage_api/models/create_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/create_usage_carbon_emissions_query_details.py b/src/oci/usage_api/models/create_usage_carbon_emissions_query_details.py index 4d8d47d876..a4750e7d29 100644 --- a/src/oci/usage_api/models/create_usage_carbon_emissions_query_details.py +++ b/src/oci/usage_api/models/create_usage_carbon_emissions_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/custom_table.py b/src/oci/usage_api/models/custom_table.py index 0094780c13..e8cd579ed7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/custom_table_collection.py b/src/oci/usage_api/models/custom_table_collection.py index d8aaa1b8e6..4ac39a03a9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/custom_table_summary.py b/src/oci/usage_api/models/custom_table_summary.py index 2c1f93f62d..f182d0b2bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/date_range.py b/src/oci/usage_api/models/date_range.py index f422e68ac4..75db87c5ba 100644 --- a/src/oci/usage_api/models/date_range.py +++ b/src/oci/usage_api/models/date_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/dimension.py b/src/oci/usage_api/models/dimension.py index b46ba5138f..150112014b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/dynamic_date_range.py b/src/oci/usage_api/models/dynamic_date_range.py index 2d26cc885a..78346955bb 100644 --- a/src/oci/usage_api/models/dynamic_date_range.py +++ b/src/oci/usage_api/models/dynamic_date_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/email_recipient.py b/src/oci/usage_api/models/email_recipient.py index b21a11abf9..32038365ae 100644 --- a/src/oci/usage_api/models/email_recipient.py +++ b/src/oci/usage_api/models/email_recipient.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/email_recipients_group.py b/src/oci/usage_api/models/email_recipients_group.py index f33c7150a1..08c7b79f4c 100644 --- a/src/oci/usage_api/models/email_recipients_group.py +++ b/src/oci/usage_api/models/email_recipients_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/email_recipients_group_collection.py b/src/oci/usage_api/models/email_recipients_group_collection.py index 9c96a41f8a..7c24fc5e26 100644 --- a/src/oci/usage_api/models/email_recipients_group_collection.py +++ b/src/oci/usage_api/models/email_recipients_group_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/email_recipients_group_summary.py b/src/oci/usage_api/models/email_recipients_group_summary.py index 057abbb70d..52617e39ca 100644 --- a/src/oci/usage_api/models/email_recipients_group_summary.py +++ b/src/oci/usage_api/models/email_recipients_group_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/filter.py b/src/oci/usage_api/models/filter.py index 9b4dd9649c..c2d6485108 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/forecast.py b/src/oci/usage_api/models/forecast.py index cd79710256..7d6d43f7dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/object_storage_location.py b/src/oci/usage_api/models/object_storage_location.py index 0e20006402..2b31ad6fa5 100644 --- a/src/oci/usage_api/models/object_storage_location.py +++ b/src/oci/usage_api/models/object_storage_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/query.py b/src/oci/usage_api/models/query.py index c1c93efb47..78e600b973 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/query_collection.py b/src/oci/usage_api/models/query_collection.py index f6cec29a89..2cf7c9800d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/query_definition.py b/src/oci/usage_api/models/query_definition.py index e498785970..94c918d3ba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/query_properties.py b/src/oci/usage_api/models/query_properties.py index a6ebad1f3e..c7a56389cb 100644 --- a/src/oci/usage_api/models/query_properties.py +++ b/src/oci/usage_api/models/query_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/query_summary.py b/src/oci/usage_api/models/query_summary.py index bf569c67ee..1baa8c46f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/report_query.py b/src/oci/usage_api/models/report_query.py index 534ab775da..5ce7beaf72 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 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 3abc000a3d..5456a9a8eb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/request_usage_carbon_emissions_details.py b/src/oci/usage_api/models/request_usage_carbon_emissions_details.py index 3e5e6e04b4..f5a3f2dc94 100644 --- a/src/oci/usage_api/models/request_usage_carbon_emissions_details.py +++ b/src/oci/usage_api/models/request_usage_carbon_emissions_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/result_location.py b/src/oci/usage_api/models/result_location.py index 696ed1ba60..55b6b8b5e1 100644 --- a/src/oci/usage_api/models/result_location.py +++ b/src/oci/usage_api/models/result_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/saved_custom_table.py b/src/oci/usage_api/models/saved_custom_table.py index 3eb123d5da..61c54ae967 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/schedule.py b/src/oci/usage_api/models/schedule.py index a4ed08867d..e10e50b373 100644 --- a/src/oci/usage_api/models/schedule.py +++ b/src/oci/usage_api/models/schedule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/schedule_collection.py b/src/oci/usage_api/models/schedule_collection.py index 6a4f029213..37b9867513 100644 --- a/src/oci/usage_api/models/schedule_collection.py +++ b/src/oci/usage_api/models/schedule_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/schedule_summary.py b/src/oci/usage_api/models/schedule_summary.py index 6ffe541abd..3bc1c38f0d 100644 --- a/src/oci/usage_api/models/schedule_summary.py +++ b/src/oci/usage_api/models/schedule_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/scheduled_run.py b/src/oci/usage_api/models/scheduled_run.py index 9bb0663cb6..ee45cefed4 100644 --- a/src/oci/usage_api/models/scheduled_run.py +++ b/src/oci/usage_api/models/scheduled_run.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/scheduled_run_collection.py b/src/oci/usage_api/models/scheduled_run_collection.py index dffaa2442a..3fe96e183b 100644 --- a/src/oci/usage_api/models/scheduled_run_collection.py +++ b/src/oci/usage_api/models/scheduled_run_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/scheduled_run_summary.py b/src/oci/usage_api/models/scheduled_run_summary.py index 51f2188052..8993466878 100644 --- a/src/oci/usage_api/models/scheduled_run_summary.py +++ b/src/oci/usage_api/models/scheduled_run_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/static_date_range.py b/src/oci/usage_api/models/static_date_range.py index edc9051eab..768767fba6 100644 --- a/src/oci/usage_api/models/static_date_range.py +++ b/src/oci/usage_api/models/static_date_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/tag.py b/src/oci/usage_api/models/tag.py index ab4bfeb34f..b3ce020b76 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 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 10a0a8cc9e..1c6ebf1f7b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/update_email_recipients_group_details.py b/src/oci/usage_api/models/update_email_recipients_group_details.py index d2a4f54b85..205925c1e7 100644 --- a/src/oci/usage_api/models/update_email_recipients_group_details.py +++ b/src/oci/usage_api/models/update_email_recipients_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/update_query_details.py b/src/oci/usage_api/models/update_query_details.py index fa0bb0974e..5db7b14ae2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/update_schedule_details.py b/src/oci/usage_api/models/update_schedule_details.py index 087979feaa..2ed683af4b 100644 --- a/src/oci/usage_api/models/update_schedule_details.py +++ b/src/oci/usage_api/models/update_schedule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/update_usage_carbon_emissions_query_details.py b/src/oci/usage_api/models/update_usage_carbon_emissions_query_details.py index ca7e519268..619fe29e6c 100644 --- a/src/oci/usage_api/models/update_usage_carbon_emissions_query_details.py +++ b/src/oci/usage_api/models/update_usage_carbon_emissions_query_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/usage_aggregation.py b/src/oci/usage_api/models/usage_aggregation.py index 86882182ea..fd2816049d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/usage_carbon_emission_aggregation.py b/src/oci/usage_api/models/usage_carbon_emission_aggregation.py index 7619f761fc..93c33f12a1 100644 --- a/src/oci/usage_api/models/usage_carbon_emission_aggregation.py +++ b/src/oci/usage_api/models/usage_carbon_emission_aggregation.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/usage_carbon_emission_summary.py b/src/oci/usage_api/models/usage_carbon_emission_summary.py index 6ddc93fe4e..ab77198b27 100644 --- a/src/oci/usage_api/models/usage_carbon_emission_summary.py +++ b/src/oci/usage_api/models/usage_carbon_emission_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/usage_carbon_emissions_query.py b/src/oci/usage_api/models/usage_carbon_emissions_query.py index 16972ee6ce..f19ec7267f 100644 --- a/src/oci/usage_api/models/usage_carbon_emissions_query.py +++ b/src/oci/usage_api/models/usage_carbon_emissions_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/usage_carbon_emissions_query_collection.py b/src/oci/usage_api/models/usage_carbon_emissions_query_collection.py index 9da2171507..3f59eb9859 100644 --- a/src/oci/usage_api/models/usage_carbon_emissions_query_collection.py +++ b/src/oci/usage_api/models/usage_carbon_emissions_query_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/usage_carbon_emissions_query_definition.py b/src/oci/usage_api/models/usage_carbon_emissions_query_definition.py index 1111c7ea81..abe73664d1 100644 --- a/src/oci/usage_api/models/usage_carbon_emissions_query_definition.py +++ b/src/oci/usage_api/models/usage_carbon_emissions_query_definition.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/usage_carbon_emissions_query_summary.py b/src/oci/usage_api/models/usage_carbon_emissions_query_summary.py index 2937beaa69..8fc49c3b32 100644 --- a/src/oci/usage_api/models/usage_carbon_emissions_query_summary.py +++ b/src/oci/usage_api/models/usage_carbon_emissions_query_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/usage_carbon_emissions_report_query.py b/src/oci/usage_api/models/usage_carbon_emissions_report_query.py index 23d520ced0..4c1d2b43e6 100644 --- a/src/oci/usage_api/models/usage_carbon_emissions_report_query.py +++ b/src/oci/usage_api/models/usage_carbon_emissions_report_query.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/models/usage_summary.py b/src/oci/usage_api/models/usage_summary.py index 87f4fcfd2b..6ad1b828a8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/usageapi_client.py b/src/oci/usage_api/usageapi_client.py index 37fc0852fe..87646798f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/usage_api/usageapi_client_composite_operations.py b/src/oci/usage_api/usageapi_client_composite_operations.py index e6c2e1272c..094b3ab028 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20200107 diff --git a/src/oci/util.py b/src/oci/util.py index 5e876aea3a..2f70fe7d02 100644 --- a/src/oci/util.py +++ b/src/oci/util.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache 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 e76557ee16..95c20526be 100644 --- a/src/oci/vault/__init__.py +++ b/src/oci/vault/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/__init__.py b/src/oci/vault/models/__init__.py index 8c25985c97..dd0200ab7f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/adb_target_system_details.py b/src/oci/vault/models/adb_target_system_details.py index efd8587199..07c5f3286f 100644 --- a/src/oci/vault/models/adb_target_system_details.py +++ b/src/oci/vault/models/adb_target_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/base64_secret_content_details.py b/src/oci/vault/models/base64_secret_content_details.py index 8fef0bc90b..148e975d4a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/bytes_generation_context.py b/src/oci/vault/models/bytes_generation_context.py index 14de5a5939..53f5a6864b 100644 --- a/src/oci/vault/models/bytes_generation_context.py +++ b/src/oci/vault/models/bytes_generation_context.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/change_secret_compartment_details.py b/src/oci/vault/models/change_secret_compartment_details.py index 6523494fe5..34acc15748 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/create_secret_details.py b/src/oci/vault/models/create_secret_details.py index abee243269..48bdd9e326 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/function_target_system_details.py b/src/oci/vault/models/function_target_system_details.py index d343306986..eb210b7f88 100644 --- a/src/oci/vault/models/function_target_system_details.py +++ b/src/oci/vault/models/function_target_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/passphrase_generation_context.py b/src/oci/vault/models/passphrase_generation_context.py index 0e5591118a..19fa3c5584 100644 --- a/src/oci/vault/models/passphrase_generation_context.py +++ b/src/oci/vault/models/passphrase_generation_context.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/rotation_config.py b/src/oci/vault/models/rotation_config.py index 4e61bcc518..55f5d5486a 100644 --- a/src/oci/vault/models/rotation_config.py +++ b/src/oci/vault/models/rotation_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/schedule_secret_deletion_details.py b/src/oci/vault/models/schedule_secret_deletion_details.py index 78de05287a..fe921628f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 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 31b05d20f4..66c1331f7f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/secret.py b/src/oci/vault/models/secret.py index a07fd4f2f3..91288c0954 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/secret_content_details.py b/src/oci/vault/models/secret_content_details.py index d6c446b2e2..d2d540d5ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/secret_expiry_rule.py b/src/oci/vault/models/secret_expiry_rule.py index 1e4a5b0509..ab9b8a264e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/secret_generation_context.py b/src/oci/vault/models/secret_generation_context.py index 6a7ab1641c..c80f15d4f5 100644 --- a/src/oci/vault/models/secret_generation_context.py +++ b/src/oci/vault/models/secret_generation_context.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/secret_reuse_rule.py b/src/oci/vault/models/secret_reuse_rule.py index fc3e273c33..a8e34eedfa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/secret_rule.py b/src/oci/vault/models/secret_rule.py index 1c8ac1be49..9e5d2f2894 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/secret_summary.py b/src/oci/vault/models/secret_summary.py index 5a9637b0a9..c2e61ee9ff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/secret_version.py b/src/oci/vault/models/secret_version.py index dff37039d9..1ad3cd31ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/secret_version_summary.py b/src/oci/vault/models/secret_version_summary.py index 49c3ec1926..fdb6c0411a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/ssh_key_generation_context.py b/src/oci/vault/models/ssh_key_generation_context.py index c68295a1f5..d1660c9856 100644 --- a/src/oci/vault/models/ssh_key_generation_context.py +++ b/src/oci/vault/models/ssh_key_generation_context.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/target_system_details.py b/src/oci/vault/models/target_system_details.py index c24f6c2ad4..a3859620df 100644 --- a/src/oci/vault/models/target_system_details.py +++ b/src/oci/vault/models/target_system_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/models/update_secret_details.py b/src/oci/vault/models/update_secret_details.py index 24b9565bb6..4b62548282 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/vaults_client.py b/src/oci/vault/vaults_client.py index 6579055ef6..119088fb9c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vault/vaults_client_composite_operations.py b/src/oci/vault/vaults_client_composite_operations.py index 9daf36f59b..34f816682e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180608 diff --git a/src/oci/vbs_inst/__init__.py b/src/oci/vbs_inst/__init__.py index 36f7c6b40e..016a8af4eb 100644 --- a/src/oci/vbs_inst/__init__.py +++ b/src/oci/vbs_inst/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/__init__.py b/src/oci/vbs_inst/models/__init__.py index 303ff589a4..92def7f94e 100644 --- a/src/oci/vbs_inst/models/__init__.py +++ b/src/oci/vbs_inst/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/change_vbs_instance_compartment_details.py b/src/oci/vbs_inst/models/change_vbs_instance_compartment_details.py index 06c731e311..110c2df032 100644 --- a/src/oci/vbs_inst/models/change_vbs_instance_compartment_details.py +++ b/src/oci/vbs_inst/models/change_vbs_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/create_vbs_instance_details.py b/src/oci/vbs_inst/models/create_vbs_instance_details.py index 4dd5ea1bc4..abbe11f7ae 100644 --- a/src/oci/vbs_inst/models/create_vbs_instance_details.py +++ b/src/oci/vbs_inst/models/create_vbs_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/update_vbs_instance_details.py b/src/oci/vbs_inst/models/update_vbs_instance_details.py index 55f093d10e..f5c014736c 100644 --- a/src/oci/vbs_inst/models/update_vbs_instance_details.py +++ b/src/oci/vbs_inst/models/update_vbs_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/vbs_instance.py b/src/oci/vbs_inst/models/vbs_instance.py index 6d9e267ce4..abffca5dbf 100644 --- a/src/oci/vbs_inst/models/vbs_instance.py +++ b/src/oci/vbs_inst/models/vbs_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/vbs_instance_summary.py b/src/oci/vbs_inst/models/vbs_instance_summary.py index ede9e47d85..524a0549ef 100644 --- a/src/oci/vbs_inst/models/vbs_instance_summary.py +++ b/src/oci/vbs_inst/models/vbs_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/vbs_instance_summary_collection.py b/src/oci/vbs_inst/models/vbs_instance_summary_collection.py index 967f1d83ae..6fc6499d63 100644 --- a/src/oci/vbs_inst/models/vbs_instance_summary_collection.py +++ b/src/oci/vbs_inst/models/vbs_instance_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/work_request.py b/src/oci/vbs_inst/models/work_request.py index c9b5651f2d..9337011ef1 100644 --- a/src/oci/vbs_inst/models/work_request.py +++ b/src/oci/vbs_inst/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/work_request_error.py b/src/oci/vbs_inst/models/work_request_error.py index 559464c523..9a3c379694 100644 --- a/src/oci/vbs_inst/models/work_request_error.py +++ b/src/oci/vbs_inst/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/work_request_error_collection.py b/src/oci/vbs_inst/models/work_request_error_collection.py index 90c98c0fe9..ad92cf69f6 100644 --- a/src/oci/vbs_inst/models/work_request_error_collection.py +++ b/src/oci/vbs_inst/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/work_request_log_entry.py b/src/oci/vbs_inst/models/work_request_log_entry.py index c5c8cd1ce4..c357d66f06 100644 --- a/src/oci/vbs_inst/models/work_request_log_entry.py +++ b/src/oci/vbs_inst/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/work_request_log_entry_collection.py b/src/oci/vbs_inst/models/work_request_log_entry_collection.py index 996221bcaf..567bc32641 100644 --- a/src/oci/vbs_inst/models/work_request_log_entry_collection.py +++ b/src/oci/vbs_inst/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/work_request_resource.py b/src/oci/vbs_inst/models/work_request_resource.py index bfe21f7c1c..ac41b5fd7f 100644 --- a/src/oci/vbs_inst/models/work_request_resource.py +++ b/src/oci/vbs_inst/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/work_request_summary.py b/src/oci/vbs_inst/models/work_request_summary.py index 390b296f41..6ed972260b 100644 --- a/src/oci/vbs_inst/models/work_request_summary.py +++ b/src/oci/vbs_inst/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/models/work_request_summary_collection.py b/src/oci/vbs_inst/models/work_request_summary_collection.py index 398d6a63b5..ee20f2d5bc 100644 --- a/src/oci/vbs_inst/models/work_request_summary_collection.py +++ b/src/oci/vbs_inst/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/vbs_instance_client.py b/src/oci/vbs_inst/vbs_instance_client.py index 2244fd2e9d..7e1e4eb372 100644 --- a/src/oci/vbs_inst/vbs_instance_client.py +++ b/src/oci/vbs_inst/vbs_instance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/vbs_inst/vbs_instance_client_composite_operations.py b/src/oci/vbs_inst/vbs_instance_client_composite_operations.py index c21e775580..c7e0f8f61e 100644 --- a/src/oci/vbs_inst/vbs_instance_client_composite_operations.py +++ b/src/oci/vbs_inst/vbs_instance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20180828 diff --git a/src/oci/version.py b/src/oci/version.py index e41ffc164a..aab815d506 100644 --- a/src/oci/version.py +++ b/src/oci/version.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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.141.1" +__version__ = "2.142.0" diff --git a/src/oci/visual_builder/__init__.py b/src/oci/visual_builder/__init__.py index 52ac8ee1ff..49a8133a53 100644 --- a/src/oci/visual_builder/__init__.py +++ b/src/oci/visual_builder/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/__init__.py b/src/oci/visual_builder/models/__init__.py index fdf72c27af..cdedc07d15 100644 --- a/src/oci/visual_builder/models/__init__.py +++ b/src/oci/visual_builder/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/application_summary.py b/src/oci/visual_builder/models/application_summary.py index 4a8841db4b..d5d02a8bc1 100644 --- a/src/oci/visual_builder/models/application_summary.py +++ b/src/oci/visual_builder/models/application_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/application_summary_collection.py b/src/oci/visual_builder/models/application_summary_collection.py index ff70c0a07e..dd3a84483e 100644 --- a/src/oci/visual_builder/models/application_summary_collection.py +++ b/src/oci/visual_builder/models/application_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/change_vb_instance_compartment_details.py b/src/oci/visual_builder/models/change_vb_instance_compartment_details.py index 5cdb52ca28..be28e6199f 100644 --- a/src/oci/visual_builder/models/change_vb_instance_compartment_details.py +++ b/src/oci/visual_builder/models/change_vb_instance_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/create_custom_endpoint_details.py b/src/oci/visual_builder/models/create_custom_endpoint_details.py index a1ed181585..b7c339cfb6 100644 --- a/src/oci/visual_builder/models/create_custom_endpoint_details.py +++ b/src/oci/visual_builder/models/create_custom_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/create_vb_instance_details.py b/src/oci/visual_builder/models/create_vb_instance_details.py index 7d9d6c1417..2ff95f0db4 100644 --- a/src/oci/visual_builder/models/create_vb_instance_details.py +++ b/src/oci/visual_builder/models/create_vb_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/custom_endpoint_details.py b/src/oci/visual_builder/models/custom_endpoint_details.py index 406671fc10..913498e6df 100644 --- a/src/oci/visual_builder/models/custom_endpoint_details.py +++ b/src/oci/visual_builder/models/custom_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/network_endpoint_details.py b/src/oci/visual_builder/models/network_endpoint_details.py index f8bae56b23..48e513eb2d 100644 --- a/src/oci/visual_builder/models/network_endpoint_details.py +++ b/src/oci/visual_builder/models/network_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/private_endpoint_details.py b/src/oci/visual_builder/models/private_endpoint_details.py index e78a947be6..1ed637c8bd 100644 --- a/src/oci/visual_builder/models/private_endpoint_details.py +++ b/src/oci/visual_builder/models/private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/request_summarized_applications_details.py b/src/oci/visual_builder/models/request_summarized_applications_details.py index c4308bccb4..8717569b59 100644 --- a/src/oci/visual_builder/models/request_summarized_applications_details.py +++ b/src/oci/visual_builder/models/request_summarized_applications_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/update_custom_endpoint_details.py b/src/oci/visual_builder/models/update_custom_endpoint_details.py index 8c08cc4ea2..3eb805b18d 100644 --- a/src/oci/visual_builder/models/update_custom_endpoint_details.py +++ b/src/oci/visual_builder/models/update_custom_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/update_network_endpoint_details.py b/src/oci/visual_builder/models/update_network_endpoint_details.py index eb4b60af8c..6c9cdc7003 100644 --- a/src/oci/visual_builder/models/update_network_endpoint_details.py +++ b/src/oci/visual_builder/models/update_network_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/update_private_endpoint_details.py b/src/oci/visual_builder/models/update_private_endpoint_details.py index 08e3b14db6..4ef0bae0f9 100644 --- a/src/oci/visual_builder/models/update_private_endpoint_details.py +++ b/src/oci/visual_builder/models/update_private_endpoint_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/update_vb_instance_details.py b/src/oci/visual_builder/models/update_vb_instance_details.py index 90326a6af6..2d5a86cb31 100644 --- a/src/oci/visual_builder/models/update_vb_instance_details.py +++ b/src/oci/visual_builder/models/update_vb_instance_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/vb_instance.py b/src/oci/visual_builder/models/vb_instance.py index 1161eccc67..2c971c812b 100644 --- a/src/oci/visual_builder/models/vb_instance.py +++ b/src/oci/visual_builder/models/vb_instance.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/vb_instance_summary.py b/src/oci/visual_builder/models/vb_instance_summary.py index d3f6cb1dae..310bb41ef1 100644 --- a/src/oci/visual_builder/models/vb_instance_summary.py +++ b/src/oci/visual_builder/models/vb_instance_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/vb_instance_summary_collection.py b/src/oci/visual_builder/models/vb_instance_summary_collection.py index 3bcb2f689d..5e850eaddd 100644 --- a/src/oci/visual_builder/models/vb_instance_summary_collection.py +++ b/src/oci/visual_builder/models/vb_instance_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/work_request.py b/src/oci/visual_builder/models/work_request.py index b96d92e050..c32958adb0 100644 --- a/src/oci/visual_builder/models/work_request.py +++ b/src/oci/visual_builder/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/work_request_error.py b/src/oci/visual_builder/models/work_request_error.py index dfdcf9a92d..09bdbd2a3b 100644 --- a/src/oci/visual_builder/models/work_request_error.py +++ b/src/oci/visual_builder/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/work_request_error_collection.py b/src/oci/visual_builder/models/work_request_error_collection.py index c68d55c32d..73b5c0dc5e 100644 --- a/src/oci/visual_builder/models/work_request_error_collection.py +++ b/src/oci/visual_builder/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/work_request_log_entry.py b/src/oci/visual_builder/models/work_request_log_entry.py index fc33be671e..f731922191 100644 --- a/src/oci/visual_builder/models/work_request_log_entry.py +++ b/src/oci/visual_builder/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/work_request_log_entry_collection.py b/src/oci/visual_builder/models/work_request_log_entry_collection.py index e142da521c..12f3162b7b 100644 --- a/src/oci/visual_builder/models/work_request_log_entry_collection.py +++ b/src/oci/visual_builder/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/work_request_resource.py b/src/oci/visual_builder/models/work_request_resource.py index 8681083d11..627e7b2d9d 100644 --- a/src/oci/visual_builder/models/work_request_resource.py +++ b/src/oci/visual_builder/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/work_request_summary.py b/src/oci/visual_builder/models/work_request_summary.py index 85258f7e41..2f60a12a59 100644 --- a/src/oci/visual_builder/models/work_request_summary.py +++ b/src/oci/visual_builder/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/models/work_request_summary_collection.py b/src/oci/visual_builder/models/work_request_summary_collection.py index fe9e3d27b2..4cb8765e88 100644 --- a/src/oci/visual_builder/models/work_request_summary_collection.py +++ b/src/oci/visual_builder/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/vb_instance_client.py b/src/oci/visual_builder/vb_instance_client.py index 5864d7bb24..e5a7d9905b 100644 --- a/src/oci/visual_builder/vb_instance_client.py +++ b/src/oci/visual_builder/vb_instance_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/visual_builder/vb_instance_client_composite_operations.py b/src/oci/visual_builder/vb_instance_client_composite_operations.py index 614530ca04..d7ea0d3c1a 100644 --- a/src/oci/visual_builder/vb_instance_client_composite_operations.py +++ b/src/oci/visual_builder/vb_instance_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210601 diff --git a/src/oci/vn_monitoring/__init__.py b/src/oci/vn_monitoring/__init__.py index 9bc7e76707..758df4805c 100644 --- a/src/oci/vn_monitoring/__init__.py +++ b/src/oci/vn_monitoring/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/__init__.py b/src/oci/vn_monitoring/models/__init__.py index 86d4d224b8..bafc4ad51c 100644 --- a/src/oci/vn_monitoring/models/__init__.py +++ b/src/oci/vn_monitoring/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/access_denied_traffic_node.py b/src/oci/vn_monitoring/models/access_denied_traffic_node.py index 9cf299e62b..12a64614d7 100644 --- a/src/oci/vn_monitoring/models/access_denied_traffic_node.py +++ b/src/oci/vn_monitoring/models/access_denied_traffic_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_drg_route_distribution_statement_details.py b/src/oci/vn_monitoring/models/add_drg_route_distribution_statement_details.py index 0d30e6021d..24df77237d 100644 --- a/src/oci/vn_monitoring/models/add_drg_route_distribution_statement_details.py +++ b/src/oci/vn_monitoring/models/add_drg_route_distribution_statement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_drg_route_distribution_statements_details.py b/src/oci/vn_monitoring/models/add_drg_route_distribution_statements_details.py index 9d32216798..e8b07f4fc4 100644 --- a/src/oci/vn_monitoring/models/add_drg_route_distribution_statements_details.py +++ b/src/oci/vn_monitoring/models/add_drg_route_distribution_statements_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_drg_route_rule_details.py b/src/oci/vn_monitoring/models/add_drg_route_rule_details.py index b38fdd0126..9fc2adcaef 100644 --- a/src/oci/vn_monitoring/models/add_drg_route_rule_details.py +++ b/src/oci/vn_monitoring/models/add_drg_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_drg_route_rules_details.py b/src/oci/vn_monitoring/models/add_drg_route_rules_details.py index be38f089e8..6355d35735 100644 --- a/src/oci/vn_monitoring/models/add_drg_route_rules_details.py +++ b/src/oci/vn_monitoring/models/add_drg_route_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_network_security_group_security_rules_details.py b/src/oci/vn_monitoring/models/add_network_security_group_security_rules_details.py index 67911e3e6f..34248473e7 100644 --- a/src/oci/vn_monitoring/models/add_network_security_group_security_rules_details.py +++ b/src/oci/vn_monitoring/models/add_network_security_group_security_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_public_ip_pool_capacity_details.py b/src/oci/vn_monitoring/models/add_public_ip_pool_capacity_details.py index f035ed9a0d..4acb7a2f0b 100644 --- a/src/oci/vn_monitoring/models/add_public_ip_pool_capacity_details.py +++ b/src/oci/vn_monitoring/models/add_public_ip_pool_capacity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_security_rule_details.py b/src/oci/vn_monitoring/models/add_security_rule_details.py index 85422ee70d..6ed08f174a 100644 --- a/src/oci/vn_monitoring/models/add_security_rule_details.py +++ b/src/oci/vn_monitoring/models/add_security_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_subnet_ipv6_cidr_details.py b/src/oci/vn_monitoring/models/add_subnet_ipv6_cidr_details.py index e23722cb75..9aab7e9cde 100644 --- a/src/oci/vn_monitoring/models/add_subnet_ipv6_cidr_details.py +++ b/src/oci/vn_monitoring/models/add_subnet_ipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_vcn_cidr_details.py b/src/oci/vn_monitoring/models/add_vcn_cidr_details.py index 0509fd1154..d16023578e 100644 --- a/src/oci/vn_monitoring/models/add_vcn_cidr_details.py +++ b/src/oci/vn_monitoring/models/add_vcn_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/add_vcn_ipv6_cidr_details.py b/src/oci/vn_monitoring/models/add_vcn_ipv6_cidr_details.py index a39cac7c5b..8440852047 100644 --- a/src/oci/vn_monitoring/models/add_vcn_ipv6_cidr_details.py +++ b/src/oci/vn_monitoring/models/add_vcn_ipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/added_network_security_group_security_rules.py b/src/oci/vn_monitoring/models/added_network_security_group_security_rules.py index b06a2aed6a..a1721c1100 100644 --- a/src/oci/vn_monitoring/models/added_network_security_group_security_rules.py +++ b/src/oci/vn_monitoring/models/added_network_security_group_security_rules.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/adhoc_get_path_analysis_details.py b/src/oci/vn_monitoring/models/adhoc_get_path_analysis_details.py index e8125f1642..253779aa78 100644 --- a/src/oci/vn_monitoring/models/adhoc_get_path_analysis_details.py +++ b/src/oci/vn_monitoring/models/adhoc_get_path_analysis_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/allowed_ike_ip_sec_parameters.py b/src/oci/vn_monitoring/models/allowed_ike_ip_sec_parameters.py index f461f5a5e1..c3b49382a0 100644 --- a/src/oci/vn_monitoring/models/allowed_ike_ip_sec_parameters.py +++ b/src/oci/vn_monitoring/models/allowed_ike_ip_sec_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/allowed_phase_one_parameters.py b/src/oci/vn_monitoring/models/allowed_phase_one_parameters.py index 128ff06782..7721680aae 100644 --- a/src/oci/vn_monitoring/models/allowed_phase_one_parameters.py +++ b/src/oci/vn_monitoring/models/allowed_phase_one_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/allowed_phase_two_parameters.py b/src/oci/vn_monitoring/models/allowed_phase_two_parameters.py index f1fcf59909..de17e7eba1 100644 --- a/src/oci/vn_monitoring/models/allowed_phase_two_parameters.py +++ b/src/oci/vn_monitoring/models/allowed_phase_two_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/allowed_security_action.py b/src/oci/vn_monitoring/models/allowed_security_action.py index 9cd125bd75..42085ca6a5 100644 --- a/src/oci/vn_monitoring/models/allowed_security_action.py +++ b/src/oci/vn_monitoring/models/allowed_security_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/allowed_security_action_details.py b/src/oci/vn_monitoring/models/allowed_security_action_details.py index aaa3dd59a8..aed1e10e61 100644 --- a/src/oci/vn_monitoring/models/allowed_security_action_details.py +++ b/src/oci/vn_monitoring/models/allowed_security_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/allowed_security_configuration.py b/src/oci/vn_monitoring/models/allowed_security_configuration.py index db2402152f..a3073d1628 100644 --- a/src/oci/vn_monitoring/models/allowed_security_configuration.py +++ b/src/oci/vn_monitoring/models/allowed_security_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/bgp_session_info.py b/src/oci/vn_monitoring/models/bgp_session_info.py index 03d5663c9d..19704de804 100644 --- a/src/oci/vn_monitoring/models/bgp_session_info.py +++ b/src/oci/vn_monitoring/models/bgp_session_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/bulk_add_virtual_circuit_public_prefixes_details.py b/src/oci/vn_monitoring/models/bulk_add_virtual_circuit_public_prefixes_details.py index fb2f3e3735..01a0954434 100644 --- a/src/oci/vn_monitoring/models/bulk_add_virtual_circuit_public_prefixes_details.py +++ b/src/oci/vn_monitoring/models/bulk_add_virtual_circuit_public_prefixes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/bulk_delete_virtual_circuit_public_prefixes_details.py b/src/oci/vn_monitoring/models/bulk_delete_virtual_circuit_public_prefixes_details.py index 8f3a729c81..600cd8b31a 100644 --- a/src/oci/vn_monitoring/models/bulk_delete_virtual_circuit_public_prefixes_details.py +++ b/src/oci/vn_monitoring/models/bulk_delete_virtual_circuit_public_prefixes_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/byoip_allocated_range_collection.py b/src/oci/vn_monitoring/models/byoip_allocated_range_collection.py index 5aeaaf4fea..2d5eac639b 100644 --- a/src/oci/vn_monitoring/models/byoip_allocated_range_collection.py +++ b/src/oci/vn_monitoring/models/byoip_allocated_range_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/byoip_allocated_range_summary.py b/src/oci/vn_monitoring/models/byoip_allocated_range_summary.py index 56fc6441c0..de05aa8e69 100644 --- a/src/oci/vn_monitoring/models/byoip_allocated_range_summary.py +++ b/src/oci/vn_monitoring/models/byoip_allocated_range_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/byoip_range.py b/src/oci/vn_monitoring/models/byoip_range.py index b63d564254..ee17c43af2 100644 --- a/src/oci/vn_monitoring/models/byoip_range.py +++ b/src/oci/vn_monitoring/models/byoip_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/byoip_range_collection.py b/src/oci/vn_monitoring/models/byoip_range_collection.py index 824d5e8d4c..1780feeb00 100644 --- a/src/oci/vn_monitoring/models/byoip_range_collection.py +++ b/src/oci/vn_monitoring/models/byoip_range_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/byoip_range_summary.py b/src/oci/vn_monitoring/models/byoip_range_summary.py index 70bb25a076..482af489a8 100644 --- a/src/oci/vn_monitoring/models/byoip_range_summary.py +++ b/src/oci/vn_monitoring/models/byoip_range_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/byoip_range_vcn_ipv6_allocation_summary.py b/src/oci/vn_monitoring/models/byoip_range_vcn_ipv6_allocation_summary.py index 84066dfc62..0556a8fe65 100644 --- a/src/oci/vn_monitoring/models/byoip_range_vcn_ipv6_allocation_summary.py +++ b/src/oci/vn_monitoring/models/byoip_range_vcn_ipv6_allocation_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/byoipv6_cidr_details.py b/src/oci/vn_monitoring/models/byoipv6_cidr_details.py index 0fba95f34f..d0199ad1a1 100644 --- a/src/oci/vn_monitoring/models/byoipv6_cidr_details.py +++ b/src/oci/vn_monitoring/models/byoipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/capture_filter.py b/src/oci/vn_monitoring/models/capture_filter.py index c270206479..609c4dffdf 100644 --- a/src/oci/vn_monitoring/models/capture_filter.py +++ b/src/oci/vn_monitoring/models/capture_filter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_byoip_range_compartment_details.py b/src/oci/vn_monitoring/models/change_byoip_range_compartment_details.py index 7fadecad94..999407a5b8 100644 --- a/src/oci/vn_monitoring/models/change_byoip_range_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_byoip_range_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_capture_filter_compartment_details.py b/src/oci/vn_monitoring/models/change_capture_filter_compartment_details.py index 9c4947cde3..3599b145a5 100644 --- a/src/oci/vn_monitoring/models/change_capture_filter_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_capture_filter_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_cpe_compartment_details.py b/src/oci/vn_monitoring/models/change_cpe_compartment_details.py index cb03eb55be..8dc5290782 100644 --- a/src/oci/vn_monitoring/models/change_cpe_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_cpe_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_cross_connect_compartment_details.py b/src/oci/vn_monitoring/models/change_cross_connect_compartment_details.py index 2f183d6bdd..dc09a260c6 100644 --- a/src/oci/vn_monitoring/models/change_cross_connect_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_cross_connect_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_cross_connect_group_compartment_details.py b/src/oci/vn_monitoring/models/change_cross_connect_group_compartment_details.py index f9e5444606..71f388e4f7 100644 --- a/src/oci/vn_monitoring/models/change_cross_connect_group_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_cross_connect_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_dhcp_options_compartment_details.py b/src/oci/vn_monitoring/models/change_dhcp_options_compartment_details.py index 2bb7248eb8..a6bbc56e21 100644 --- a/src/oci/vn_monitoring/models/change_dhcp_options_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_dhcp_options_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_drg_compartment_details.py b/src/oci/vn_monitoring/models/change_drg_compartment_details.py index 7cc9edbf1e..f40c3bd8f9 100644 --- a/src/oci/vn_monitoring/models/change_drg_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_drg_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_internet_gateway_compartment_details.py b/src/oci/vn_monitoring/models/change_internet_gateway_compartment_details.py index 13f0c3852c..f0058b6112 100644 --- a/src/oci/vn_monitoring/models/change_internet_gateway_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_internet_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_ip_sec_connection_compartment_details.py b/src/oci/vn_monitoring/models/change_ip_sec_connection_compartment_details.py index 6be52dfd10..6f38d4488d 100644 --- a/src/oci/vn_monitoring/models/change_ip_sec_connection_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_ip_sec_connection_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_local_peering_gateway_compartment_details.py b/src/oci/vn_monitoring/models/change_local_peering_gateway_compartment_details.py index 2824237619..6e1c89ce1b 100644 --- a/src/oci/vn_monitoring/models/change_local_peering_gateway_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_local_peering_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_nat_gateway_compartment_details.py b/src/oci/vn_monitoring/models/change_nat_gateway_compartment_details.py index b142e06dbd..b465870417 100644 --- a/src/oci/vn_monitoring/models/change_nat_gateway_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_nat_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_network_security_group_compartment_details.py b/src/oci/vn_monitoring/models/change_network_security_group_compartment_details.py index 2b5643c5db..ebac09be9a 100644 --- a/src/oci/vn_monitoring/models/change_network_security_group_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_network_security_group_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_path_analyzer_test_compartment_details.py b/src/oci/vn_monitoring/models/change_path_analyzer_test_compartment_details.py index 9479ed8ca4..a026b5d491 100644 --- a/src/oci/vn_monitoring/models/change_path_analyzer_test_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_path_analyzer_test_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_public_ip_compartment_details.py b/src/oci/vn_monitoring/models/change_public_ip_compartment_details.py index 480e48183d..e4cc9f6d62 100644 --- a/src/oci/vn_monitoring/models/change_public_ip_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_public_ip_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_public_ip_pool_compartment_details.py b/src/oci/vn_monitoring/models/change_public_ip_pool_compartment_details.py index ae04ecd584..0a802d5638 100644 --- a/src/oci/vn_monitoring/models/change_public_ip_pool_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_public_ip_pool_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_remote_peering_connection_compartment_details.py b/src/oci/vn_monitoring/models/change_remote_peering_connection_compartment_details.py index 184f3b2c95..9097963520 100644 --- a/src/oci/vn_monitoring/models/change_remote_peering_connection_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_remote_peering_connection_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_route_table_compartment_details.py b/src/oci/vn_monitoring/models/change_route_table_compartment_details.py index 373631036f..bf54207eb8 100644 --- a/src/oci/vn_monitoring/models/change_route_table_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_route_table_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_security_list_compartment_details.py b/src/oci/vn_monitoring/models/change_security_list_compartment_details.py index 0516a20cb7..db1b2f91ec 100644 --- a/src/oci/vn_monitoring/models/change_security_list_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_security_list_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_service_gateway_compartment_details.py b/src/oci/vn_monitoring/models/change_service_gateway_compartment_details.py index 6fbfe9fa1b..4e890c5665 100644 --- a/src/oci/vn_monitoring/models/change_service_gateway_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_service_gateway_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_subnet_compartment_details.py b/src/oci/vn_monitoring/models/change_subnet_compartment_details.py index 4b57bdddee..2e11778961 100644 --- a/src/oci/vn_monitoring/models/change_subnet_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_subnet_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_vcn_compartment_details.py b/src/oci/vn_monitoring/models/change_vcn_compartment_details.py index 593cb15d0a..54f7f77980 100644 --- a/src/oci/vn_monitoring/models/change_vcn_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_vcn_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_virtual_circuit_compartment_details.py b/src/oci/vn_monitoring/models/change_virtual_circuit_compartment_details.py index 0c9024c988..4aa70e458d 100644 --- a/src/oci/vn_monitoring/models/change_virtual_circuit_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_virtual_circuit_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_vlan_compartment_details.py b/src/oci/vn_monitoring/models/change_vlan_compartment_details.py index e0e5351ded..8b595c30fc 100644 --- a/src/oci/vn_monitoring/models/change_vlan_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_vlan_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/change_vtap_compartment_details.py b/src/oci/vn_monitoring/models/change_vtap_compartment_details.py index 627efb9c25..a33e8c70ea 100644 --- a/src/oci/vn_monitoring/models/change_vtap_compartment_details.py +++ b/src/oci/vn_monitoring/models/change_vtap_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/compartment_internal.py b/src/oci/vn_monitoring/models/compartment_internal.py index b48c27deee..58428e9371 100644 --- a/src/oci/vn_monitoring/models/compartment_internal.py +++ b/src/oci/vn_monitoring/models/compartment_internal.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/compute_instance_endpoint.py b/src/oci/vn_monitoring/models/compute_instance_endpoint.py index 9a7b37dff6..93ea775499 100644 --- a/src/oci/vn_monitoring/models/compute_instance_endpoint.py +++ b/src/oci/vn_monitoring/models/compute_instance_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/connect_local_peering_gateways_details.py b/src/oci/vn_monitoring/models/connect_local_peering_gateways_details.py index 2a7920fd31..214747fe5d 100644 --- a/src/oci/vn_monitoring/models/connect_local_peering_gateways_details.py +++ b/src/oci/vn_monitoring/models/connect_local_peering_gateways_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/connect_remote_peering_connections_details.py b/src/oci/vn_monitoring/models/connect_remote_peering_connections_details.py index 567a783335..c45b18dd0c 100644 --- a/src/oci/vn_monitoring/models/connect_remote_peering_connections_details.py +++ b/src/oci/vn_monitoring/models/connect_remote_peering_connections_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cpe.py b/src/oci/vn_monitoring/models/cpe.py index 3840b94c5f..8100d6fa20 100644 --- a/src/oci/vn_monitoring/models/cpe.py +++ b/src/oci/vn_monitoring/models/cpe.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cpe_device_config_answer.py b/src/oci/vn_monitoring/models/cpe_device_config_answer.py index 97b01df835..d0d3d82b82 100644 --- a/src/oci/vn_monitoring/models/cpe_device_config_answer.py +++ b/src/oci/vn_monitoring/models/cpe_device_config_answer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cpe_device_config_question.py b/src/oci/vn_monitoring/models/cpe_device_config_question.py index 4580bf94f4..5d69f98ade 100644 --- a/src/oci/vn_monitoring/models/cpe_device_config_question.py +++ b/src/oci/vn_monitoring/models/cpe_device_config_question.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cpe_device_info.py b/src/oci/vn_monitoring/models/cpe_device_info.py index f810b36713..d8a11f5d30 100644 --- a/src/oci/vn_monitoring/models/cpe_device_info.py +++ b/src/oci/vn_monitoring/models/cpe_device_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cpe_device_shape_detail.py b/src/oci/vn_monitoring/models/cpe_device_shape_detail.py index e370e2c441..cad5d54153 100644 --- a/src/oci/vn_monitoring/models/cpe_device_shape_detail.py +++ b/src/oci/vn_monitoring/models/cpe_device_shape_detail.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cpe_device_shape_summary.py b/src/oci/vn_monitoring/models/cpe_device_shape_summary.py index 429c0c7fe6..3a9cf449c7 100644 --- a/src/oci/vn_monitoring/models/cpe_device_shape_summary.py +++ b/src/oci/vn_monitoring/models/cpe_device_shape_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_byoip_range_details.py b/src/oci/vn_monitoring/models/create_byoip_range_details.py index 3b1f2d3c51..5a17f04d9f 100644 --- a/src/oci/vn_monitoring/models/create_byoip_range_details.py +++ b/src/oci/vn_monitoring/models/create_byoip_range_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_capture_filter_details.py b/src/oci/vn_monitoring/models/create_capture_filter_details.py index 939bd0ffd4..7a789c2830 100644 --- a/src/oci/vn_monitoring/models/create_capture_filter_details.py +++ b/src/oci/vn_monitoring/models/create_capture_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_cpe_details.py b/src/oci/vn_monitoring/models/create_cpe_details.py index 98c4b87558..3018da0ca4 100644 --- a/src/oci/vn_monitoring/models/create_cpe_details.py +++ b/src/oci/vn_monitoring/models/create_cpe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_cross_connect_details.py b/src/oci/vn_monitoring/models/create_cross_connect_details.py index fb38b3e3b4..192019d791 100644 --- a/src/oci/vn_monitoring/models/create_cross_connect_details.py +++ b/src/oci/vn_monitoring/models/create_cross_connect_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_cross_connect_group_details.py b/src/oci/vn_monitoring/models/create_cross_connect_group_details.py index c40b76f960..aa1c0d26c9 100644 --- a/src/oci/vn_monitoring/models/create_cross_connect_group_details.py +++ b/src/oci/vn_monitoring/models/create_cross_connect_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_dhcp_details.py b/src/oci/vn_monitoring/models/create_dhcp_details.py index d287085989..9d4639bb56 100644 --- a/src/oci/vn_monitoring/models/create_dhcp_details.py +++ b/src/oci/vn_monitoring/models/create_dhcp_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_drg_attachment_details.py b/src/oci/vn_monitoring/models/create_drg_attachment_details.py index bd3b9a6865..1aa9cf4cef 100644 --- a/src/oci/vn_monitoring/models/create_drg_attachment_details.py +++ b/src/oci/vn_monitoring/models/create_drg_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_drg_details.py b/src/oci/vn_monitoring/models/create_drg_details.py index e592691651..2c29d93012 100644 --- a/src/oci/vn_monitoring/models/create_drg_details.py +++ b/src/oci/vn_monitoring/models/create_drg_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_drg_route_distribution_details.py b/src/oci/vn_monitoring/models/create_drg_route_distribution_details.py index 89abef2e4f..d68b80b98e 100644 --- a/src/oci/vn_monitoring/models/create_drg_route_distribution_details.py +++ b/src/oci/vn_monitoring/models/create_drg_route_distribution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_drg_route_table_details.py b/src/oci/vn_monitoring/models/create_drg_route_table_details.py index c155aab1b8..ea0717e02c 100644 --- a/src/oci/vn_monitoring/models/create_drg_route_table_details.py +++ b/src/oci/vn_monitoring/models/create_drg_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_internet_gateway_details.py b/src/oci/vn_monitoring/models/create_internet_gateway_details.py index d0d9f17c29..3176f855b2 100644 --- a/src/oci/vn_monitoring/models/create_internet_gateway_details.py +++ b/src/oci/vn_monitoring/models/create_internet_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_ip_sec_connection_details.py b/src/oci/vn_monitoring/models/create_ip_sec_connection_details.py index 696c9e3b91..d7b9f2d7d6 100644 --- a/src/oci/vn_monitoring/models/create_ip_sec_connection_details.py +++ b/src/oci/vn_monitoring/models/create_ip_sec_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_ip_sec_connection_tunnel_details.py b/src/oci/vn_monitoring/models/create_ip_sec_connection_tunnel_details.py index 676b7c218f..da2aaeda94 100644 --- a/src/oci/vn_monitoring/models/create_ip_sec_connection_tunnel_details.py +++ b/src/oci/vn_monitoring/models/create_ip_sec_connection_tunnel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_ip_sec_tunnel_bgp_session_details.py b/src/oci/vn_monitoring/models/create_ip_sec_tunnel_bgp_session_details.py index 30d91ca2b5..4e75b3d4e1 100644 --- a/src/oci/vn_monitoring/models/create_ip_sec_tunnel_bgp_session_details.py +++ b/src/oci/vn_monitoring/models/create_ip_sec_tunnel_bgp_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_ip_sec_tunnel_encryption_domain_details.py b/src/oci/vn_monitoring/models/create_ip_sec_tunnel_encryption_domain_details.py index 6178515374..db5ed5692f 100644 --- a/src/oci/vn_monitoring/models/create_ip_sec_tunnel_encryption_domain_details.py +++ b/src/oci/vn_monitoring/models/create_ip_sec_tunnel_encryption_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_ipv6_details.py b/src/oci/vn_monitoring/models/create_ipv6_details.py index 22d7caa0b9..e6e8ea7937 100644 --- a/src/oci/vn_monitoring/models/create_ipv6_details.py +++ b/src/oci/vn_monitoring/models/create_ipv6_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_local_peering_gateway_details.py b/src/oci/vn_monitoring/models/create_local_peering_gateway_details.py index edb0bee127..36323f7ea0 100644 --- a/src/oci/vn_monitoring/models/create_local_peering_gateway_details.py +++ b/src/oci/vn_monitoring/models/create_local_peering_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_macsec_key.py b/src/oci/vn_monitoring/models/create_macsec_key.py index ff35410f76..5c560411de 100644 --- a/src/oci/vn_monitoring/models/create_macsec_key.py +++ b/src/oci/vn_monitoring/models/create_macsec_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_macsec_properties.py b/src/oci/vn_monitoring/models/create_macsec_properties.py index e3a191af03..9396fc8914 100644 --- a/src/oci/vn_monitoring/models/create_macsec_properties.py +++ b/src/oci/vn_monitoring/models/create_macsec_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_nat_gateway_details.py b/src/oci/vn_monitoring/models/create_nat_gateway_details.py index 23eb017f11..27c047c3ff 100644 --- a/src/oci/vn_monitoring/models/create_nat_gateway_details.py +++ b/src/oci/vn_monitoring/models/create_nat_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_network_security_group_details.py b/src/oci/vn_monitoring/models/create_network_security_group_details.py index 76cc145e2c..bc9629b68c 100644 --- a/src/oci/vn_monitoring/models/create_network_security_group_details.py +++ b/src/oci/vn_monitoring/models/create_network_security_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_path_analyzer_test_details.py b/src/oci/vn_monitoring/models/create_path_analyzer_test_details.py index 2d3e310604..f6a412aa3b 100644 --- a/src/oci/vn_monitoring/models/create_path_analyzer_test_details.py +++ b/src/oci/vn_monitoring/models/create_path_analyzer_test_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_private_ip_details.py b/src/oci/vn_monitoring/models/create_private_ip_details.py index c123ec35d0..2994ea75f9 100644 --- a/src/oci/vn_monitoring/models/create_private_ip_details.py +++ b/src/oci/vn_monitoring/models/create_private_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_public_ip_details.py b/src/oci/vn_monitoring/models/create_public_ip_details.py index c2db17138e..7cd9baaf49 100644 --- a/src/oci/vn_monitoring/models/create_public_ip_details.py +++ b/src/oci/vn_monitoring/models/create_public_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_public_ip_pool_details.py b/src/oci/vn_monitoring/models/create_public_ip_pool_details.py index 1cf4537586..81d42549a0 100644 --- a/src/oci/vn_monitoring/models/create_public_ip_pool_details.py +++ b/src/oci/vn_monitoring/models/create_public_ip_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_remote_peering_connection_details.py b/src/oci/vn_monitoring/models/create_remote_peering_connection_details.py index 4e946e49a7..7c96867ecc 100644 --- a/src/oci/vn_monitoring/models/create_remote_peering_connection_details.py +++ b/src/oci/vn_monitoring/models/create_remote_peering_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_route_table_details.py b/src/oci/vn_monitoring/models/create_route_table_details.py index 3e6986be93..fee03c67b0 100644 --- a/src/oci/vn_monitoring/models/create_route_table_details.py +++ b/src/oci/vn_monitoring/models/create_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_security_list_details.py b/src/oci/vn_monitoring/models/create_security_list_details.py index 617d987121..cc99343cf7 100644 --- a/src/oci/vn_monitoring/models/create_security_list_details.py +++ b/src/oci/vn_monitoring/models/create_security_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_service_gateway_details.py b/src/oci/vn_monitoring/models/create_service_gateway_details.py index 669f54e9f0..479b7d68a4 100644 --- a/src/oci/vn_monitoring/models/create_service_gateway_details.py +++ b/src/oci/vn_monitoring/models/create_service_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_subnet_details.py b/src/oci/vn_monitoring/models/create_subnet_details.py index 99a55febea..0a1a695a4a 100644 --- a/src/oci/vn_monitoring/models/create_subnet_details.py +++ b/src/oci/vn_monitoring/models/create_subnet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_vcn_details.py b/src/oci/vn_monitoring/models/create_vcn_details.py index 5eaa322278..ec431fa685 100644 --- a/src/oci/vn_monitoring/models/create_vcn_details.py +++ b/src/oci/vn_monitoring/models/create_vcn_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_virtual_circuit_details.py b/src/oci/vn_monitoring/models/create_virtual_circuit_details.py index 59238510bf..5f06b985f1 100644 --- a/src/oci/vn_monitoring/models/create_virtual_circuit_details.py +++ b/src/oci/vn_monitoring/models/create_virtual_circuit_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_virtual_circuit_public_prefix_details.py b/src/oci/vn_monitoring/models/create_virtual_circuit_public_prefix_details.py index a353cc4df9..2e12bdd553 100644 --- a/src/oci/vn_monitoring/models/create_virtual_circuit_public_prefix_details.py +++ b/src/oci/vn_monitoring/models/create_virtual_circuit_public_prefix_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_vlan_details.py b/src/oci/vn_monitoring/models/create_vlan_details.py index 4a343d357a..e2b6466558 100644 --- a/src/oci/vn_monitoring/models/create_vlan_details.py +++ b/src/oci/vn_monitoring/models/create_vlan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_vnic_details.py b/src/oci/vn_monitoring/models/create_vnic_details.py index 4025048102..74f8ce6f15 100644 --- a/src/oci/vn_monitoring/models/create_vnic_details.py +++ b/src/oci/vn_monitoring/models/create_vnic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/create_vtap_details.py b/src/oci/vn_monitoring/models/create_vtap_details.py index c05d0162af..e75ab51240 100644 --- a/src/oci/vn_monitoring/models/create_vtap_details.py +++ b/src/oci/vn_monitoring/models/create_vtap_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cross_connect.py b/src/oci/vn_monitoring/models/cross_connect.py index d0281ad701..a1deba7858 100644 --- a/src/oci/vn_monitoring/models/cross_connect.py +++ b/src/oci/vn_monitoring/models/cross_connect.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cross_connect_group.py b/src/oci/vn_monitoring/models/cross_connect_group.py index 0a5afc21d8..9a9db876b9 100644 --- a/src/oci/vn_monitoring/models/cross_connect_group.py +++ b/src/oci/vn_monitoring/models/cross_connect_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cross_connect_location.py b/src/oci/vn_monitoring/models/cross_connect_location.py index d959ceb624..c2b1bf0b7c 100644 --- a/src/oci/vn_monitoring/models/cross_connect_location.py +++ b/src/oci/vn_monitoring/models/cross_connect_location.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cross_connect_mapping.py b/src/oci/vn_monitoring/models/cross_connect_mapping.py index 9a921f75a9..d85002b86f 100644 --- a/src/oci/vn_monitoring/models/cross_connect_mapping.py +++ b/src/oci/vn_monitoring/models/cross_connect_mapping.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cross_connect_mapping_details.py b/src/oci/vn_monitoring/models/cross_connect_mapping_details.py index 0275de961f..d1b3d3650c 100644 --- a/src/oci/vn_monitoring/models/cross_connect_mapping_details.py +++ b/src/oci/vn_monitoring/models/cross_connect_mapping_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cross_connect_mapping_details_collection.py b/src/oci/vn_monitoring/models/cross_connect_mapping_details_collection.py index d5cfaeab7a..f58d2fde48 100644 --- a/src/oci/vn_monitoring/models/cross_connect_mapping_details_collection.py +++ b/src/oci/vn_monitoring/models/cross_connect_mapping_details_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cross_connect_port_speed_shape.py b/src/oci/vn_monitoring/models/cross_connect_port_speed_shape.py index f24803ada6..e5982395d8 100644 --- a/src/oci/vn_monitoring/models/cross_connect_port_speed_shape.py +++ b/src/oci/vn_monitoring/models/cross_connect_port_speed_shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/cross_connect_status.py b/src/oci/vn_monitoring/models/cross_connect_status.py index 14b54cc2c9..406efc4a50 100644 --- a/src/oci/vn_monitoring/models/cross_connect_status.py +++ b/src/oci/vn_monitoring/models/cross_connect_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/default_drg_route_tables.py b/src/oci/vn_monitoring/models/default_drg_route_tables.py index eab5df768d..162fd0cbe1 100644 --- a/src/oci/vn_monitoring/models/default_drg_route_tables.py +++ b/src/oci/vn_monitoring/models/default_drg_route_tables.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/default_phase_one_parameters.py b/src/oci/vn_monitoring/models/default_phase_one_parameters.py index ef5d7f09f1..3543088111 100644 --- a/src/oci/vn_monitoring/models/default_phase_one_parameters.py +++ b/src/oci/vn_monitoring/models/default_phase_one_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/default_phase_two_parameters.py b/src/oci/vn_monitoring/models/default_phase_two_parameters.py index b4e0d654a8..b64ba3fd6b 100644 --- a/src/oci/vn_monitoring/models/default_phase_two_parameters.py +++ b/src/oci/vn_monitoring/models/default_phase_two_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/delete_virtual_circuit_public_prefix_details.py b/src/oci/vn_monitoring/models/delete_virtual_circuit_public_prefix_details.py index 25bd1c6f4c..8124a93fc1 100644 --- a/src/oci/vn_monitoring/models/delete_virtual_circuit_public_prefix_details.py +++ b/src/oci/vn_monitoring/models/delete_virtual_circuit_public_prefix_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/denied_security_action.py b/src/oci/vn_monitoring/models/denied_security_action.py index d8fbe628ea..62a34cf759 100644 --- a/src/oci/vn_monitoring/models/denied_security_action.py +++ b/src/oci/vn_monitoring/models/denied_security_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/denied_security_action_details.py b/src/oci/vn_monitoring/models/denied_security_action_details.py index 3b176c7dde..f199bb67a7 100644 --- a/src/oci/vn_monitoring/models/denied_security_action_details.py +++ b/src/oci/vn_monitoring/models/denied_security_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/dhcp_dns_option.py b/src/oci/vn_monitoring/models/dhcp_dns_option.py index d76e2c9891..f7b7ebb1b0 100644 --- a/src/oci/vn_monitoring/models/dhcp_dns_option.py +++ b/src/oci/vn_monitoring/models/dhcp_dns_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/dhcp_option.py b/src/oci/vn_monitoring/models/dhcp_option.py index e2359b83e9..21080562f9 100644 --- a/src/oci/vn_monitoring/models/dhcp_option.py +++ b/src/oci/vn_monitoring/models/dhcp_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/dhcp_options.py b/src/oci/vn_monitoring/models/dhcp_options.py index e9566e871b..1c8a28a74e 100644 --- a/src/oci/vn_monitoring/models/dhcp_options.py +++ b/src/oci/vn_monitoring/models/dhcp_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/dhcp_search_domain_option.py b/src/oci/vn_monitoring/models/dhcp_search_domain_option.py index bc59f3ea0a..6e863e95dd 100644 --- a/src/oci/vn_monitoring/models/dhcp_search_domain_option.py +++ b/src/oci/vn_monitoring/models/dhcp_search_domain_option.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/dpd_config.py b/src/oci/vn_monitoring/models/dpd_config.py index 9696a70baf..ac8eb13d78 100644 --- a/src/oci/vn_monitoring/models/dpd_config.py +++ b/src/oci/vn_monitoring/models/dpd_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg.py b/src/oci/vn_monitoring/models/drg.py index 1ab1107296..c36737e808 100644 --- a/src/oci/vn_monitoring/models/drg.py +++ b/src/oci/vn_monitoring/models/drg.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_attachment.py b/src/oci/vn_monitoring/models/drg_attachment.py index b0d7e217f4..87e9b863c3 100644 --- a/src/oci/vn_monitoring/models/drg_attachment.py +++ b/src/oci/vn_monitoring/models/drg_attachment.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_attachment_id_drg_route_distribution_match_criteria.py b/src/oci/vn_monitoring/models/drg_attachment_id_drg_route_distribution_match_criteria.py index 2c2ac3bd23..768752ab6b 100644 --- a/src/oci/vn_monitoring/models/drg_attachment_id_drg_route_distribution_match_criteria.py +++ b/src/oci/vn_monitoring/models/drg_attachment_id_drg_route_distribution_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_attachment_info.py b/src/oci/vn_monitoring/models/drg_attachment_info.py index 43ede4eaf5..7951382bd1 100644 --- a/src/oci/vn_monitoring/models/drg_attachment_info.py +++ b/src/oci/vn_monitoring/models/drg_attachment_info.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_attachment_match_all_drg_route_distribution_match_criteria.py b/src/oci/vn_monitoring/models/drg_attachment_match_all_drg_route_distribution_match_criteria.py index 206177d321..7abc0814b7 100644 --- a/src/oci/vn_monitoring/models/drg_attachment_match_all_drg_route_distribution_match_criteria.py +++ b/src/oci/vn_monitoring/models/drg_attachment_match_all_drg_route_distribution_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_attachment_network_create_details.py b/src/oci/vn_monitoring/models/drg_attachment_network_create_details.py index ba92cb10c0..4471350bb6 100644 --- a/src/oci/vn_monitoring/models/drg_attachment_network_create_details.py +++ b/src/oci/vn_monitoring/models/drg_attachment_network_create_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_attachment_network_details.py b/src/oci/vn_monitoring/models/drg_attachment_network_details.py index a7fb778c46..e54c05ce81 100644 --- a/src/oci/vn_monitoring/models/drg_attachment_network_details.py +++ b/src/oci/vn_monitoring/models/drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_attachment_network_update_details.py b/src/oci/vn_monitoring/models/drg_attachment_network_update_details.py index 99650fa509..c096c88ae2 100644 --- a/src/oci/vn_monitoring/models/drg_attachment_network_update_details.py +++ b/src/oci/vn_monitoring/models/drg_attachment_network_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_attachment_type_drg_route_distribution_match_criteria.py b/src/oci/vn_monitoring/models/drg_attachment_type_drg_route_distribution_match_criteria.py index 0a016ed109..55cd58d271 100644 --- a/src/oci/vn_monitoring/models/drg_attachment_type_drg_route_distribution_match_criteria.py +++ b/src/oci/vn_monitoring/models/drg_attachment_type_drg_route_distribution_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_redundancy_status.py b/src/oci/vn_monitoring/models/drg_redundancy_status.py index 847d56ac4f..59998ffb96 100644 --- a/src/oci/vn_monitoring/models/drg_redundancy_status.py +++ b/src/oci/vn_monitoring/models/drg_redundancy_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_route_distribution.py b/src/oci/vn_monitoring/models/drg_route_distribution.py index 13c5cbbc88..4fcca6fc5b 100644 --- a/src/oci/vn_monitoring/models/drg_route_distribution.py +++ b/src/oci/vn_monitoring/models/drg_route_distribution.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_route_distribution_match_criteria.py b/src/oci/vn_monitoring/models/drg_route_distribution_match_criteria.py index e854d52c24..970bbbabdc 100644 --- a/src/oci/vn_monitoring/models/drg_route_distribution_match_criteria.py +++ b/src/oci/vn_monitoring/models/drg_route_distribution_match_criteria.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_route_distribution_statement.py b/src/oci/vn_monitoring/models/drg_route_distribution_statement.py index b6e9e2114f..092814d4af 100644 --- a/src/oci/vn_monitoring/models/drg_route_distribution_statement.py +++ b/src/oci/vn_monitoring/models/drg_route_distribution_statement.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_route_rule.py b/src/oci/vn_monitoring/models/drg_route_rule.py index bbb9ef31db..0bacc2fb2b 100644 --- a/src/oci/vn_monitoring/models/drg_route_rule.py +++ b/src/oci/vn_monitoring/models/drg_route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_route_table.py b/src/oci/vn_monitoring/models/drg_route_table.py index 43aa3a86ac..7d26deba71 100644 --- a/src/oci/vn_monitoring/models/drg_route_table.py +++ b/src/oci/vn_monitoring/models/drg_route_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/drg_routing_configuration.py b/src/oci/vn_monitoring/models/drg_routing_configuration.py index b22526d312..61b90458ee 100644 --- a/src/oci/vn_monitoring/models/drg_routing_configuration.py +++ b/src/oci/vn_monitoring/models/drg_routing_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/egress_security_list_configuration.py b/src/oci/vn_monitoring/models/egress_security_list_configuration.py index 906ef7046f..89df9ef7c3 100644 --- a/src/oci/vn_monitoring/models/egress_security_list_configuration.py +++ b/src/oci/vn_monitoring/models/egress_security_list_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/egress_security_rule.py b/src/oci/vn_monitoring/models/egress_security_rule.py index e002a11c3f..2d01e55bdb 100644 --- a/src/oci/vn_monitoring/models/egress_security_rule.py +++ b/src/oci/vn_monitoring/models/egress_security_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/egress_traffic_spec.py b/src/oci/vn_monitoring/models/egress_traffic_spec.py index ebaff98bc3..81a56fb9a6 100644 --- a/src/oci/vn_monitoring/models/egress_traffic_spec.py +++ b/src/oci/vn_monitoring/models/egress_traffic_spec.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/encryption_domain_config.py b/src/oci/vn_monitoring/models/encryption_domain_config.py index 604d5f626a..3b6446268b 100644 --- a/src/oci/vn_monitoring/models/encryption_domain_config.py +++ b/src/oci/vn_monitoring/models/encryption_domain_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/endpoint.py b/src/oci/vn_monitoring/models/endpoint.py index 1fac515af0..f1b79281f1 100644 --- a/src/oci/vn_monitoring/models/endpoint.py +++ b/src/oci/vn_monitoring/models/endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/fast_connect_provider_service.py b/src/oci/vn_monitoring/models/fast_connect_provider_service.py index 3bf9933c53..2cbf1bfa84 100644 --- a/src/oci/vn_monitoring/models/fast_connect_provider_service.py +++ b/src/oci/vn_monitoring/models/fast_connect_provider_service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/fast_connect_provider_service_key.py b/src/oci/vn_monitoring/models/fast_connect_provider_service_key.py index 9b3a1a0b11..6ba2d9de20 100644 --- a/src/oci/vn_monitoring/models/fast_connect_provider_service_key.py +++ b/src/oci/vn_monitoring/models/fast_connect_provider_service_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/flow_log_capture_filter_rule_details.py b/src/oci/vn_monitoring/models/flow_log_capture_filter_rule_details.py index 9af554f383..56fd472e0a 100644 --- a/src/oci/vn_monitoring/models/flow_log_capture_filter_rule_details.py +++ b/src/oci/vn_monitoring/models/flow_log_capture_filter_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/forwarded_routing_action.py b/src/oci/vn_monitoring/models/forwarded_routing_action.py index 3837452a61..ca21cf71e5 100644 --- a/src/oci/vn_monitoring/models/forwarded_routing_action.py +++ b/src/oci/vn_monitoring/models/forwarded_routing_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/forwarded_routing_action_details.py b/src/oci/vn_monitoring/models/forwarded_routing_action_details.py index ffbece1209..5d08a97e84 100644 --- a/src/oci/vn_monitoring/models/forwarded_routing_action_details.py +++ b/src/oci/vn_monitoring/models/forwarded_routing_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/forwarded_routing_configuration.py b/src/oci/vn_monitoring/models/forwarded_routing_configuration.py index a1fb7c4896..af6fb54c1f 100644 --- a/src/oci/vn_monitoring/models/forwarded_routing_configuration.py +++ b/src/oci/vn_monitoring/models/forwarded_routing_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/get_path_analysis_details.py b/src/oci/vn_monitoring/models/get_path_analysis_details.py index 2be05132df..45451367e7 100644 --- a/src/oci/vn_monitoring/models/get_path_analysis_details.py +++ b/src/oci/vn_monitoring/models/get_path_analysis_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/get_public_ip_by_ip_address_details.py b/src/oci/vn_monitoring/models/get_public_ip_by_ip_address_details.py index 9e527c6f65..9f89559ba2 100644 --- a/src/oci/vn_monitoring/models/get_public_ip_by_ip_address_details.py +++ b/src/oci/vn_monitoring/models/get_public_ip_by_ip_address_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/get_public_ip_by_private_ip_id_details.py b/src/oci/vn_monitoring/models/get_public_ip_by_private_ip_id_details.py index 690c7a33a6..ce3d5f9199 100644 --- a/src/oci/vn_monitoring/models/get_public_ip_by_private_ip_id_details.py +++ b/src/oci/vn_monitoring/models/get_public_ip_by_private_ip_id_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/icmp_options.py b/src/oci/vn_monitoring/models/icmp_options.py index df21c98688..d2ad3f9bc8 100644 --- a/src/oci/vn_monitoring/models/icmp_options.py +++ b/src/oci/vn_monitoring/models/icmp_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/icmp_protocol_parameters.py b/src/oci/vn_monitoring/models/icmp_protocol_parameters.py index 7c05f504a5..09f9a8420c 100644 --- a/src/oci/vn_monitoring/models/icmp_protocol_parameters.py +++ b/src/oci/vn_monitoring/models/icmp_protocol_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/icmp_traffic_protocol_parameters.py b/src/oci/vn_monitoring/models/icmp_traffic_protocol_parameters.py index 80f87bdef1..0f1b090dcf 100644 --- a/src/oci/vn_monitoring/models/icmp_traffic_protocol_parameters.py +++ b/src/oci/vn_monitoring/models/icmp_traffic_protocol_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/indeterminate_routing_action.py b/src/oci/vn_monitoring/models/indeterminate_routing_action.py index a43fcc366e..e5e5b48e1e 100644 --- a/src/oci/vn_monitoring/models/indeterminate_routing_action.py +++ b/src/oci/vn_monitoring/models/indeterminate_routing_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ingress_security_list_configuration.py b/src/oci/vn_monitoring/models/ingress_security_list_configuration.py index a7ec60f6e9..cc9f3b7544 100644 --- a/src/oci/vn_monitoring/models/ingress_security_list_configuration.py +++ b/src/oci/vn_monitoring/models/ingress_security_list_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ingress_security_rule.py b/src/oci/vn_monitoring/models/ingress_security_rule.py index add01f9417..3b4b46f308 100644 --- a/src/oci/vn_monitoring/models/ingress_security_rule.py +++ b/src/oci/vn_monitoring/models/ingress_security_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/internet_gateway.py b/src/oci/vn_monitoring/models/internet_gateway.py index 9ca84e5ff2..0b5eeac8b3 100644 --- a/src/oci/vn_monitoring/models/internet_gateway.py +++ b/src/oci/vn_monitoring/models/internet_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ip_address_endpoint.py b/src/oci/vn_monitoring/models/ip_address_endpoint.py index f2f17afd39..697f9da7c8 100644 --- a/src/oci/vn_monitoring/models/ip_address_endpoint.py +++ b/src/oci/vn_monitoring/models/ip_address_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ip_sec_connection.py b/src/oci/vn_monitoring/models/ip_sec_connection.py index 28339d66be..05a887b65e 100644 --- a/src/oci/vn_monitoring/models/ip_sec_connection.py +++ b/src/oci/vn_monitoring/models/ip_sec_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ip_sec_connection_device_config.py b/src/oci/vn_monitoring/models/ip_sec_connection_device_config.py index 0d6f18e673..74d3369592 100644 --- a/src/oci/vn_monitoring/models/ip_sec_connection_device_config.py +++ b/src/oci/vn_monitoring/models/ip_sec_connection_device_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ip_sec_connection_device_status.py b/src/oci/vn_monitoring/models/ip_sec_connection_device_status.py index 481f92cb2c..b3c73a4300 100644 --- a/src/oci/vn_monitoring/models/ip_sec_connection_device_status.py +++ b/src/oci/vn_monitoring/models/ip_sec_connection_device_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ip_sec_connection_tunnel.py b/src/oci/vn_monitoring/models/ip_sec_connection_tunnel.py index 941910ef49..c076a11e69 100644 --- a/src/oci/vn_monitoring/models/ip_sec_connection_tunnel.py +++ b/src/oci/vn_monitoring/models/ip_sec_connection_tunnel.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ip_sec_connection_tunnel_error_details.py b/src/oci/vn_monitoring/models/ip_sec_connection_tunnel_error_details.py index e7277235b2..ee959ea181 100644 --- a/src/oci/vn_monitoring/models/ip_sec_connection_tunnel_error_details.py +++ b/src/oci/vn_monitoring/models/ip_sec_connection_tunnel_error_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ip_sec_connection_tunnel_shared_secret.py b/src/oci/vn_monitoring/models/ip_sec_connection_tunnel_shared_secret.py index 0fdf002311..4d514c0415 100644 --- a/src/oci/vn_monitoring/models/ip_sec_connection_tunnel_shared_secret.py +++ b/src/oci/vn_monitoring/models/ip_sec_connection_tunnel_shared_secret.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ipsec_tunnel_drg_attachment_network_details.py b/src/oci/vn_monitoring/models/ipsec_tunnel_drg_attachment_network_details.py index 43c723b3c7..4f4e7a7901 100644 --- a/src/oci/vn_monitoring/models/ipsec_tunnel_drg_attachment_network_details.py +++ b/src/oci/vn_monitoring/models/ipsec_tunnel_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/ipv6.py b/src/oci/vn_monitoring/models/ipv6.py index bf4d0ce73f..4f9ca98ad6 100644 --- a/src/oci/vn_monitoring/models/ipv6.py +++ b/src/oci/vn_monitoring/models/ipv6.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/letter_of_authority.py b/src/oci/vn_monitoring/models/letter_of_authority.py index 7ba8f2dc1d..55ae9af87a 100644 --- a/src/oci/vn_monitoring/models/letter_of_authority.py +++ b/src/oci/vn_monitoring/models/letter_of_authority.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/load_balancer_endpoint.py b/src/oci/vn_monitoring/models/load_balancer_endpoint.py index ad522ad02f..929c76f9b3 100644 --- a/src/oci/vn_monitoring/models/load_balancer_endpoint.py +++ b/src/oci/vn_monitoring/models/load_balancer_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/load_balancer_listener_endpoint.py b/src/oci/vn_monitoring/models/load_balancer_listener_endpoint.py index ec20925d87..d3d37a107e 100644 --- a/src/oci/vn_monitoring/models/load_balancer_listener_endpoint.py +++ b/src/oci/vn_monitoring/models/load_balancer_listener_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/local_peering_gateway.py b/src/oci/vn_monitoring/models/local_peering_gateway.py index 061e348307..04234dc148 100644 --- a/src/oci/vn_monitoring/models/local_peering_gateway.py +++ b/src/oci/vn_monitoring/models/local_peering_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/loop_back_drg_attachment_network_details.py b/src/oci/vn_monitoring/models/loop_back_drg_attachment_network_details.py index 111d84a2e8..2743f28ab2 100644 --- a/src/oci/vn_monitoring/models/loop_back_drg_attachment_network_details.py +++ b/src/oci/vn_monitoring/models/loop_back_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/macsec_key.py b/src/oci/vn_monitoring/models/macsec_key.py index a84347d301..201a3c835b 100644 --- a/src/oci/vn_monitoring/models/macsec_key.py +++ b/src/oci/vn_monitoring/models/macsec_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/macsec_properties.py b/src/oci/vn_monitoring/models/macsec_properties.py index 3fa0b607b5..3cfafabe94 100644 --- a/src/oci/vn_monitoring/models/macsec_properties.py +++ b/src/oci/vn_monitoring/models/macsec_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/modify_vcn_cidr_details.py b/src/oci/vn_monitoring/models/modify_vcn_cidr_details.py index b5c06013ed..1a74c5f2eb 100644 --- a/src/oci/vn_monitoring/models/modify_vcn_cidr_details.py +++ b/src/oci/vn_monitoring/models/modify_vcn_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/nat_gateway.py b/src/oci/vn_monitoring/models/nat_gateway.py index 40010a7e65..c1c6a802a9 100644 --- a/src/oci/vn_monitoring/models/nat_gateway.py +++ b/src/oci/vn_monitoring/models/nat_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/network_load_balancer_endpoint.py b/src/oci/vn_monitoring/models/network_load_balancer_endpoint.py index 88736ec710..a99ff6ca43 100644 --- a/src/oci/vn_monitoring/models/network_load_balancer_endpoint.py +++ b/src/oci/vn_monitoring/models/network_load_balancer_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/network_load_balancer_listener_endpoint.py b/src/oci/vn_monitoring/models/network_load_balancer_listener_endpoint.py index 23dec6de2a..d9360c5e18 100644 --- a/src/oci/vn_monitoring/models/network_load_balancer_listener_endpoint.py +++ b/src/oci/vn_monitoring/models/network_load_balancer_listener_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/network_security_group.py b/src/oci/vn_monitoring/models/network_security_group.py index 2bd8690740..11b070b978 100644 --- a/src/oci/vn_monitoring/models/network_security_group.py +++ b/src/oci/vn_monitoring/models/network_security_group.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/network_security_group_vnic.py b/src/oci/vn_monitoring/models/network_security_group_vnic.py index 51c656fda9..a5e3b58c06 100644 --- a/src/oci/vn_monitoring/models/network_security_group_vnic.py +++ b/src/oci/vn_monitoring/models/network_security_group_vnic.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/networking_topology.py b/src/oci/vn_monitoring/models/networking_topology.py index 88de6283ae..89c6a35d36 100644 --- a/src/oci/vn_monitoring/models/networking_topology.py +++ b/src/oci/vn_monitoring/models/networking_topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/no_route_routing_action.py b/src/oci/vn_monitoring/models/no_route_routing_action.py index 4c4b0b2517..e9758b0e83 100644 --- a/src/oci/vn_monitoring/models/no_route_routing_action.py +++ b/src/oci/vn_monitoring/models/no_route_routing_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/no_route_routing_action_details.py b/src/oci/vn_monitoring/models/no_route_routing_action_details.py index 3b0a5c7e68..53eef133b0 100644 --- a/src/oci/vn_monitoring/models/no_route_routing_action_details.py +++ b/src/oci/vn_monitoring/models/no_route_routing_action_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/nsg_configuration.py b/src/oci/vn_monitoring/models/nsg_configuration.py index 7d6c2d9e2c..7f2ad0a9e6 100644 --- a/src/oci/vn_monitoring/models/nsg_configuration.py +++ b/src/oci/vn_monitoring/models/nsg_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/on_prem_endpoint.py b/src/oci/vn_monitoring/models/on_prem_endpoint.py index f8928aad2c..75c0322322 100644 --- a/src/oci/vn_monitoring/models/on_prem_endpoint.py +++ b/src/oci/vn_monitoring/models/on_prem_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/path.py b/src/oci/vn_monitoring/models/path.py index ca925437c3..2086fa2d14 100644 --- a/src/oci/vn_monitoring/models/path.py +++ b/src/oci/vn_monitoring/models/path.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/path_analysis_work_request_result.py b/src/oci/vn_monitoring/models/path_analysis_work_request_result.py index 59cdb846cf..c455848f80 100644 --- a/src/oci/vn_monitoring/models/path_analysis_work_request_result.py +++ b/src/oci/vn_monitoring/models/path_analysis_work_request_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/path_analyzer_test.py b/src/oci/vn_monitoring/models/path_analyzer_test.py index 8b7905741b..ca5272ebaf 100644 --- a/src/oci/vn_monitoring/models/path_analyzer_test.py +++ b/src/oci/vn_monitoring/models/path_analyzer_test.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/path_analyzer_test_collection.py b/src/oci/vn_monitoring/models/path_analyzer_test_collection.py index dd24e0b851..d6a0606858 100644 --- a/src/oci/vn_monitoring/models/path_analyzer_test_collection.py +++ b/src/oci/vn_monitoring/models/path_analyzer_test_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/path_analyzer_test_summary.py b/src/oci/vn_monitoring/models/path_analyzer_test_summary.py index a26983c8a0..56a37956d2 100644 --- a/src/oci/vn_monitoring/models/path_analyzer_test_summary.py +++ b/src/oci/vn_monitoring/models/path_analyzer_test_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/path_topology.py b/src/oci/vn_monitoring/models/path_topology.py index 071cb27e4c..a2de796479 100644 --- a/src/oci/vn_monitoring/models/path_topology.py +++ b/src/oci/vn_monitoring/models/path_topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/persisted_get_path_analysis_details.py b/src/oci/vn_monitoring/models/persisted_get_path_analysis_details.py index 0f110d5d4a..7a673439f2 100644 --- a/src/oci/vn_monitoring/models/persisted_get_path_analysis_details.py +++ b/src/oci/vn_monitoring/models/persisted_get_path_analysis_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/phase_one_config_details.py b/src/oci/vn_monitoring/models/phase_one_config_details.py index 561298ea3b..633daf7275 100644 --- a/src/oci/vn_monitoring/models/phase_one_config_details.py +++ b/src/oci/vn_monitoring/models/phase_one_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/phase_two_config_details.py b/src/oci/vn_monitoring/models/phase_two_config_details.py index 0292437f1c..b749f8b039 100644 --- a/src/oci/vn_monitoring/models/phase_two_config_details.py +++ b/src/oci/vn_monitoring/models/phase_two_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/port_range.py b/src/oci/vn_monitoring/models/port_range.py index f995cdfe5d..45acd70394 100644 --- a/src/oci/vn_monitoring/models/port_range.py +++ b/src/oci/vn_monitoring/models/port_range.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/private_ip.py b/src/oci/vn_monitoring/models/private_ip.py index 6f12a7e564..d3fb7aa18a 100644 --- a/src/oci/vn_monitoring/models/private_ip.py +++ b/src/oci/vn_monitoring/models/private_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/protocol_parameters.py b/src/oci/vn_monitoring/models/protocol_parameters.py index 5d1d7f9ff1..0e74d146b9 100644 --- a/src/oci/vn_monitoring/models/protocol_parameters.py +++ b/src/oci/vn_monitoring/models/protocol_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/public_ip.py b/src/oci/vn_monitoring/models/public_ip.py index fce2165466..aa6857eceb 100644 --- a/src/oci/vn_monitoring/models/public_ip.py +++ b/src/oci/vn_monitoring/models/public_ip.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/public_ip_pool.py b/src/oci/vn_monitoring/models/public_ip_pool.py index 6d5bbd44e0..43f6683569 100644 --- a/src/oci/vn_monitoring/models/public_ip_pool.py +++ b/src/oci/vn_monitoring/models/public_ip_pool.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/public_ip_pool_collection.py b/src/oci/vn_monitoring/models/public_ip_pool_collection.py index 3696be39ab..24f6258203 100644 --- a/src/oci/vn_monitoring/models/public_ip_pool_collection.py +++ b/src/oci/vn_monitoring/models/public_ip_pool_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/public_ip_pool_summary.py b/src/oci/vn_monitoring/models/public_ip_pool_summary.py index 455493cc57..073a8459f2 100644 --- a/src/oci/vn_monitoring/models/public_ip_pool_summary.py +++ b/src/oci/vn_monitoring/models/public_ip_pool_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/query_options.py b/src/oci/vn_monitoring/models/query_options.py index a9683ae51e..56464df3cd 100644 --- a/src/oci/vn_monitoring/models/query_options.py +++ b/src/oci/vn_monitoring/models/query_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/remote_peering_connection.py b/src/oci/vn_monitoring/models/remote_peering_connection.py index 986176c701..9c7cf575a1 100644 --- a/src/oci/vn_monitoring/models/remote_peering_connection.py +++ b/src/oci/vn_monitoring/models/remote_peering_connection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/remote_peering_connection_drg_attachment_network_details.py b/src/oci/vn_monitoring/models/remote_peering_connection_drg_attachment_network_details.py index 80fbb4a95f..1d4eef1f74 100644 --- a/src/oci/vn_monitoring/models/remote_peering_connection_drg_attachment_network_details.py +++ b/src/oci/vn_monitoring/models/remote_peering_connection_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/remove_drg_route_distribution_statements_details.py b/src/oci/vn_monitoring/models/remove_drg_route_distribution_statements_details.py index f587baca45..024c634b65 100644 --- a/src/oci/vn_monitoring/models/remove_drg_route_distribution_statements_details.py +++ b/src/oci/vn_monitoring/models/remove_drg_route_distribution_statements_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/remove_drg_route_rules_details.py b/src/oci/vn_monitoring/models/remove_drg_route_rules_details.py index ed2fbf8977..09f35ac60f 100644 --- a/src/oci/vn_monitoring/models/remove_drg_route_rules_details.py +++ b/src/oci/vn_monitoring/models/remove_drg_route_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/remove_network_security_group_security_rules_details.py b/src/oci/vn_monitoring/models/remove_network_security_group_security_rules_details.py index 8f3dc1b384..97f56b3c25 100644 --- a/src/oci/vn_monitoring/models/remove_network_security_group_security_rules_details.py +++ b/src/oci/vn_monitoring/models/remove_network_security_group_security_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/remove_public_ip_pool_capacity_details.py b/src/oci/vn_monitoring/models/remove_public_ip_pool_capacity_details.py index 5f39816b8b..6fd667cd51 100644 --- a/src/oci/vn_monitoring/models/remove_public_ip_pool_capacity_details.py +++ b/src/oci/vn_monitoring/models/remove_public_ip_pool_capacity_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/remove_subnet_ipv6_cidr_details.py b/src/oci/vn_monitoring/models/remove_subnet_ipv6_cidr_details.py index fb733f8a19..4e12739115 100644 --- a/src/oci/vn_monitoring/models/remove_subnet_ipv6_cidr_details.py +++ b/src/oci/vn_monitoring/models/remove_subnet_ipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/remove_vcn_cidr_details.py b/src/oci/vn_monitoring/models/remove_vcn_cidr_details.py index 482f650199..b192b084d4 100644 --- a/src/oci/vn_monitoring/models/remove_vcn_cidr_details.py +++ b/src/oci/vn_monitoring/models/remove_vcn_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/remove_vcn_ipv6_cidr_details.py b/src/oci/vn_monitoring/models/remove_vcn_ipv6_cidr_details.py index 2edcaad37a..ba0421f5c2 100644 --- a/src/oci/vn_monitoring/models/remove_vcn_ipv6_cidr_details.py +++ b/src/oci/vn_monitoring/models/remove_vcn_ipv6_cidr_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/route_rule.py b/src/oci/vn_monitoring/models/route_rule.py index 8a21327541..4ae333096d 100644 --- a/src/oci/vn_monitoring/models/route_rule.py +++ b/src/oci/vn_monitoring/models/route_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/route_table.py b/src/oci/vn_monitoring/models/route_table.py index 1d2d283841..f2e7188e31 100644 --- a/src/oci/vn_monitoring/models/route_table.py +++ b/src/oci/vn_monitoring/models/route_table.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/routing_action.py b/src/oci/vn_monitoring/models/routing_action.py index 86c5c6979d..67ff27f41b 100644 --- a/src/oci/vn_monitoring/models/routing_action.py +++ b/src/oci/vn_monitoring/models/routing_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/security_action.py b/src/oci/vn_monitoring/models/security_action.py index c87c4357bb..11b146d6ba 100644 --- a/src/oci/vn_monitoring/models/security_action.py +++ b/src/oci/vn_monitoring/models/security_action.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/security_list.py b/src/oci/vn_monitoring/models/security_list.py index 12b9ffcbf1..65393cb7f9 100644 --- a/src/oci/vn_monitoring/models/security_list.py +++ b/src/oci/vn_monitoring/models/security_list.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/security_rule.py b/src/oci/vn_monitoring/models/security_rule.py index 697cc2c8f6..9ff2f44d83 100644 --- a/src/oci/vn_monitoring/models/security_rule.py +++ b/src/oci/vn_monitoring/models/security_rule.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/service.py b/src/oci/vn_monitoring/models/service.py index 9c31010f14..7f90e89b4a 100644 --- a/src/oci/vn_monitoring/models/service.py +++ b/src/oci/vn_monitoring/models/service.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/service_gateway.py b/src/oci/vn_monitoring/models/service_gateway.py index c4d36c59ae..030f4e55b4 100644 --- a/src/oci/vn_monitoring/models/service_gateway.py +++ b/src/oci/vn_monitoring/models/service_gateway.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/service_id_request_details.py b/src/oci/vn_monitoring/models/service_id_request_details.py index 0f78520621..1e82b1f338 100644 --- a/src/oci/vn_monitoring/models/service_id_request_details.py +++ b/src/oci/vn_monitoring/models/service_id_request_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/service_id_response_details.py b/src/oci/vn_monitoring/models/service_id_response_details.py index c0d7fb813d..8ec722412b 100644 --- a/src/oci/vn_monitoring/models/service_id_response_details.py +++ b/src/oci/vn_monitoring/models/service_id_response_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/stateful_egress_security_list_configuration.py b/src/oci/vn_monitoring/models/stateful_egress_security_list_configuration.py index c86ec301ab..1424b76e86 100644 --- a/src/oci/vn_monitoring/models/stateful_egress_security_list_configuration.py +++ b/src/oci/vn_monitoring/models/stateful_egress_security_list_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/stateful_ingress_security_list_configuration.py b/src/oci/vn_monitoring/models/stateful_ingress_security_list_configuration.py index b5cab170ef..3021cdb178 100644 --- a/src/oci/vn_monitoring/models/stateful_ingress_security_list_configuration.py +++ b/src/oci/vn_monitoring/models/stateful_ingress_security_list_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/stateful_nsg_configuration.py b/src/oci/vn_monitoring/models/stateful_nsg_configuration.py index fda5cdf826..ef7268f1f0 100644 --- a/src/oci/vn_monitoring/models/stateful_nsg_configuration.py +++ b/src/oci/vn_monitoring/models/stateful_nsg_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/subnet.py b/src/oci/vn_monitoring/models/subnet.py index 6c3b24357b..7ceded3910 100644 --- a/src/oci/vn_monitoring/models/subnet.py +++ b/src/oci/vn_monitoring/models/subnet.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/subnet_endpoint.py b/src/oci/vn_monitoring/models/subnet_endpoint.py index 26654af4f0..7495743971 100644 --- a/src/oci/vn_monitoring/models/subnet_endpoint.py +++ b/src/oci/vn_monitoring/models/subnet_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/subnet_topology.py b/src/oci/vn_monitoring/models/subnet_topology.py index 81f00e41ec..097f1c66fd 100644 --- a/src/oci/vn_monitoring/models/subnet_topology.py +++ b/src/oci/vn_monitoring/models/subnet_topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tcp_options.py b/src/oci/vn_monitoring/models/tcp_options.py index 53af406a59..3aacb40680 100644 --- a/src/oci/vn_monitoring/models/tcp_options.py +++ b/src/oci/vn_monitoring/models/tcp_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tcp_protocol_parameters.py b/src/oci/vn_monitoring/models/tcp_protocol_parameters.py index edbc7b07a6..ace50ae686 100644 --- a/src/oci/vn_monitoring/models/tcp_protocol_parameters.py +++ b/src/oci/vn_monitoring/models/tcp_protocol_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tcp_traffic_protocol_parameters.py b/src/oci/vn_monitoring/models/tcp_traffic_protocol_parameters.py index 0d676806de..b347746c00 100644 --- a/src/oci/vn_monitoring/models/tcp_traffic_protocol_parameters.py +++ b/src/oci/vn_monitoring/models/tcp_traffic_protocol_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/topology.py b/src/oci/vn_monitoring/models/topology.py index 61ef6b7a57..f3e19df6dd 100644 --- a/src/oci/vn_monitoring/models/topology.py +++ b/src/oci/vn_monitoring/models/topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/topology_associated_with_entity_relationship.py b/src/oci/vn_monitoring/models/topology_associated_with_entity_relationship.py index 26d2f13e36..518c9820d1 100644 --- a/src/oci/vn_monitoring/models/topology_associated_with_entity_relationship.py +++ b/src/oci/vn_monitoring/models/topology_associated_with_entity_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/topology_associated_with_relationship_details.py b/src/oci/vn_monitoring/models/topology_associated_with_relationship_details.py index 3207a7dd60..73f7f67d9a 100644 --- a/src/oci/vn_monitoring/models/topology_associated_with_relationship_details.py +++ b/src/oci/vn_monitoring/models/topology_associated_with_relationship_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/topology_contains_entity_relationship.py b/src/oci/vn_monitoring/models/topology_contains_entity_relationship.py index 13044e4f7c..dcbd970612 100644 --- a/src/oci/vn_monitoring/models/topology_contains_entity_relationship.py +++ b/src/oci/vn_monitoring/models/topology_contains_entity_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/topology_entity_relationship.py b/src/oci/vn_monitoring/models/topology_entity_relationship.py index af039f5e03..229ae28602 100644 --- a/src/oci/vn_monitoring/models/topology_entity_relationship.py +++ b/src/oci/vn_monitoring/models/topology_entity_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/topology_routes_to_entity_relationship.py b/src/oci/vn_monitoring/models/topology_routes_to_entity_relationship.py index abc5b673e3..84bd92e2a4 100644 --- a/src/oci/vn_monitoring/models/topology_routes_to_entity_relationship.py +++ b/src/oci/vn_monitoring/models/topology_routes_to_entity_relationship.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/topology_routes_to_relationship_details.py b/src/oci/vn_monitoring/models/topology_routes_to_relationship_details.py index 672ac0c2c3..fa55703ad5 100644 --- a/src/oci/vn_monitoring/models/topology_routes_to_relationship_details.py +++ b/src/oci/vn_monitoring/models/topology_routes_to_relationship_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/traffic_node.py b/src/oci/vn_monitoring/models/traffic_node.py index 1d8b3a878b..218e1df2aa 100644 --- a/src/oci/vn_monitoring/models/traffic_node.py +++ b/src/oci/vn_monitoring/models/traffic_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/traffic_protocol_parameters.py b/src/oci/vn_monitoring/models/traffic_protocol_parameters.py index bb1223aed0..a54315cb2e 100644 --- a/src/oci/vn_monitoring/models/traffic_protocol_parameters.py +++ b/src/oci/vn_monitoring/models/traffic_protocol_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/traffic_route.py b/src/oci/vn_monitoring/models/traffic_route.py index 2d9c557db9..eaa0af0726 100644 --- a/src/oci/vn_monitoring/models/traffic_route.py +++ b/src/oci/vn_monitoring/models/traffic_route.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tunnel_config.py b/src/oci/vn_monitoring/models/tunnel_config.py index d851ad174f..910e6fa7d0 100644 --- a/src/oci/vn_monitoring/models/tunnel_config.py +++ b/src/oci/vn_monitoring/models/tunnel_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tunnel_cpe_device_config.py b/src/oci/vn_monitoring/models/tunnel_cpe_device_config.py index 6c4b212015..fbe44a0d10 100644 --- a/src/oci/vn_monitoring/models/tunnel_cpe_device_config.py +++ b/src/oci/vn_monitoring/models/tunnel_cpe_device_config.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tunnel_phase_one_details.py b/src/oci/vn_monitoring/models/tunnel_phase_one_details.py index d335fbe55a..89a113153f 100644 --- a/src/oci/vn_monitoring/models/tunnel_phase_one_details.py +++ b/src/oci/vn_monitoring/models/tunnel_phase_one_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tunnel_phase_two_details.py b/src/oci/vn_monitoring/models/tunnel_phase_two_details.py index 1db753dd7f..86650c202a 100644 --- a/src/oci/vn_monitoring/models/tunnel_phase_two_details.py +++ b/src/oci/vn_monitoring/models/tunnel_phase_two_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tunnel_route_summary.py b/src/oci/vn_monitoring/models/tunnel_route_summary.py index a637ee0c5d..2a1abfe796 100644 --- a/src/oci/vn_monitoring/models/tunnel_route_summary.py +++ b/src/oci/vn_monitoring/models/tunnel_route_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tunnel_security_association_summary.py b/src/oci/vn_monitoring/models/tunnel_security_association_summary.py index 4d0eb9fa47..d83b10f5cf 100644 --- a/src/oci/vn_monitoring/models/tunnel_security_association_summary.py +++ b/src/oci/vn_monitoring/models/tunnel_security_association_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/tunnel_status.py b/src/oci/vn_monitoring/models/tunnel_status.py index f4d4df84a8..f317ee7e46 100644 --- a/src/oci/vn_monitoring/models/tunnel_status.py +++ b/src/oci/vn_monitoring/models/tunnel_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/udp_options.py b/src/oci/vn_monitoring/models/udp_options.py index e8d25d0c56..b2079f53c3 100644 --- a/src/oci/vn_monitoring/models/udp_options.py +++ b/src/oci/vn_monitoring/models/udp_options.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/udp_protocol_parameters.py b/src/oci/vn_monitoring/models/udp_protocol_parameters.py index 59cb80f307..ce3f050a01 100644 --- a/src/oci/vn_monitoring/models/udp_protocol_parameters.py +++ b/src/oci/vn_monitoring/models/udp_protocol_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/udp_traffic_protocol_parameters.py b/src/oci/vn_monitoring/models/udp_traffic_protocol_parameters.py index 3c12d0a014..cbedaad453 100644 --- a/src/oci/vn_monitoring/models/udp_traffic_protocol_parameters.py +++ b/src/oci/vn_monitoring/models/udp_traffic_protocol_parameters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_byoip_range_details.py b/src/oci/vn_monitoring/models/update_byoip_range_details.py index a682adbc50..cfa04e0391 100644 --- a/src/oci/vn_monitoring/models/update_byoip_range_details.py +++ b/src/oci/vn_monitoring/models/update_byoip_range_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_capture_filter_details.py b/src/oci/vn_monitoring/models/update_capture_filter_details.py index 6592a0864c..27eab2372e 100644 --- a/src/oci/vn_monitoring/models/update_capture_filter_details.py +++ b/src/oci/vn_monitoring/models/update_capture_filter_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_cpe_details.py b/src/oci/vn_monitoring/models/update_cpe_details.py index f13056b12b..fab18f403a 100644 --- a/src/oci/vn_monitoring/models/update_cpe_details.py +++ b/src/oci/vn_monitoring/models/update_cpe_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_cross_connect_details.py b/src/oci/vn_monitoring/models/update_cross_connect_details.py index c9c4b89ed8..d013a993c1 100644 --- a/src/oci/vn_monitoring/models/update_cross_connect_details.py +++ b/src/oci/vn_monitoring/models/update_cross_connect_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_cross_connect_group_details.py b/src/oci/vn_monitoring/models/update_cross_connect_group_details.py index 326adee289..c8fb91fe9e 100644 --- a/src/oci/vn_monitoring/models/update_cross_connect_group_details.py +++ b/src/oci/vn_monitoring/models/update_cross_connect_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_dhcp_details.py b/src/oci/vn_monitoring/models/update_dhcp_details.py index 55e0e733f2..31656c6713 100644 --- a/src/oci/vn_monitoring/models/update_dhcp_details.py +++ b/src/oci/vn_monitoring/models/update_dhcp_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_drg_attachment_details.py b/src/oci/vn_monitoring/models/update_drg_attachment_details.py index e768d5ecbc..ef82927a40 100644 --- a/src/oci/vn_monitoring/models/update_drg_attachment_details.py +++ b/src/oci/vn_monitoring/models/update_drg_attachment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_drg_details.py b/src/oci/vn_monitoring/models/update_drg_details.py index 781957a39f..a4e6b337c5 100644 --- a/src/oci/vn_monitoring/models/update_drg_details.py +++ b/src/oci/vn_monitoring/models/update_drg_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_drg_route_distribution_details.py b/src/oci/vn_monitoring/models/update_drg_route_distribution_details.py index d97fe0e5e8..4bebe29fe8 100644 --- a/src/oci/vn_monitoring/models/update_drg_route_distribution_details.py +++ b/src/oci/vn_monitoring/models/update_drg_route_distribution_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_drg_route_distribution_statement_details.py b/src/oci/vn_monitoring/models/update_drg_route_distribution_statement_details.py index bf93bee4b3..bc14d59aae 100644 --- a/src/oci/vn_monitoring/models/update_drg_route_distribution_statement_details.py +++ b/src/oci/vn_monitoring/models/update_drg_route_distribution_statement_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_drg_route_distribution_statements_details.py b/src/oci/vn_monitoring/models/update_drg_route_distribution_statements_details.py index 0d982a1e03..b0b8a4e9c7 100644 --- a/src/oci/vn_monitoring/models/update_drg_route_distribution_statements_details.py +++ b/src/oci/vn_monitoring/models/update_drg_route_distribution_statements_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_drg_route_rule_details.py b/src/oci/vn_monitoring/models/update_drg_route_rule_details.py index 9ddc93cfb9..d7b0d0abde 100644 --- a/src/oci/vn_monitoring/models/update_drg_route_rule_details.py +++ b/src/oci/vn_monitoring/models/update_drg_route_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_drg_route_rules_details.py b/src/oci/vn_monitoring/models/update_drg_route_rules_details.py index cf2396afe6..4dfe2d7d8b 100644 --- a/src/oci/vn_monitoring/models/update_drg_route_rules_details.py +++ b/src/oci/vn_monitoring/models/update_drg_route_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_drg_route_table_details.py b/src/oci/vn_monitoring/models/update_drg_route_table_details.py index 79ea22b74f..dda08b3782 100644 --- a/src/oci/vn_monitoring/models/update_drg_route_table_details.py +++ b/src/oci/vn_monitoring/models/update_drg_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_internet_gateway_details.py b/src/oci/vn_monitoring/models/update_internet_gateway_details.py index 69f4c0041a..8f3ee3ddaa 100644 --- a/src/oci/vn_monitoring/models/update_internet_gateway_details.py +++ b/src/oci/vn_monitoring/models/update_internet_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_ip_sec_connection_details.py b/src/oci/vn_monitoring/models/update_ip_sec_connection_details.py index 39d8c267eb..10153b5159 100644 --- a/src/oci/vn_monitoring/models/update_ip_sec_connection_details.py +++ b/src/oci/vn_monitoring/models/update_ip_sec_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_ip_sec_connection_tunnel_details.py b/src/oci/vn_monitoring/models/update_ip_sec_connection_tunnel_details.py index a9c58d2aa4..536a80fd96 100644 --- a/src/oci/vn_monitoring/models/update_ip_sec_connection_tunnel_details.py +++ b/src/oci/vn_monitoring/models/update_ip_sec_connection_tunnel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_ip_sec_connection_tunnel_shared_secret_details.py b/src/oci/vn_monitoring/models/update_ip_sec_connection_tunnel_shared_secret_details.py index d6936bd8b8..fc7d0f9eb2 100644 --- a/src/oci/vn_monitoring/models/update_ip_sec_connection_tunnel_shared_secret_details.py +++ b/src/oci/vn_monitoring/models/update_ip_sec_connection_tunnel_shared_secret_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_ip_sec_tunnel_bgp_session_details.py b/src/oci/vn_monitoring/models/update_ip_sec_tunnel_bgp_session_details.py index 807250d96f..7301ed6b57 100644 --- a/src/oci/vn_monitoring/models/update_ip_sec_tunnel_bgp_session_details.py +++ b/src/oci/vn_monitoring/models/update_ip_sec_tunnel_bgp_session_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_ip_sec_tunnel_encryption_domain_details.py b/src/oci/vn_monitoring/models/update_ip_sec_tunnel_encryption_domain_details.py index fa2e194ebe..f50b369074 100644 --- a/src/oci/vn_monitoring/models/update_ip_sec_tunnel_encryption_domain_details.py +++ b/src/oci/vn_monitoring/models/update_ip_sec_tunnel_encryption_domain_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_ipv6_details.py b/src/oci/vn_monitoring/models/update_ipv6_details.py index 462a4c8437..71a1eb8431 100644 --- a/src/oci/vn_monitoring/models/update_ipv6_details.py +++ b/src/oci/vn_monitoring/models/update_ipv6_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_local_peering_gateway_details.py b/src/oci/vn_monitoring/models/update_local_peering_gateway_details.py index 1273bdaad4..60ff1e5e7a 100644 --- a/src/oci/vn_monitoring/models/update_local_peering_gateway_details.py +++ b/src/oci/vn_monitoring/models/update_local_peering_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_macsec_key.py b/src/oci/vn_monitoring/models/update_macsec_key.py index 2c9ce5ec42..fea9831bd2 100644 --- a/src/oci/vn_monitoring/models/update_macsec_key.py +++ b/src/oci/vn_monitoring/models/update_macsec_key.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_macsec_properties.py b/src/oci/vn_monitoring/models/update_macsec_properties.py index 9fc14a4823..2a3e543b35 100644 --- a/src/oci/vn_monitoring/models/update_macsec_properties.py +++ b/src/oci/vn_monitoring/models/update_macsec_properties.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_nat_gateway_details.py b/src/oci/vn_monitoring/models/update_nat_gateway_details.py index 64c493f5fa..10d3cc209d 100644 --- a/src/oci/vn_monitoring/models/update_nat_gateway_details.py +++ b/src/oci/vn_monitoring/models/update_nat_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_network_security_group_details.py b/src/oci/vn_monitoring/models/update_network_security_group_details.py index fbc39a9af3..20bdbb35d4 100644 --- a/src/oci/vn_monitoring/models/update_network_security_group_details.py +++ b/src/oci/vn_monitoring/models/update_network_security_group_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_network_security_group_security_rules_details.py b/src/oci/vn_monitoring/models/update_network_security_group_security_rules_details.py index 52a15e6e05..f8a81ad5e7 100644 --- a/src/oci/vn_monitoring/models/update_network_security_group_security_rules_details.py +++ b/src/oci/vn_monitoring/models/update_network_security_group_security_rules_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_path_analyzer_test_details.py b/src/oci/vn_monitoring/models/update_path_analyzer_test_details.py index bc3ab6be4b..f157f1d9d9 100644 --- a/src/oci/vn_monitoring/models/update_path_analyzer_test_details.py +++ b/src/oci/vn_monitoring/models/update_path_analyzer_test_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_private_ip_details.py b/src/oci/vn_monitoring/models/update_private_ip_details.py index b1d7969065..84bbc84ddf 100644 --- a/src/oci/vn_monitoring/models/update_private_ip_details.py +++ b/src/oci/vn_monitoring/models/update_private_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_public_ip_details.py b/src/oci/vn_monitoring/models/update_public_ip_details.py index 2d1fcbb295..5b1475300c 100644 --- a/src/oci/vn_monitoring/models/update_public_ip_details.py +++ b/src/oci/vn_monitoring/models/update_public_ip_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_public_ip_pool_details.py b/src/oci/vn_monitoring/models/update_public_ip_pool_details.py index 371c68397f..e225657725 100644 --- a/src/oci/vn_monitoring/models/update_public_ip_pool_details.py +++ b/src/oci/vn_monitoring/models/update_public_ip_pool_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_remote_peering_connection_details.py b/src/oci/vn_monitoring/models/update_remote_peering_connection_details.py index be7d7bd9ba..84913f2bf2 100644 --- a/src/oci/vn_monitoring/models/update_remote_peering_connection_details.py +++ b/src/oci/vn_monitoring/models/update_remote_peering_connection_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_route_table_details.py b/src/oci/vn_monitoring/models/update_route_table_details.py index d419a50c9a..632e5a7bd7 100644 --- a/src/oci/vn_monitoring/models/update_route_table_details.py +++ b/src/oci/vn_monitoring/models/update_route_table_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_security_list_details.py b/src/oci/vn_monitoring/models/update_security_list_details.py index 9574914b8a..f186c83c8b 100644 --- a/src/oci/vn_monitoring/models/update_security_list_details.py +++ b/src/oci/vn_monitoring/models/update_security_list_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_security_rule_details.py b/src/oci/vn_monitoring/models/update_security_rule_details.py index 45de594b25..15c57310b7 100644 --- a/src/oci/vn_monitoring/models/update_security_rule_details.py +++ b/src/oci/vn_monitoring/models/update_security_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_service_gateway_details.py b/src/oci/vn_monitoring/models/update_service_gateway_details.py index b37d803258..983d43f6e2 100644 --- a/src/oci/vn_monitoring/models/update_service_gateway_details.py +++ b/src/oci/vn_monitoring/models/update_service_gateway_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_subnet_details.py b/src/oci/vn_monitoring/models/update_subnet_details.py index c571136fb0..50b9aac444 100644 --- a/src/oci/vn_monitoring/models/update_subnet_details.py +++ b/src/oci/vn_monitoring/models/update_subnet_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_tunnel_cpe_device_config_details.py b/src/oci/vn_monitoring/models/update_tunnel_cpe_device_config_details.py index 7adbcea7a7..c7bca11084 100644 --- a/src/oci/vn_monitoring/models/update_tunnel_cpe_device_config_details.py +++ b/src/oci/vn_monitoring/models/update_tunnel_cpe_device_config_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_vcn_details.py b/src/oci/vn_monitoring/models/update_vcn_details.py index 0f7c64169f..fb22a91ec3 100644 --- a/src/oci/vn_monitoring/models/update_vcn_details.py +++ b/src/oci/vn_monitoring/models/update_vcn_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_virtual_circuit_details.py b/src/oci/vn_monitoring/models/update_virtual_circuit_details.py index 5bf309e414..70d0795bb4 100644 --- a/src/oci/vn_monitoring/models/update_virtual_circuit_details.py +++ b/src/oci/vn_monitoring/models/update_virtual_circuit_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_vlan_details.py b/src/oci/vn_monitoring/models/update_vlan_details.py index 3f888a0e75..48ce3b85be 100644 --- a/src/oci/vn_monitoring/models/update_vlan_details.py +++ b/src/oci/vn_monitoring/models/update_vlan_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_vnic_details.py b/src/oci/vn_monitoring/models/update_vnic_details.py index af7feb32a9..d77b096d99 100644 --- a/src/oci/vn_monitoring/models/update_vnic_details.py +++ b/src/oci/vn_monitoring/models/update_vnic_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/update_vtap_details.py b/src/oci/vn_monitoring/models/update_vtap_details.py index b14e7324a3..e73664ad83 100644 --- a/src/oci/vn_monitoring/models/update_vtap_details.py +++ b/src/oci/vn_monitoring/models/update_vtap_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/updated_network_security_group_security_rules.py b/src/oci/vn_monitoring/models/updated_network_security_group_security_rules.py index 1dc529b9e6..d103fd51c8 100644 --- a/src/oci/vn_monitoring/models/updated_network_security_group_security_rules.py +++ b/src/oci/vn_monitoring/models/updated_network_security_group_security_rules.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/upgrade_status.py b/src/oci/vn_monitoring/models/upgrade_status.py index 2241e6ff7d..8311205474 100644 --- a/src/oci/vn_monitoring/models/upgrade_status.py +++ b/src/oci/vn_monitoring/models/upgrade_status.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vcn.py b/src/oci/vn_monitoring/models/vcn.py index a92c8e4c44..bae7b987af 100644 --- a/src/oci/vn_monitoring/models/vcn.py +++ b/src/oci/vn_monitoring/models/vcn.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vcn_dns_resolver_association.py b/src/oci/vn_monitoring/models/vcn_dns_resolver_association.py index 70ecb7c50b..d4d7e5847a 100644 --- a/src/oci/vn_monitoring/models/vcn_dns_resolver_association.py +++ b/src/oci/vn_monitoring/models/vcn_dns_resolver_association.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vcn_drg_attachment_network_create_details.py b/src/oci/vn_monitoring/models/vcn_drg_attachment_network_create_details.py index f904d3e881..d18893ab44 100644 --- a/src/oci/vn_monitoring/models/vcn_drg_attachment_network_create_details.py +++ b/src/oci/vn_monitoring/models/vcn_drg_attachment_network_create_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vcn_drg_attachment_network_details.py b/src/oci/vn_monitoring/models/vcn_drg_attachment_network_details.py index 855e2f5246..2e0784a874 100644 --- a/src/oci/vn_monitoring/models/vcn_drg_attachment_network_details.py +++ b/src/oci/vn_monitoring/models/vcn_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vcn_drg_attachment_network_update_details.py b/src/oci/vn_monitoring/models/vcn_drg_attachment_network_update_details.py index bf6676bf8e..4c63bb61f7 100644 --- a/src/oci/vn_monitoring/models/vcn_drg_attachment_network_update_details.py +++ b/src/oci/vn_monitoring/models/vcn_drg_attachment_network_update_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vcn_routing_configuration.py b/src/oci/vn_monitoring/models/vcn_routing_configuration.py index e50a17fece..001934b5db 100644 --- a/src/oci/vn_monitoring/models/vcn_routing_configuration.py +++ b/src/oci/vn_monitoring/models/vcn_routing_configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vcn_topology.py b/src/oci/vn_monitoring/models/vcn_topology.py index f09cb117f2..d29049969c 100644 --- a/src/oci/vn_monitoring/models/vcn_topology.py +++ b/src/oci/vn_monitoring/models/vcn_topology.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/virtual_circuit.py b/src/oci/vn_monitoring/models/virtual_circuit.py index 8c3d86517e..569bfcf7aa 100644 --- a/src/oci/vn_monitoring/models/virtual_circuit.py +++ b/src/oci/vn_monitoring/models/virtual_circuit.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/virtual_circuit_associated_tunnel_details.py b/src/oci/vn_monitoring/models/virtual_circuit_associated_tunnel_details.py index ad3af4058b..cbc5b9c1ab 100644 --- a/src/oci/vn_monitoring/models/virtual_circuit_associated_tunnel_details.py +++ b/src/oci/vn_monitoring/models/virtual_circuit_associated_tunnel_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/virtual_circuit_bandwidth_shape.py b/src/oci/vn_monitoring/models/virtual_circuit_bandwidth_shape.py index fed94c539c..84675dce69 100644 --- a/src/oci/vn_monitoring/models/virtual_circuit_bandwidth_shape.py +++ b/src/oci/vn_monitoring/models/virtual_circuit_bandwidth_shape.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/virtual_circuit_drg_attachment_network_details.py b/src/oci/vn_monitoring/models/virtual_circuit_drg_attachment_network_details.py index 30148557e9..1c9bb114d9 100644 --- a/src/oci/vn_monitoring/models/virtual_circuit_drg_attachment_network_details.py +++ b/src/oci/vn_monitoring/models/virtual_circuit_drg_attachment_network_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/virtual_circuit_public_prefix.py b/src/oci/vn_monitoring/models/virtual_circuit_public_prefix.py index 1a4d4e3fbd..37f76c9892 100644 --- a/src/oci/vn_monitoring/models/virtual_circuit_public_prefix.py +++ b/src/oci/vn_monitoring/models/virtual_circuit_public_prefix.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/visible_traffic_node.py b/src/oci/vn_monitoring/models/visible_traffic_node.py index 26c980f24c..cb7b977e71 100644 --- a/src/oci/vn_monitoring/models/visible_traffic_node.py +++ b/src/oci/vn_monitoring/models/visible_traffic_node.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vlan.py b/src/oci/vn_monitoring/models/vlan.py index ecdd0a585f..36bc11abec 100644 --- a/src/oci/vn_monitoring/models/vlan.py +++ b/src/oci/vn_monitoring/models/vlan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vlan_endpoint.py b/src/oci/vn_monitoring/models/vlan_endpoint.py index 55cde38105..8a437ed34f 100644 --- a/src/oci/vn_monitoring/models/vlan_endpoint.py +++ b/src/oci/vn_monitoring/models/vlan_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vnic.py b/src/oci/vn_monitoring/models/vnic.py index ba79adcd63..07852d4070 100644 --- a/src/oci/vn_monitoring/models/vnic.py +++ b/src/oci/vn_monitoring/models/vnic.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vnic_endpoint.py b/src/oci/vn_monitoring/models/vnic_endpoint.py index d721763cfa..3cbfa6e04f 100644 --- a/src/oci/vn_monitoring/models/vnic_endpoint.py +++ b/src/oci/vn_monitoring/models/vnic_endpoint.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vtap.py b/src/oci/vn_monitoring/models/vtap.py index 44eb3f41a0..520aa08948 100644 --- a/src/oci/vn_monitoring/models/vtap.py +++ b/src/oci/vn_monitoring/models/vtap.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/vtap_capture_filter_rule_details.py b/src/oci/vn_monitoring/models/vtap_capture_filter_rule_details.py index 3f4974b147..3b2296f3cf 100644 --- a/src/oci/vn_monitoring/models/vtap_capture_filter_rule_details.py +++ b/src/oci/vn_monitoring/models/vtap_capture_filter_rule_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request.py b/src/oci/vn_monitoring/models/work_request.py index 7dade2281b..5f1af196ce 100644 --- a/src/oci/vn_monitoring/models/work_request.py +++ b/src/oci/vn_monitoring/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request_error.py b/src/oci/vn_monitoring/models/work_request_error.py index 741f874cc5..37eb30db7f 100644 --- a/src/oci/vn_monitoring/models/work_request_error.py +++ b/src/oci/vn_monitoring/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request_error_collection.py b/src/oci/vn_monitoring/models/work_request_error_collection.py index 7e17ea797c..bfc5a598aa 100644 --- a/src/oci/vn_monitoring/models/work_request_error_collection.py +++ b/src/oci/vn_monitoring/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request_log_entry.py b/src/oci/vn_monitoring/models/work_request_log_entry.py index 4f7644684d..dfd8be79f4 100644 --- a/src/oci/vn_monitoring/models/work_request_log_entry.py +++ b/src/oci/vn_monitoring/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request_log_entry_collection.py b/src/oci/vn_monitoring/models/work_request_log_entry_collection.py index e32f42d8c1..b8cd8d82d1 100644 --- a/src/oci/vn_monitoring/models/work_request_log_entry_collection.py +++ b/src/oci/vn_monitoring/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request_resource.py b/src/oci/vn_monitoring/models/work_request_resource.py index bfcded740d..4eed63e331 100644 --- a/src/oci/vn_monitoring/models/work_request_resource.py +++ b/src/oci/vn_monitoring/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request_result.py b/src/oci/vn_monitoring/models/work_request_result.py index 3e7663d964..f676870717 100644 --- a/src/oci/vn_monitoring/models/work_request_result.py +++ b/src/oci/vn_monitoring/models/work_request_result.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request_result_collection.py b/src/oci/vn_monitoring/models/work_request_result_collection.py index 4a476bc3de..09edd7603a 100644 --- a/src/oci/vn_monitoring/models/work_request_result_collection.py +++ b/src/oci/vn_monitoring/models/work_request_result_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request_summary.py b/src/oci/vn_monitoring/models/work_request_summary.py index 371b2d3584..fd9465a6db 100644 --- a/src/oci/vn_monitoring/models/work_request_summary.py +++ b/src/oci/vn_monitoring/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/models/work_request_summary_collection.py b/src/oci/vn_monitoring/models/work_request_summary_collection.py index 03e352833d..10fcffdd4c 100644 --- a/src/oci/vn_monitoring/models/work_request_summary_collection.py +++ b/src/oci/vn_monitoring/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/vn_monitoring_client.py b/src/oci/vn_monitoring/vn_monitoring_client.py index c90c64e994..8e65e93d90 100644 --- a/src/oci/vn_monitoring/vn_monitoring_client.py +++ b/src/oci/vn_monitoring/vn_monitoring_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vn_monitoring/vn_monitoring_client_composite_operations.py b/src/oci/vn_monitoring/vn_monitoring_client_composite_operations.py index b42818952e..59a08ad534 100644 --- a/src/oci/vn_monitoring/vn_monitoring_client_composite_operations.py +++ b/src/oci/vn_monitoring/vn_monitoring_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/vulnerability_scanning/__init__.py b/src/oci/vulnerability_scanning/__init__.py index aa424f3197..ad4a49bc20 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/__init__.py b/src/oci/vulnerability_scanning/models/__init__.py index a817a2945d..3773e45614 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/application_scan_settings.py b/src/oci/vulnerability_scanning/models/application_scan_settings.py index a80f2f28f0..62651cd158 100644 --- a/src/oci/vulnerability_scanning/models/application_scan_settings.py +++ b/src/oci/vulnerability_scanning/models/application_scan_settings.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 f06a8bf5bb..db8dc1f7c6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 ea54d68b85..de4e22ccf3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 b4b322a116..dcb86e5f0c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 c95031e8f8..64982d632b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 d082db6886..26aba06bcb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 26d8a4e940..1181f76f6b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 13d7f2f44d..80260db6d1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 af99269e86..1f38f66c53 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 333557a845..fc919ca486 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/container_scan_recipe.py b/src/oci/vulnerability_scanning/models/container_scan_recipe.py index fae3027923..e7f1ebc0c4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 f3684a7192..edf9eeec69 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 e9ee5e4192..5c87c4e0ef 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/container_scan_registry.py b/src/oci/vulnerability_scanning/models/container_scan_registry.py index c52c5e6fdd..466c1217fe 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/container_scan_result.py b/src/oci/vulnerability_scanning/models/container_scan_result.py index 3282293047..7e6734f951 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 8f21cc243e..c9bd2603dd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 bafec31117..130442c927 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 5420f83a93..167a3cc622 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/container_scan_settings.py b/src/oci/vulnerability_scanning/models/container_scan_settings.py index d1f8aa8b6b..e0cb68bc73 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/container_scan_target.py b/src/oci/vulnerability_scanning/models/container_scan_target.py index 2ce145de8e..6007632bca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 8c8e619c25..ab38a20902 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 a5f3286d71..5589cb38e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 18e240ca94..42b6e86ae4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 3835d3c6c8..3027715f25 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 091ec41542..3a9a217f68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 de0bb9159e..527062cbba 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 cf09f5e12a..b5d7f7cb24 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 74f80c7939..316a9af56f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/cve_details.py b/src/oci/vulnerability_scanning/models/cve_details.py index 37a3c7b059..9f586a6a5b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 276c4af367..3b10fe757b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 9963033095..1e6f65f011 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/folder_to_scan.py b/src/oci/vulnerability_scanning/models/folder_to_scan.py index da536b0746..c416621ee6 100644 --- a/src/oci/vulnerability_scanning/models/folder_to_scan.py +++ b/src/oci/vulnerability_scanning/models/folder_to_scan.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 0e069f5802..e9dfc2828f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 381cffface..7e371d40dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 ff3034c399..67a93495ca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 e98ccfb92f..5616cb336f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 8ef321c523..47a568219b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 778008536e..5540d0581d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 5f3e023067..d09da973bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 ac69b382dc..ab824fb4b7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 8461ebcc87..0ee9656597 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 ea3ccc8a27..116e1e0bf4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 82d3eba327..55529e2cfa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 b05e97b51e..1de37949b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 43bd6f537d..98e1afc272 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 61c83f8c5e..f1829d9ff7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 dc26ae1f59..0a64055bb8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 6a6e65237a..f505cbdffc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 9dba2b04ab..662234075e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 5b954d80ef..e90e9a22ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 8fc2ce6fca..9e548519f0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 99dad8592a..057a207a06 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/host_scan_agent_configuration_qualys.py b/src/oci/vulnerability_scanning/models/host_scan_agent_configuration_qualys.py index 1b59586865..ec278384f1 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_agent_configuration_qualys.py +++ b/src/oci/vulnerability_scanning/models/host_scan_agent_configuration_qualys.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 48f5dd76d1..4ed470f16e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 3ae9b5cd32..dba9fa69ce 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/host_scan_recipe.py b/src/oci/vulnerability_scanning/models/host_scan_recipe.py index dd41eac925..f4f40716ac 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 f53ad20cf0..ea2aa08acd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 f9b700fd54..7ffac8e6f6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/host_scan_target.py b/src/oci/vulnerability_scanning/models/host_scan_target.py index 1fad438c55..c0d35f2c76 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/host_scan_target_error_summary.py b/src/oci/vulnerability_scanning/models/host_scan_target_error_summary.py index 2639495d2d..b1315953f6 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_target_error_summary.py +++ b/src/oci/vulnerability_scanning/models/host_scan_target_error_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/host_scan_target_error_summary_collection.py b/src/oci/vulnerability_scanning/models/host_scan_target_error_summary_collection.py index 658ac106dd..40212bda3b 100644 --- a/src/oci/vulnerability_scanning/models/host_scan_target_error_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/host_scan_target_error_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 c31e4e647f..b1a28786a4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 454a30318e..a9fa73bb5f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/host_vulnerability.py b/src/oci/vulnerability_scanning/models/host_vulnerability.py index e826e138c0..c293036bbc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 a6d2ff07ce..a3f3d2ff18 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 db759c0f38..630318c429 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/host_vulnerability_summary.py b/src/oci/vulnerability_scanning/models/host_vulnerability_summary.py index 4f0b0e1bbe..06b0034546 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 e8cd13298a..36133ccd7a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/impacted_resources_count.py b/src/oci/vulnerability_scanning/models/impacted_resources_count.py index 14e389ae47..69485528e6 100644 --- a/src/oci/vulnerability_scanning/models/impacted_resources_count.py +++ b/src/oci/vulnerability_scanning/models/impacted_resources_count.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 bc5505a09d..88c8bd180a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/package.py b/src/oci/vulnerability_scanning/models/package.py index 225be1d4ea..56b5e848bf 100644 --- a/src/oci/vulnerability_scanning/models/package.py +++ b/src/oci/vulnerability_scanning/models/package.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/schedule.py b/src/oci/vulnerability_scanning/models/schedule.py index 8e0871b2fd..170c134e16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 7e775873da..8eddb98927 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 46e86758f3..e131dba1f7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 9a398da981..1bbcc45baa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 e5a43d6e84..50997819bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 147482dbb0..2e2e4bed9a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 1f973bdd46..6ab86f80e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/vulnerability.py b/src/oci/vulnerability_scanning/models/vulnerability.py index d82f937105..a85bfd7822 100644 --- a/src/oci/vulnerability_scanning/models/vulnerability.py +++ b/src/oci/vulnerability_scanning/models/vulnerability.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/vulnerability_impacted_container_summary.py b/src/oci/vulnerability_scanning/models/vulnerability_impacted_container_summary.py index 09b58d69f2..869363175c 100644 --- a/src/oci/vulnerability_scanning/models/vulnerability_impacted_container_summary.py +++ b/src/oci/vulnerability_scanning/models/vulnerability_impacted_container_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/vulnerability_impacted_container_summary_collection.py b/src/oci/vulnerability_scanning/models/vulnerability_impacted_container_summary_collection.py index 4023b316a0..eef004af6d 100644 --- a/src/oci/vulnerability_scanning/models/vulnerability_impacted_container_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/vulnerability_impacted_container_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/vulnerability_impacted_host_summary.py b/src/oci/vulnerability_scanning/models/vulnerability_impacted_host_summary.py index 5e9ed4183e..f48a713513 100644 --- a/src/oci/vulnerability_scanning/models/vulnerability_impacted_host_summary.py +++ b/src/oci/vulnerability_scanning/models/vulnerability_impacted_host_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/vulnerability_impacted_host_summary_collection.py b/src/oci/vulnerability_scanning/models/vulnerability_impacted_host_summary_collection.py index 6e9023fb60..8954cf8b76 100644 --- a/src/oci/vulnerability_scanning/models/vulnerability_impacted_host_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/vulnerability_impacted_host_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/vulnerability_summary.py b/src/oci/vulnerability_scanning/models/vulnerability_summary.py index 1f03ab6473..c60debe0e8 100644 --- a/src/oci/vulnerability_scanning/models/vulnerability_summary.py +++ b/src/oci/vulnerability_scanning/models/vulnerability_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/vulnerability_summary_collection.py b/src/oci/vulnerability_scanning/models/vulnerability_summary_collection.py index 13ef337c24..da68c6095f 100644 --- a/src/oci/vulnerability_scanning/models/vulnerability_summary_collection.py +++ b/src/oci/vulnerability_scanning/models/vulnerability_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/work_request.py b/src/oci/vulnerability_scanning/models/work_request.py index 65b78e6908..ce9212a831 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/work_request_collection.py b/src/oci/vulnerability_scanning/models/work_request_collection.py index 4c0abd64bf..e247eed14f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/work_request_error.py b/src/oci/vulnerability_scanning/models/work_request_error.py index e16f5f5c60..3691c8cda0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 782d06527a..d85f9731b9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 d21dd5ec99..a509da9370 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 9dfbc34e32..25ed3941d6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/models/work_request_resource.py b/src/oci/vulnerability_scanning/models/work_request_resource.py index 31e9a32427..88e31dfd75 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/vulnerability_scanning/vulnerability_scanning_client.py b/src/oci/vulnerability_scanning/vulnerability_scanning_client.py index 777969b0db..728480dc3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 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 d701715cf0..4d477dc3bb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210215 diff --git a/src/oci/waa/__init__.py b/src/oci/waa/__init__.py index 921f9afe5f..67b11e11a2 100644 --- a/src/oci/waa/__init__.py +++ b/src/oci/waa/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/__init__.py b/src/oci/waa/models/__init__.py index 5737438f8c..744d984778 100644 --- a/src/oci/waa/models/__init__.py +++ b/src/oci/waa/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/change_resource_compartment_details.py b/src/oci/waa/models/change_resource_compartment_details.py index 8aa55af0dc..3ded1ee595 100644 --- a/src/oci/waa/models/change_resource_compartment_details.py +++ b/src/oci/waa/models/change_resource_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/change_web_app_acceleration_compartment_details.py b/src/oci/waa/models/change_web_app_acceleration_compartment_details.py index a0e3aea169..6895909c8f 100644 --- a/src/oci/waa/models/change_web_app_acceleration_compartment_details.py +++ b/src/oci/waa/models/change_web_app_acceleration_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/change_web_app_acceleration_policy_compartment_details.py b/src/oci/waa/models/change_web_app_acceleration_policy_compartment_details.py index d26db092cc..c202f60f28 100644 --- a/src/oci/waa/models/change_web_app_acceleration_policy_compartment_details.py +++ b/src/oci/waa/models/change_web_app_acceleration_policy_compartment_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/create_web_app_acceleration_details.py b/src/oci/waa/models/create_web_app_acceleration_details.py index 1baae42abf..3940fc6a57 100644 --- a/src/oci/waa/models/create_web_app_acceleration_details.py +++ b/src/oci/waa/models/create_web_app_acceleration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/create_web_app_acceleration_load_balancer_details.py b/src/oci/waa/models/create_web_app_acceleration_load_balancer_details.py index ad5497d5b8..b174818fb6 100644 --- a/src/oci/waa/models/create_web_app_acceleration_load_balancer_details.py +++ b/src/oci/waa/models/create_web_app_acceleration_load_balancer_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/create_web_app_acceleration_policy_details.py b/src/oci/waa/models/create_web_app_acceleration_policy_details.py index eae513d65a..c6ff25efd3 100644 --- a/src/oci/waa/models/create_web_app_acceleration_policy_details.py +++ b/src/oci/waa/models/create_web_app_acceleration_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/gzip_compression_policy.py b/src/oci/waa/models/gzip_compression_policy.py index 46e8517080..019d738271 100644 --- a/src/oci/waa/models/gzip_compression_policy.py +++ b/src/oci/waa/models/gzip_compression_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/purge_entire_web_app_acceleration_cache_details.py b/src/oci/waa/models/purge_entire_web_app_acceleration_cache_details.py index 6744aa13dd..f889144d98 100644 --- a/src/oci/waa/models/purge_entire_web_app_acceleration_cache_details.py +++ b/src/oci/waa/models/purge_entire_web_app_acceleration_cache_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/purge_web_app_acceleration_cache_details.py b/src/oci/waa/models/purge_web_app_acceleration_cache_details.py index 8cc773ca1c..804e0f3b8b 100644 --- a/src/oci/waa/models/purge_web_app_acceleration_cache_details.py +++ b/src/oci/waa/models/purge_web_app_acceleration_cache_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/response_caching_policy.py b/src/oci/waa/models/response_caching_policy.py index e8f908d046..658d5f77b6 100644 --- a/src/oci/waa/models/response_caching_policy.py +++ b/src/oci/waa/models/response_caching_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/response_compression_policy.py b/src/oci/waa/models/response_compression_policy.py index a94a3be61e..f1dffd8a96 100644 --- a/src/oci/waa/models/response_compression_policy.py +++ b/src/oci/waa/models/response_compression_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/update_web_app_acceleration_details.py b/src/oci/waa/models/update_web_app_acceleration_details.py index 0d78b08696..905e87189c 100644 --- a/src/oci/waa/models/update_web_app_acceleration_details.py +++ b/src/oci/waa/models/update_web_app_acceleration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/update_web_app_acceleration_policy_details.py b/src/oci/waa/models/update_web_app_acceleration_policy_details.py index 38dec0e340..c46dc52bc6 100644 --- a/src/oci/waa/models/update_web_app_acceleration_policy_details.py +++ b/src/oci/waa/models/update_web_app_acceleration_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/web_app_acceleration.py b/src/oci/waa/models/web_app_acceleration.py index ea3c7579c2..061cece700 100644 --- a/src/oci/waa/models/web_app_acceleration.py +++ b/src/oci/waa/models/web_app_acceleration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/web_app_acceleration_collection.py b/src/oci/waa/models/web_app_acceleration_collection.py index 7e3f42f579..4f4281f48e 100644 --- a/src/oci/waa/models/web_app_acceleration_collection.py +++ b/src/oci/waa/models/web_app_acceleration_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/web_app_acceleration_load_balancer.py b/src/oci/waa/models/web_app_acceleration_load_balancer.py index 7d01985ef8..8d9f9f0a49 100644 --- a/src/oci/waa/models/web_app_acceleration_load_balancer.py +++ b/src/oci/waa/models/web_app_acceleration_load_balancer.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/web_app_acceleration_load_balancer_summary.py b/src/oci/waa/models/web_app_acceleration_load_balancer_summary.py index c5e9a5ed62..79f88f8875 100644 --- a/src/oci/waa/models/web_app_acceleration_load_balancer_summary.py +++ b/src/oci/waa/models/web_app_acceleration_load_balancer_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/web_app_acceleration_policy.py b/src/oci/waa/models/web_app_acceleration_policy.py index 110f927f7e..045fc37c2a 100644 --- a/src/oci/waa/models/web_app_acceleration_policy.py +++ b/src/oci/waa/models/web_app_acceleration_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/web_app_acceleration_policy_collection.py b/src/oci/waa/models/web_app_acceleration_policy_collection.py index 6389d10d5d..81e1e2523e 100644 --- a/src/oci/waa/models/web_app_acceleration_policy_collection.py +++ b/src/oci/waa/models/web_app_acceleration_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/web_app_acceleration_policy_summary.py b/src/oci/waa/models/web_app_acceleration_policy_summary.py index 77444af02d..352682e4bf 100644 --- a/src/oci/waa/models/web_app_acceleration_policy_summary.py +++ b/src/oci/waa/models/web_app_acceleration_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/web_app_acceleration_summary.py b/src/oci/waa/models/web_app_acceleration_summary.py index 7ade4ba86f..9615740111 100644 --- a/src/oci/waa/models/web_app_acceleration_summary.py +++ b/src/oci/waa/models/web_app_acceleration_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/work_request.py b/src/oci/waa/models/work_request.py index 1be3d9d3da..37a8f57c03 100644 --- a/src/oci/waa/models/work_request.py +++ b/src/oci/waa/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/work_request_collection.py b/src/oci/waa/models/work_request_collection.py index 3851dce41c..3a537c6c82 100644 --- a/src/oci/waa/models/work_request_collection.py +++ b/src/oci/waa/models/work_request_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/work_request_error.py b/src/oci/waa/models/work_request_error.py index 8373d733fb..2bbe3e91f1 100644 --- a/src/oci/waa/models/work_request_error.py +++ b/src/oci/waa/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/work_request_error_collection.py b/src/oci/waa/models/work_request_error_collection.py index 63762d9371..3543ab3068 100644 --- a/src/oci/waa/models/work_request_error_collection.py +++ b/src/oci/waa/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/work_request_log_entry.py b/src/oci/waa/models/work_request_log_entry.py index a36dd06599..fe29906288 100644 --- a/src/oci/waa/models/work_request_log_entry.py +++ b/src/oci/waa/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/work_request_log_entry_collection.py b/src/oci/waa/models/work_request_log_entry_collection.py index 4a0cec4ece..6d5f53a43d 100644 --- a/src/oci/waa/models/work_request_log_entry_collection.py +++ b/src/oci/waa/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/models/work_request_resource.py b/src/oci/waa/models/work_request_resource.py index e1bc4b82b1..e369f015fe 100644 --- a/src/oci/waa/models/work_request_resource.py +++ b/src/oci/waa/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/waa_client.py b/src/oci/waa/waa_client.py index f9a700fce8..e2217f6de8 100644 --- a/src/oci/waa/waa_client.py +++ b/src/oci/waa/waa_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/waa_client_composite_operations.py b/src/oci/waa/waa_client_composite_operations.py index 74e130d159..d8f5a11ec5 100644 --- a/src/oci/waa/waa_client_composite_operations.py +++ b/src/oci/waa/waa_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/work_request_client.py b/src/oci/waa/work_request_client.py index 6292a0d9e3..0e65bbffb5 100644 --- a/src/oci/waa/work_request_client.py +++ b/src/oci/waa/work_request_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waa/work_request_client_composite_operations.py b/src/oci/waa/work_request_client_composite_operations.py index 16c837d461..00ece55a1f 100644 --- a/src/oci/waa/work_request_client_composite_operations.py +++ b/src/oci/waa/work_request_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20211230 diff --git a/src/oci/waas/__init__.py b/src/oci/waas/__init__.py index c03d18649a..1a116efcdf 100644 --- a/src/oci/waas/__init__.py +++ b/src/oci/waas/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/__init__.py b/src/oci/waas/models/__init__.py index 6904527d65..958a5972b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/access_rule.py b/src/oci/waas/models/access_rule.py index c0c157e8df..f21f9ef19f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/access_rule_criteria.py b/src/oci/waas/models/access_rule_criteria.py index 1b80206564..4ba722cf0a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 df25500b98..e806c86120 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/address_list.py b/src/oci/waas/models/address_list.py index abc6ff498a..c1fd7d9409 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/address_list_summary.py b/src/oci/waas/models/address_list_summary.py index 1e44823601..3948933e38 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/address_rate_limiting.py b/src/oci/waas/models/address_rate_limiting.py index 9acf666aac..35c9d3d7df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/block_challenge_settings.py b/src/oci/waas/models/block_challenge_settings.py index 1637ee8b65..86934d66a1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/caching_rule.py b/src/oci/waas/models/caching_rule.py index 4f33532de0..30a8245b1c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/caching_rule_criteria.py b/src/oci/waas/models/caching_rule_criteria.py index a12ab9cf5e..a9ea3e4b65 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/caching_rule_summary.py b/src/oci/waas/models/caching_rule_summary.py index f731cedac2..a3bdb60728 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/captcha.py b/src/oci/waas/models/captcha.py index 039eb1fe95..5866ac9c42 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/certificate.py b/src/oci/waas/models/certificate.py index 3c7c360535..f193481506 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/certificate_extensions.py b/src/oci/waas/models/certificate_extensions.py index f29a16deae..e669f62a06 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/certificate_issuer_name.py b/src/oci/waas/models/certificate_issuer_name.py index 5e8955ccfa..aac7f123cd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/certificate_public_key_info.py b/src/oci/waas/models/certificate_public_key_info.py index 94b2182cfa..fd8dfcf036 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/certificate_subject_name.py b/src/oci/waas/models/certificate_subject_name.py index efeea09e85..a3c2a6cdcb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/certificate_summary.py b/src/oci/waas/models/certificate_summary.py index 0ab25253ee..a3f81ccde8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 8405aa1dee..a1364314e4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/change_certificate_compartment_details.py b/src/oci/waas/models/change_certificate_compartment_details.py index 2b4a5c0ad1..2298c5ae98 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 ca1bb65021..63ea69c311 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 4c89824c77..92e1fc39bd 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 00522432a0..f51df28649 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/create_address_list_details.py b/src/oci/waas/models/create_address_list_details.py index 59f1758fb5..e1e263e3a5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/create_certificate_details.py b/src/oci/waas/models/create_certificate_details.py index 79780991f2..c4260b342c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 361210d65a..f755361465 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/create_http_redirect_details.py b/src/oci/waas/models/create_http_redirect_details.py index e664e77e5d..9f0b64c3c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/create_waas_policy_details.py b/src/oci/waas/models/create_waas_policy_details.py index ff7bf1e352..9f2b3ddd7c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/custom_protection_rule.py b/src/oci/waas/models/custom_protection_rule.py index b2dc102eca..dbc160191a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/custom_protection_rule_setting.py b/src/oci/waas/models/custom_protection_rule_setting.py index 252d4af164..8fa644a930 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/custom_protection_rule_summary.py b/src/oci/waas/models/custom_protection_rule_summary.py index f846d5b245..345c1577e0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/device_fingerprint_challenge.py b/src/oci/waas/models/device_fingerprint_challenge.py index 78654ade3d..8892f4a559 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/edge_subnet.py b/src/oci/waas/models/edge_subnet.py index 877d863ddf..b668ef358e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 cb79baca41..5aaf84be05 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/good_bot.py b/src/oci/waas/models/good_bot.py index a9079ad336..1d35bdf7e3 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/header.py b/src/oci/waas/models/header.py index 43a111e405..9d5f4c57d9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/header_manipulation_action.py b/src/oci/waas/models/header_manipulation_action.py index 968f8c971c..dab45ea704 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/health_check.py b/src/oci/waas/models/health_check.py index e236e27709..8b890f0a59 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/http_redirect.py b/src/oci/waas/models/http_redirect.py index c079d709a5..bdf9c0fbb2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/http_redirect_summary.py b/src/oci/waas/models/http_redirect_summary.py index 1d750a68b1..f2d77f12d8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/http_redirect_target.py b/src/oci/waas/models/http_redirect_target.py index 31fc86a3e1..9ca194132c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/human_interaction_challenge.py b/src/oci/waas/models/human_interaction_challenge.py index aca35238ab..6cdc18c3b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 47118ee0f8..2575f2c144 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/js_challenge.py b/src/oci/waas/models/js_challenge.py index cfd88abb12..4f0f63eb57 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/load_balancing_method.py b/src/oci/waas/models/load_balancing_method.py index 1be537aff4..666f35bbca 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/origin.py b/src/oci/waas/models/origin.py index 63036f4910..d36f056a76 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/origin_group.py b/src/oci/waas/models/origin_group.py index d8ae3ee04f..692189d205 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/origin_group_origins.py b/src/oci/waas/models/origin_group_origins.py index dccf37d717..4598f1fde4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/policy_config.py b/src/oci/waas/models/policy_config.py index aec3dc4af6..858bced43f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/protection_rule.py b/src/oci/waas/models/protection_rule.py index d763f1262a..ba858aeac2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/protection_rule_action.py b/src/oci/waas/models/protection_rule_action.py index 396ced52a0..453d108d95 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/protection_rule_exclusion.py b/src/oci/waas/models/protection_rule_exclusion.py index 635ddfcf10..c0eae3a892 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/protection_settings.py b/src/oci/waas/models/protection_settings.py index c1114fb3bf..ca9669adf4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/purge_cache.py b/src/oci/waas/models/purge_cache.py index 70a107676f..45952d6e1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/recommendation.py b/src/oci/waas/models/recommendation.py index d1a7206769..84099a0951 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 f571ee7849..5263df97dc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 6dd579bda5..743c3f633e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 7a62fe2a7c..31a1ca4624 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/threat_feed.py b/src/oci/waas/models/threat_feed.py index 06de890afe..22588d2799 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/threat_feed_action.py b/src/oci/waas/models/threat_feed_action.py index df76a1990f..b0c3900d0e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/update_address_list_details.py b/src/oci/waas/models/update_address_list_details.py index 394f604402..fba17ee2b2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/update_certificate_details.py b/src/oci/waas/models/update_certificate_details.py index 0f181a829e..df3333fd3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 44dafccb8d..57b58696d4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/update_http_redirect_details.py b/src/oci/waas/models/update_http_redirect_details.py index bccdce4894..fc305e5873 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/update_waas_policy_details.py b/src/oci/waas/models/update_waas_policy_details.py index 118c0f0e05..1d1e18442c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/waas_policy.py b/src/oci/waas/models/waas_policy.py index 31a58afd95..43afd7266a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 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 1ab83f4a0a..1c56d0fb3a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/waas_policy_summary.py b/src/oci/waas/models/waas_policy_summary.py index e59541786d..507a534bb5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/waf_blocked_request.py b/src/oci/waas/models/waf_blocked_request.py index 4e497e0cc0..03cd4873ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/waf_config.py b/src/oci/waas/models/waf_config.py index 7a7d38ce8b..50ebade224 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/waf_config_details.py b/src/oci/waas/models/waf_config_details.py index 91b5ad78ac..a4fe5efb68 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/waf_log.py b/src/oci/waas/models/waf_log.py index 846134b764..77872fddf1 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/waf_meter_datum.py b/src/oci/waas/models/waf_meter_datum.py index 8e939d7876..116fece503 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/waf_request.py b/src/oci/waas/models/waf_request.py index 95547efb71..26dd073a04 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/waf_traffic_datum.py b/src/oci/waas/models/waf_traffic_datum.py index e3c2234f36..1f9d0b11e6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/whitelist.py b/src/oci/waas/models/whitelist.py index 51e179c788..3f99d4bd8f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/work_request.py b/src/oci/waas/models/work_request.py index c05d4f0aa7..a613eaf404 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/work_request_error.py b/src/oci/waas/models/work_request_error.py index e54a3b9b30..39c209b68f 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/work_request_log_entry.py b/src/oci/waas/models/work_request_log_entry.py index c0358e53c1..a1e5bd0420 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/work_request_resource.py b/src/oci/waas/models/work_request_resource.py index a7867bed09..0b52fb14fa 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/models/work_request_summary.py b/src/oci/waas/models/work_request_summary.py index 8624356262..eaca4aac2b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/redirect_client.py b/src/oci/waas/redirect_client.py index a5bcd54efe..bb85dc3249 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/redirect_client_composite_operations.py b/src/oci/waas/redirect_client_composite_operations.py index 2c50b02b08..28040511e2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/waas_client.py b/src/oci/waas/waas_client.py index ee39703836..415cfdb2ec 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waas/waas_client_composite_operations.py b/src/oci/waas/waas_client_composite_operations.py index 67c114fea9..f31a2090c9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20181116 diff --git a/src/oci/waf/__init__.py b/src/oci/waf/__init__.py index 3ee1f45a2a..2fee719bd1 100644 --- a/src/oci/waf/__init__.py +++ b/src/oci/waf/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/__init__.py b/src/oci/waf/models/__init__.py index 3c35cb8fed..2681bb88d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/access_control_rule.py b/src/oci/waf/models/access_control_rule.py index 0a1ac0e2b0..9d161599da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/action.py b/src/oci/waf/models/action.py index 0efce61fab..5c1e88118c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/allow_action.py b/src/oci/waf/models/allow_action.py index 9529613d08..51e1ab1ed0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 b031571337..88c4b432f2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/change_resource_compartment_details.py b/src/oci/waf/models/change_resource_compartment_details.py index 2436c57768..0808097943 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 da4e5545e7..39314a39e9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 4991bc580b..9dc7a53fde 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/check_action.py b/src/oci/waf/models/check_action.py index 99a880bf5e..82073a0b9b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/collaborative_capability_weight.py b/src/oci/waf/models/collaborative_capability_weight.py index 94e2c36459..244a22eec8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/collaborative_capability_weight_override.py b/src/oci/waf/models/collaborative_capability_weight_override.py index db8285116f..8ea7c5f4f8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 9ee33f7123..10eebfaf40 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 c012d3bae6..7e7f1db958 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 eccda565d9..e1ffd810f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 1c8f5b7e0f..32042ba521 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 82e598e73f..5d57d01ee8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 24ad3fcaf4..03a3f21191 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/dynamic_http_response_body.py b/src/oci/waf/models/dynamic_http_response_body.py index ab5e1a1376..dba0ba804b 100644 --- a/src/oci/waf/models/dynamic_http_response_body.py +++ b/src/oci/waf/models/dynamic_http_response_body.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/http_response_body.py b/src/oci/waf/models/http_response_body.py index 04c3d0d78b..c834f095b8 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/network_address_list.py b/src/oci/waf/models/network_address_list.py index 6690d0f5be..7bf19041ea 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/network_address_list_addresses.py b/src/oci/waf/models/network_address_list_addresses.py index df47274af1..76e124cd4e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 1e96f5187b..c3fe1af855 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/network_address_list_collection.py b/src/oci/waf/models/network_address_list_collection.py index 5da8fa4b4a..ce73cbe688 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/network_address_list_summary.py b/src/oci/waf/models/network_address_list_summary.py index cb7cef26dd..4af900eea9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 0d5780ab83..900fc54a52 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 eaf2a847c8..3f6985b401 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/private_addresses.py b/src/oci/waf/models/private_addresses.py index 0fef1fc737..88019d9e1d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/protection_capability.py b/src/oci/waf/models/protection_capability.py index 4fc6cb7ab3..8c2091ead4 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/protection_capability_collection.py b/src/oci/waf/models/protection_capability_collection.py index bccd66675d..47cc979b16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/protection_capability_exclusions.py b/src/oci/waf/models/protection_capability_exclusions.py index a2d05c4bfc..ea9aba59d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 dfc3861774..2179ee6ed7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 d1121d0de9..4012b96688 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/protection_capability_settings.py b/src/oci/waf/models/protection_capability_settings.py index a27709fb1f..b6956a9b36 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/protection_capability_summary.py b/src/oci/waf/models/protection_capability_summary.py index 411315c7a8..5f8c87f161 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/protection_rule.py b/src/oci/waf/models/protection_rule.py index 61916404e7..3bf4d1160a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/request_access_control.py b/src/oci/waf/models/request_access_control.py index f91c3348df..5fcf1e7aee 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/request_protection.py b/src/oci/waf/models/request_protection.py index c0a8bfe98f..6ebe66245d 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/request_rate_limiting.py b/src/oci/waf/models/request_rate_limiting.py index 7369aa7c2b..ea46cc9566 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/request_rate_limiting_configuration.py b/src/oci/waf/models/request_rate_limiting_configuration.py index e3743fc948..5b00cd90df 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/request_rate_limiting_rule.py b/src/oci/waf/models/request_rate_limiting_rule.py index d73d55ee64..57e5a63860 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/response_access_control.py b/src/oci/waf/models/response_access_control.py index 4efbf99e6a..fa5f6e43bc 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/response_header.py b/src/oci/waf/models/response_header.py index 8142fbb402..1efe479cb7 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/response_protection.py b/src/oci/waf/models/response_protection.py index 68e3912192..7fbf0e0043 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/return_http_response_action.py b/src/oci/waf/models/return_http_response_action.py index 0375be873f..fd93c45b0b 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 bd1fdd3464..d1ee49a7ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 39b5cc4358..f3a972aa16 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 b7f53aa97f..098b8f8145 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 226c171203..3d82a2cee9 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 0510c6e6ea..8754eca185 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 71bc40c147..59032b9941 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/web_app_firewall.py b/src/oci/waf/models/web_app_firewall.py index e1a77e00cb..e93dffd6b6 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/web_app_firewall_collection.py b/src/oci/waf/models/web_app_firewall_collection.py index 31fa8af0c4..9f716ef2d0 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 fe64016c16..815992c772 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 71d596b504..ac93c6e779 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/web_app_firewall_policy.py b/src/oci/waf/models/web_app_firewall_policy.py index 85d634e3f3..a6df20c3c5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 4f36ff1eb7..84d8ef8ff5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 fba74c76c5..5f3739c8bf 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 52a53df771..49a0f67d46 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/web_app_firewall_summary.py b/src/oci/waf/models/web_app_firewall_summary.py index 30122a03c5..9833001dde 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/work_request.py b/src/oci/waf/models/work_request.py index 027b666170..9d16585847 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/work_request_collection.py b/src/oci/waf/models/work_request_collection.py index ffd8a0cf15..086e905729 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/work_request_error.py b/src/oci/waf/models/work_request_error.py index 5c00019d45..dfcbf8b826 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/work_request_error_collection.py b/src/oci/waf/models/work_request_error_collection.py index 6516527992..5e78b983d2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/work_request_log_entry.py b/src/oci/waf/models/work_request_log_entry.py index 6b6393c85f..d42b5aeeff 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 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 0f72c82eb6..715a15d340 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/models/work_request_resource.py b/src/oci/waf/models/work_request_resource.py index f125b2d641..2e01571e67 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/waf_client.py b/src/oci/waf/waf_client.py index 33db9badb0..f0fed3896e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waf/waf_client_composite_operations.py b/src/oci/waf/waf_client_composite_operations.py index 514b1a222b..08a180c20a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20210930 diff --git a/src/oci/waiter.py b/src/oci/waiter.py index 769732365c..33a2e03107 100644 --- a/src/oci/waiter.py +++ b/src/oci/waiter.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 4b9b8d3cf9..2a3759e0da 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/work_requests/models/__init__.py b/src/oci/work_requests/models/__init__.py index fab813aea1..8fc6e4a698 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/work_requests/models/work_request.py b/src/oci/work_requests/models/work_request.py index 996ba37ccc..8310b85e8c 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/work_requests/models/work_request_error.py b/src/oci/work_requests/models/work_request_error.py index 6b2d821f84..b0e5497894 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 33cde745cb..144e8b48f5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/work_requests/models/work_request_resource.py b/src/oci/work_requests/models/work_request_resource.py index 0685762f78..6440e669fb 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/work_requests/models/work_request_summary.py b/src/oci/work_requests/models/work_request_summary.py index a4c2032136..1331f18dc2 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/work_requests/work_request_client.py b/src/oci/work_requests/work_request_client.py index 2e3227de2c..aab0c2ee1a 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 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 b820e3ae57..d5ec7a85ab 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20160918 diff --git a/src/oci/zpr/__init__.py b/src/oci/zpr/__init__.py index b50078eae1..39d41f8919 100644 --- a/src/oci/zpr/__init__.py +++ b/src/oci/zpr/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/__init__.py b/src/oci/zpr/models/__init__.py index d360443256..7fd535939f 100644 --- a/src/oci/zpr/models/__init__.py +++ b/src/oci/zpr/models/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/configuration.py b/src/oci/zpr/models/configuration.py index db326ca117..9ce5151906 100644 --- a/src/oci/zpr/models/configuration.py +++ b/src/oci/zpr/models/configuration.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/create_configuration_details.py b/src/oci/zpr/models/create_configuration_details.py index d556cca88f..64554a1716 100644 --- a/src/oci/zpr/models/create_configuration_details.py +++ b/src/oci/zpr/models/create_configuration_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/create_zpr_policy_details.py b/src/oci/zpr/models/create_zpr_policy_details.py index 16e3691fa4..90530618fe 100644 --- a/src/oci/zpr/models/create_zpr_policy_details.py +++ b/src/oci/zpr/models/create_zpr_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/update_zpr_policy_details.py b/src/oci/zpr/models/update_zpr_policy_details.py index 29c96a17c8..c60d1fba8d 100644 --- a/src/oci/zpr/models/update_zpr_policy_details.py +++ b/src/oci/zpr/models/update_zpr_policy_details.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/work_request.py b/src/oci/zpr/models/work_request.py index 184a06b0e2..7477c6205a 100644 --- a/src/oci/zpr/models/work_request.py +++ b/src/oci/zpr/models/work_request.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/work_request_error.py b/src/oci/zpr/models/work_request_error.py index 4e74342c4d..1f66275ee3 100644 --- a/src/oci/zpr/models/work_request_error.py +++ b/src/oci/zpr/models/work_request_error.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/work_request_error_collection.py b/src/oci/zpr/models/work_request_error_collection.py index 7d169b4d1e..692d9ade8f 100644 --- a/src/oci/zpr/models/work_request_error_collection.py +++ b/src/oci/zpr/models/work_request_error_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/work_request_log_entry.py b/src/oci/zpr/models/work_request_log_entry.py index 0d5e6040da..57c8930608 100644 --- a/src/oci/zpr/models/work_request_log_entry.py +++ b/src/oci/zpr/models/work_request_log_entry.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/work_request_log_entry_collection.py b/src/oci/zpr/models/work_request_log_entry_collection.py index d427c742e1..3ba8e9b0f9 100644 --- a/src/oci/zpr/models/work_request_log_entry_collection.py +++ b/src/oci/zpr/models/work_request_log_entry_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/work_request_resource.py b/src/oci/zpr/models/work_request_resource.py index 7b54538a2a..a2db70bd14 100644 --- a/src/oci/zpr/models/work_request_resource.py +++ b/src/oci/zpr/models/work_request_resource.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/work_request_summary.py b/src/oci/zpr/models/work_request_summary.py index 144eae2479..f4062c33a3 100644 --- a/src/oci/zpr/models/work_request_summary.py +++ b/src/oci/zpr/models/work_request_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/work_request_summary_collection.py b/src/oci/zpr/models/work_request_summary_collection.py index 8d8dc267ee..a489621abc 100644 --- a/src/oci/zpr/models/work_request_summary_collection.py +++ b/src/oci/zpr/models/work_request_summary_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/zpr_policy.py b/src/oci/zpr/models/zpr_policy.py index e04f0c5e2e..8a5afbbd8f 100644 --- a/src/oci/zpr/models/zpr_policy.py +++ b/src/oci/zpr/models/zpr_policy.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/zpr_policy_collection.py b/src/oci/zpr/models/zpr_policy_collection.py index b5e7fe0c60..f95f072fde 100644 --- a/src/oci/zpr/models/zpr_policy_collection.py +++ b/src/oci/zpr/models/zpr_policy_collection.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/models/zpr_policy_summary.py b/src/oci/zpr/models/zpr_policy_summary.py index 1d52f6fccb..c1b9d4978e 100644 --- a/src/oci/zpr/models/zpr_policy_summary.py +++ b/src/oci/zpr/models/zpr_policy_summary.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/zpr_client.py b/src/oci/zpr/zpr_client.py index 3fde142140..785440b238 100644 --- a/src/oci/zpr/zpr_client.py +++ b/src/oci/zpr/zpr_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/src/oci/zpr/zpr_client_composite_operations.py b/src/oci/zpr/zpr_client_composite_operations.py index 6bab49998e..681fa4fa3c 100644 --- a/src/oci/zpr/zpr_client_composite_operations.py +++ b/src/oci/zpr/zpr_client_composite_operations.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. # NOTE: This class is auto generated by OracleSDKGenerator. DO NOT EDIT. API Version: 20240301 diff --git a/tests/__init__.py b/tests/__init__.py index 8d47e705ab..0eb5d53faa 100644 --- a/tests/__init__.py +++ b/tests/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 ed143118b5..73490894a7 100644 --- a/tests/autogentest/test_model.py +++ b/tests/autogentest/test_model.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 3ca5e31a2b..2e8d85ca3a 100644 --- a/tests/conftest.py +++ b/tests/conftest.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 8d47e705ab..0eb5d53faa 100644 --- a/tests/integ/__init__.py +++ b/tests/integ/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 82d46ce37a..adc9c543e5 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 090e27be49..7a024ff333 100644 --- a/tests/integ/util.py +++ b/tests/integ/util.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl 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 8a1a23503f..ac3c23e5d6 100644 --- a/tests/test_config_container.py +++ b/tests/test_config_container.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 b163602d22..2609e7b0ac 100644 --- a/tests/testing_service_client.py +++ b/tests/testing_service_client.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 8d47e705ab..0eb5d53faa 100644 --- a/tests/unit/__init__.py +++ b/tests/unit/__init__.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 c43eed846f..a1a89a3e6e 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, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 3222f56d75..22304ab92a 100644 --- a/tests/unit/test_response.py +++ b/tests/unit/test_response.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 f2ab884c15..8de06c9506 100644 --- a/tests/unit/test_waiters.py +++ b/tests/unit/test_waiters.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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 59bbee07d4..15fb3871df 100644 --- a/tests/util.py +++ b/tests/util.py @@ -1,5 +1,5 @@ # coding: utf-8 -# Copyright (c) 2016, 2024, Oracle and/or its affiliates. All rights reserved. +# Copyright (c) 2016, 2025, Oracle and/or its affiliates. All rights reserved. # This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.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